From 36de6e12619d87064a7e5579bc9c853a3ca0d2f0 Mon Sep 17 00:00:00 2001 From: Michael Hoennig Date: Mon, 3 Feb 2025 15:38:12 +0100 Subject: [PATCH] revert released-only-office-schema-with-import-test-data.sql --- ...ly-office-schema-with-import-test-data.sql | 17209 +++++++++------- 1 file changed, 10050 insertions(+), 7159 deletions(-) diff --git a/src/test/resources/db/released-only-office-schema-with-import-test-data.sql b/src/test/resources/db/released-only-office-schema-with-import-test-data.sql index 62834e50..54dfb237 100644 --- a/src/test/resources/db/released-only-office-schema-with-import-test-data.sql +++ b/src/test/resources/db/released-only-office-schema-with-import-test-data.sql @@ -66,6 +66,15 @@ CREATE SCHEMA rbac; ALTER SCHEMA rbac OWNER TO test; +-- +-- Name: rbactest; Type: SCHEMA; Schema: -; Owner: test +-- + +CREATE SCHEMA rbactest; + + +ALTER SCHEMA rbactest OWNER TO test; + -- -- Name: uuid-ossp; Type: EXTENSION; Schema: -; Owner: - -- @@ -995,6 +1004,29 @@ end; '; ALTER FUNCTION hs_office.bankaccount_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: bankaccount_create_test_data(character varying, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.bankaccount_create_test_data(IN givenholder character varying, IN giveniban character varying, IN givenbic character varying) + LANGUAGE plpgsql + AS ' +declare + emailAddr varchar; +begin + emailAddr = ''bankaccount-admin@'' || TRIM(SUBSTRING(base.cleanIdentifier(givenHolder) FOR 32)) || ''.example.com''; + perform rbac.create_subject(emailAddr); + call base.defineContext(''creating bankaccount test-data'', null, emailAddr); + + raise notice ''creating test bankaccount: %'', givenHolder; + insert + into hs_office.bankaccount(uuid, holder, iban, bic) + values (uuid_generate_v4(), givenHolder, givenIBAN, givenBIC); +end; '; + + +ALTER PROCEDURE hs_office.bankaccount_create_test_data(IN givenholder character varying, IN giveniban character varying, IN givenbic character varying) OWNER TO test; + -- -- Name: bankaccount_guest(hs_office.bankaccount, boolean); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -1274,6 +1306,59 @@ end; '; ALTER FUNCTION hs_office.contact_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: contact_create_test_data(character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.contact_create_test_data(IN contcaption character varying) + LANGUAGE plpgsql + AS ' +declare + emailAddr varchar; +begin + emailAddr = ''contact-admin@'' || base.cleanIdentifier(contCaption) || ''.example.com''; + call base.defineContext(''creating contact test-data''); + perform rbac.create_subject(emailAddr); + call base.defineContext(''creating contact test-data'', null, emailAddr); + + raise notice ''creating test contact: %'', contCaption; + insert + into hs_office.contact (caption, postaladdress, emailaddresses, phonenumbers) + values ( + contCaption, + ( ''{ '' || + + + + + ''"country": "Germany"'' || + ''}'')::jsonb, + (''{ "main": "'' || emailAddr || ''" }'')::jsonb, + (''{ "phone_office": "+49 123 1234567" }'')::jsonb + ); +end; '; + + +ALTER PROCEDURE hs_office.contact_create_test_data(IN contcaption character varying) OWNER TO test; + +-- +-- Name: contact_create_test_data(integer, integer); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.contact_create_test_data(IN startcount integer, IN endcount integer) + LANGUAGE plpgsql + AS ' +begin + for t in startCount..endCount + loop + call hs_office.contact_create_test_data(base.intToVarChar(t, 4) || ''#'' || t); + commit; + end loop; +end; '; + + +ALTER PROCEDURE hs_office.contact_create_test_data(IN startcount integer, IN endcount integer) OWNER TO test; + -- -- Name: contact_delete_legacy_id_mapping_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -1614,6 +1699,44 @@ end; '; ALTER FUNCTION hs_office.coopassettx_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: coopassettx_create_test_data(numeric, character); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.coopassettx_create_test_data(IN givenpartnernumber numeric, IN givenmembernumbersuffix character) + LANGUAGE plpgsql + AS ' +declare + membership hs_office.membership; + invalidLossTx uuid; + transferTx uuid; + adoptionTx uuid; +begin + select m.uuid + from hs_office.membership m + join hs_office.partner p on p.uuid = m.partneruuid + where p.partnerNumber = givenPartnerNumber + and m.memberNumberSuffix = givenMemberNumberSuffix + into membership; + + raise notice ''creating test coopAssetsTransaction: %'', givenPartnerNumber || givenMemberNumberSuffix; + invalidLossTx := uuid_generate_v4(); + transferTx := uuid_generate_v4(); + adoptionTx := uuid_generate_v4(); + insert + into hs_office.coopassettx(uuid, membershipuuid, transactiontype, valuedate, assetvalue, reference, comment, revertedAssetTxUuid, assetAdoptionTxUuid) + values + (uuid_generate_v4(), membership.uuid, ''DEPOSIT'', ''2010-03-15'', 320.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-1'', ''initial deposit'', null, null), + (uuid_generate_v4(), membership.uuid, ''DISBURSAL'', ''2021-09-01'', -128.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-2'', ''partial disbursal'', null, null), + (invalidLossTx, membership.uuid, ''DEPOSIT'', ''2022-10-20'', 128.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-3'', ''some loss'', null, null), + (uuid_generate_v4(), membership.uuid, ''REVERSAL'', ''2022-10-21'', -128.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-3'', ''some reversal'', invalidLossTx, null), + (transferTx, membership.uuid, ''TRANSFER'', ''2023-12-31'', -192.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-3'', ''some reversal'', null, adoptionTx), + (adoptionTx, membership.uuid, ''ADOPTION'', ''2023-12-31'', 192.00, ''ref ''||givenPartnerNumber || givenMemberNumberSuffix||''-3'', ''some reversal'', null, null); +end; '; + + +ALTER PROCEDURE hs_office.coopassettx_create_test_data(IN givenpartnernumber numeric, IN givenmembernumbersuffix character) OWNER TO test; + -- -- Name: coopassettx_delete_legacy_id_mapping_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -1992,6 +2115,38 @@ end; '; ALTER FUNCTION hs_office.coopsharetx_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: coopsharetx_create_test_data(numeric, character); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.coopsharetx_create_test_data(IN givenpartnernumber numeric, IN givenmembernumbersuffix character) + LANGUAGE plpgsql + AS ' +declare + membership hs_office.membership; + subscriptionEntryUuid uuid; +begin + select m.uuid + from hs_office.membership m + join hs_office.partner p on p.uuid = m.partneruuid + where p.partnerNumber = givenPartnerNumber + and m.memberNumberSuffix = givenMemberNumberSuffix + into membership; + + raise notice ''creating test coopSharesTransaction: %'', givenPartnerNumber::text || givenMemberNumberSuffix; + subscriptionEntryUuid := uuid_generate_v4(); + insert + into hs_office.coopsharetx(uuid, membershipuuid, transactiontype, valuedate, sharecount, reference, comment, revertedShareTxUuid) + values + (uuid_generate_v4(), membership.uuid, ''SUBSCRIPTION'', ''2010-03-15'', 4, ''ref ''||givenPartnerNumber::text || givenMemberNumberSuffix||''-1'', ''initial subscription'', null), + (uuid_generate_v4(), membership.uuid, ''CANCELLATION'', ''2021-09-01'', -2, ''ref ''||givenPartnerNumber::text || givenMemberNumberSuffix||''-2'', ''cancelling some'', null), + (subscriptionEntryUuid, membership.uuid, ''SUBSCRIPTION'', ''2022-10-20'', 2, ''ref ''||givenPartnerNumber::text || givenMemberNumberSuffix||''-3'', ''some subscription'', null), + (uuid_generate_v4(), membership.uuid, ''REVERSAL'', ''2022-10-21'', -2, ''ref ''||givenPartnerNumber::text || givenMemberNumberSuffix||''-4'', ''some reversal'', subscriptionEntryUuid); +end; '; + + +ALTER PROCEDURE hs_office.coopsharetx_create_test_data(IN givenpartnernumber numeric, IN givenmembernumbersuffix character) OWNER TO test; + -- -- Name: coopsharetx_delete_legacy_id_mapping_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -2367,6 +2522,43 @@ end; '; ALTER FUNCTION hs_office.debitor_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: debitor_create_test_data(numeric, character varying, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.debitor_create_test_data(IN withdebitornumbersuffix numeric, IN forpartnerpersonname character varying, IN forbillingcontactcaption character varying, IN withdefaultprefix character varying) + LANGUAGE plpgsql + AS ' +declare + idName varchar; + relatedDebitorRelUuid uuid; + relatedBankAccountUuid uuid; +begin + idName := base.cleanIdentifier( forPartnerPersonName|| ''-'' || forBillingContactCaption); + + select debitorRel.uuid + into relatedDebitorRelUuid + from hs_office.relation debitorRel + join hs_office.person person on person.uuid = debitorRel.holderUuid + and (person.tradeName = forPartnerPersonName or person.familyName = forPartnerPersonName) + where debitorRel.type = ''DEBITOR''; + + select b.uuid + into relatedBankAccountUuid + from hs_office.bankaccount b + where b.holder = forPartnerPersonName; + + raise notice ''creating test debitor: % (#%)'', idName, withDebitorNumberSuffix; + + + insert + into hs_office.debitor (uuid, debitorRelUuid, debitornumbersuffix, billable, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) + values (uuid_generate_v4(), relatedDebitorRelUuid, withDebitorNumberSuffix, true, true, false, relatedBankAccountUuid, withDefaultPrefix); +end; '; + + +ALTER PROCEDURE hs_office.debitor_create_test_data(IN withdebitornumbersuffix numeric, IN forpartnerpersonname character varying, IN forbillingcontactcaption character varying, IN withdefaultprefix character varying) OWNER TO test; + -- -- Name: debitor_delete_dependents_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -2762,6 +2954,29 @@ end; '; ALTER FUNCTION hs_office.membership_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: membership_create_test_data(numeric, character); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.membership_create_test_data(IN forpartnernumber numeric, IN newmembernumbersuffix character) + LANGUAGE plpgsql + AS ' +declare + relatedPartner hs_office.partner; +begin + select partner.* from hs_office.partner partner + where partner.partnerNumber = forPartnerNumber into relatedPartner; + + raise notice ''creating test Membership: M-% %'', forPartnerNumber, newMemberNumberSuffix; + raise notice ''- using partner (%): %'', relatedPartner.uuid, relatedPartner; + insert + into hs_office.membership (uuid, partneruuid, memberNumberSuffix, validity, status) + values (uuid_generate_v4(), relatedPartner.uuid, newMemberNumberSuffix, daterange(''20221001'' , null, ''[]''), ''ACTIVE''); +end; '; + + +ALTER PROCEDURE hs_office.membership_create_test_data(IN forpartnernumber numeric, IN newmembernumbersuffix character) OWNER TO test; + -- -- Name: membership_grants_insert_to_global_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -3077,6 +3292,65 @@ end; '; ALTER FUNCTION hs_office.partner_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: partner_create_test_data(character varying, numeric, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.partner_create_test_data(IN mandanttradename character varying, IN newpartnernumber numeric, IN partnerpersonname character varying, IN contactcaption character varying) + LANGUAGE plpgsql + AS ' +declare + idName varchar; + mandantPerson hs_office.person; + partnerRel hs_office.relation; + relatedPerson hs_office.person; + relatedDetailsUuid uuid; +begin + idName := base.cleanIdentifier( partnerPersonName|| ''-'' || contactCaption); + + select p.* from hs_office.person p + where p.tradeName = mandantTradeName + into mandantPerson; + if mandantPerson is null then + raise exception ''mandant "%" not found'', mandantTradeName; + end if; + + select p.* from hs_office.person p + where p.tradeName = partnerPersonName or p.familyName = partnerPersonName + into relatedPerson; + + select r.* from hs_office.relation r + where r.type = ''PARTNER'' + and r.anchoruuid = mandantPerson.uuid and r.holderuuid = relatedPerson.uuid + into partnerRel; + if partnerRel is null then + raise exception ''partnerRel "%"-"%" not found'', mandantPerson.tradename, partnerPersonName; + end if; + + raise notice ''creating test partner: %'', idName; + raise notice ''- using partnerRel (%): %'', partnerRel.uuid, partnerRel; + raise notice ''- using person (%): %'', relatedPerson.uuid, relatedPerson; + + if relatedPerson.persontype = ''NP'' then + insert + into hs_office.partner_details (uuid, birthName, birthday, birthPlace) + values (uuid_generate_v4(), ''Meyer'', ''1987-10-31'', ''Hamburg'') + returning uuid into relatedDetailsUuid; + else + insert + into hs_office.partner_details (uuid, registrationOffice, registrationNumber) + values (uuid_generate_v4(), ''Hamburg'', ''RegNo123456789'') + returning uuid into relatedDetailsUuid; + end if; + + insert + into hs_office.partner (uuid, partnerNumber, partnerRelUuid, detailsUuid) + values (uuid_generate_v4(), newPartnerNumber, partnerRel.uuid, relatedDetailsUuid); +end; '; + + +ALTER PROCEDURE hs_office.partner_create_test_data(IN mandanttradename character varying, IN newpartnernumber numeric, IN partnerpersonname character varying, IN contactcaption character varying) OWNER TO test; + -- -- Name: partner_delete_dependents_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -3846,6 +4120,32 @@ end; '; ALTER FUNCTION hs_office.person_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: person_create_test_data(hs_office.persontype, character varying, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.person_create_test_data(IN newpersontype hs_office.persontype, IN newtradename character varying, IN newfamilyname character varying DEFAULT NULL::character varying, IN newgivenname character varying DEFAULT NULL::character varying) + LANGUAGE plpgsql + AS ' +declare + fullName varchar; + emailAddr varchar; +begin + fullName := concat_ws('', '', newTradeName, newFamilyName, newGivenName); + emailAddr = ''person-'' || left(base.cleanIdentifier(fullName), 32) || ''@example.com''; + call base.defineContext(''creating person test-data''); + perform rbac.create_subject(emailAddr); + call base.defineContext(''creating person test-data'', null, emailAddr); + + raise notice ''creating test person: % by %'', fullName, emailAddr; + insert + into hs_office.person (persontype, tradename, givenname, familyname) + values (newPersonType, newTradeName, newGivenName, newFamilyName); +end; '; + + +ALTER PROCEDURE hs_office.person_create_test_data(IN newpersontype hs_office.persontype, IN newtradename character varying, IN newfamilyname character varying, IN newgivenname character varying) OWNER TO test; + -- -- Name: person_guest(hs_office.person, boolean); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -4162,6 +4462,79 @@ end; '; ALTER FUNCTION hs_office.relation_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: relation_create_test_data(integer, integer); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.relation_create_test_data(IN startcount integer, IN endcount integer) + LANGUAGE plpgsql + AS ' +declare + person hs_office.person; + contact hs_office.contact; +begin + for t in startCount..endCount + loop + select p.* from hs_office.person p where tradeName = base.intToVarChar(t, 4) into person; + select c.* from hs_office.contact c where c.caption = base.intToVarChar(t, 4) || ''#'' || t into contact; + + call hs_office.relation_create_test_data(person.uuid, contact.uuid, ''REPRESENTATIVE''); + commit; + end loop; +end; '; + + +ALTER PROCEDURE hs_office.relation_create_test_data(IN startcount integer, IN endcount integer) OWNER TO test; + +-- +-- Name: relation_create_test_data(character varying, hs_office.relationtype, character varying, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.relation_create_test_data(IN holderpersonname character varying, IN relationtype hs_office.relationtype, IN anchorpersonname character varying, IN contactcaption character varying, IN mark character varying DEFAULT NULL::character varying) + LANGUAGE plpgsql + AS ' +declare + idName varchar; + anchorPerson hs_office.person; + holderPerson hs_office.person; + contact hs_office.contact; + +begin + idName := base.cleanIdentifier( anchorPersonName || ''-'' || holderPersonName); + + select p.* + into anchorPerson + from hs_office.person p + where p.tradeName = anchorPersonName or p.familyName = anchorPersonName; + if anchorPerson is null then + raise exception ''anchorPerson "%" not found'', anchorPersonName; + end if; + + select p.* + into holderPerson + from hs_office.person p + where p.tradeName = holderPersonName or p.familyName = holderPersonName; + if holderPerson is null then + raise exception ''holderPerson "%" not found'', holderPersonName; + end if; + + select c.* into contact from hs_office.contact c where c.caption = contactCaption; + if contact is null then + raise exception ''contact "%" not found'', contactCaption; + end if; + + raise notice ''creating test relation: %'', idName; + raise notice ''- using anchor person (%): %'', anchorPerson.uuid, anchorPerson; + raise notice ''- using holder person (%): %'', holderPerson.uuid, holderPerson; + raise notice ''- using contact (%): %'', contact.uuid, contact; + insert + into hs_office.relation (uuid, anchoruuid, holderuuid, type, mark, contactUuid) + values (uuid_generate_v4(), anchorPerson.uuid, holderPerson.uuid, relationType, mark, contact.uuid); +end; '; + + +ALTER PROCEDURE hs_office.relation_create_test_data(IN holderpersonname character varying, IN relationtype hs_office.relationtype, IN anchorpersonname character varying, IN contactcaption character varying, IN mark character varying) OWNER TO test; + -- -- Name: relation_grants_insert_to_person_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -4539,6 +4912,37 @@ end; '; ALTER FUNCTION hs_office.sepamandate_build_rbac_system_after_insert_tf() OWNER TO test; +-- +-- Name: sepamandate_create_test_data(numeric, character, character varying, character varying); Type: PROCEDURE; Schema: hs_office; Owner: test +-- + +CREATE PROCEDURE hs_office.sepamandate_create_test_data(IN forpartnernumber numeric, IN fordebitorsuffix character, IN foriban character varying, IN withreference character varying) + LANGUAGE plpgsql + AS ' +declare + relatedDebitor hs_office.debitor; + relatedBankAccount hs_office.bankAccount; +begin + select debitor.* into relatedDebitor + from hs_office.debitor debitor + join hs_office.relation debitorRel on debitorRel.uuid = debitor.debitorRelUuid + join hs_office.relation partnerRel on partnerRel.holderUuid = debitorRel.anchorUuid + join hs_office.partner partner on partner.partnerRelUuid = partnerRel.uuid + where partner.partnerNumber = forPartnerNumber and debitor.debitorNumberSuffix = forDebitorSuffix; + select b.* into relatedBankAccount + from hs_office.bankAccount b where b.iban = forIban; + + raise notice ''creating test SEPA-mandate: %'', forPartnerNumber::text || forDebitorSuffix::text; + raise notice ''- using debitor (%): %'', relatedDebitor.uuid, relatedDebitor; + raise notice ''- using bankAccount (%): %'', relatedBankAccount.uuid, relatedBankAccount; + insert + into hs_office.sepamandate (uuid, debitoruuid, bankAccountuuid, reference, agreement, validity) + values (uuid_generate_v4(), relatedDebitor.uuid, relatedBankAccount.uuid, withReference, ''20220930'', daterange(''20221001'' , ''20261231'', ''[]'')); +end; '; + + +ALTER PROCEDURE hs_office.sepamandate_create_test_data(IN forpartnernumber numeric, IN fordebitorsuffix character, IN foriban character varying, IN withreference character varying) OWNER TO test; + -- -- Name: sepamandate_delete_legacy_id_mapping_tf(); Type: FUNCTION; Schema: hs_office; Owner: test -- @@ -6765,6 +7169,1260 @@ select false; ALTER FUNCTION rbac.unassumed() OWNER TO test; +-- +-- Name: customer; Type: TABLE; Schema: rbactest; Owner: test +-- + +CREATE TABLE rbactest.customer ( + uuid uuid, + version integer DEFAULT 0 NOT NULL, + reference integer NOT NULL, + prefix character(3), + adminusername character varying(63), + CONSTRAINT customer_reference_check CHECK (((reference >= 10000) AND (reference <= 99999))) +); + + +ALTER TABLE rbactest.customer OWNER TO test; + +-- +-- Name: customer_admin(rbactest.customer, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_admin(entity rbactest.customer, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''ADMIN'', assumed); + end; '; + + +ALTER FUNCTION rbactest.customer_admin(entity rbactest.customer, assumed boolean) OWNER TO test; + +-- +-- Name: customer_agent(rbactest.customer, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_agent(entity rbactest.customer, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''AGENT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.customer_agent(entity rbactest.customer, assumed boolean) OWNER TO test; + +-- +-- Name: customer_build_rbac_system(rbactest.customer); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.customer_build_rbac_system(IN new rbactest.customer) + LANGUAGE plpgsql + AS ' + +declare + +begin + call rbac.enterTriggerForObjectUuid(NEW.uuid); + + perform rbac.defineRoleWithGrants( + rbactest.customer_OWNER(NEW), + permissions => array[''DELETE''], + incomingSuperRoles => array[rbac.global_ADMIN(rbac.unassumed())], + subjectUuids => array[rbac.currentSubjectUuid()] + ); + + perform rbac.defineRoleWithGrants( + rbactest.customer_ADMIN(NEW), + permissions => array[''UPDATE''], + incomingSuperRoles => array[rbactest.customer_OWNER(NEW)] + ); + + perform rbac.defineRoleWithGrants( + rbactest.customer_TENANT(NEW), + permissions => array[''SELECT''], + incomingSuperRoles => array[rbactest.customer_ADMIN(NEW)] + ); + + call rbac.leaveTriggerForObjectUuid(NEW.uuid); +end; '; + + +ALTER PROCEDURE rbactest.customer_build_rbac_system(IN new rbactest.customer) OWNER TO test; + +-- +-- Name: customer_build_rbac_system_after_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_build_rbac_system_after_insert_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + call rbactest.customer_build_rbac_system(NEW); + return NEW; +end; '; + + +ALTER FUNCTION rbactest.customer_build_rbac_system_after_insert_tf() OWNER TO test; + +-- +-- Name: customer_create_test_data(integer); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_create_test_data(customercount integer) RETURNS integer + LANGUAGE plpgsql STRICT + AS ' +begin + return 10000 + customerCount; +end; '; + + +ALTER FUNCTION rbactest.customer_create_test_data(customercount integer) OWNER TO test; + +-- +-- Name: customer_create_test_data(integer, integer); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.customer_create_test_data(IN startcount integer, IN endcount integer) + LANGUAGE plpgsql + AS ' +begin + for t in startCount..endCount + loop + call rbactest.customer_create_test_data(rbactest.testCustomerReference(t), base.intToVarChar(t, 3)); + commit; + end loop; +end; '; + + +ALTER PROCEDURE rbactest.customer_create_test_data(IN startcount integer, IN endcount integer) OWNER TO test; + +-- +-- Name: customer_create_test_data(integer, character varying); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.customer_create_test_data(IN custreference integer, IN custprefix character varying) + LANGUAGE plpgsql + AS ' +declare + custRowId uuid; + custAdminName varchar; + custAdminUuid uuid; + newCust rbactest.customer; +begin + custRowId = uuid_generate_v4(); + custAdminName = ''customer-admin@'' || custPrefix || ''.example.com''; + custAdminUuid = rbac.create_subject(custAdminName); + + insert + into rbactest.customer (reference, prefix, adminUserName) + values (custReference, custPrefix, custAdminName); + + select * into newCust + from rbactest.customer where reference=custReference; + call rbac.grantRoleToSubject( + rbac.getRoleId(rbactest.customer_OWNER(newCust)), + rbac.getRoleId(rbactest.customer_ADMIN(newCust)), + custAdminUuid, + true); +end; '; + + +ALTER PROCEDURE rbactest.customer_create_test_data(IN custreference integer, IN custprefix character varying) OWNER TO test; + +-- +-- Name: customer_grants_insert_to_global_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_grants_insert_to_global_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + + call rbac.grantPermissionToRole( + rbac.createPermission(NEW.uuid, ''INSERT'', ''rbactest.customer''), + rbac.global_ADMIN()); + + return NEW; +end; '; + + +ALTER FUNCTION rbactest.customer_grants_insert_to_global_tf() OWNER TO test; + +-- +-- Name: customer_guest(rbactest.customer, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_guest(entity rbactest.customer, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''GUEST'', assumed); + end; '; + + +ALTER FUNCTION rbactest.customer_guest(entity rbactest.customer, assumed boolean) OWNER TO test; + +-- +-- Name: customer_id_name_by_uuid(uuid); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_id_name_by_uuid(givenuuid uuid) RETURNS character varying + LANGUAGE sql STRICT + AS ' + select idName from rbactest.customer_iv iv where iv.uuid = givenUuid; + '; + + +ALTER FUNCTION rbactest.customer_id_name_by_uuid(givenuuid uuid) OWNER TO test; + +-- +-- Name: customer_insert_permission_check_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_insert_permission_check_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' +declare + superObjectUuid uuid; +begin + + if rbac.isGlobalAdmin() then + return NEW; + end if; + + raise exception ''[403] insert into rbactest.customer values(%) not allowed for current subjects % (%)'', + NEW, base.currentSubjects(), rbac.currentSubjectOrAssumedRolesUuids(); +end; '; + + +ALTER FUNCTION rbactest.customer_insert_permission_check_tf() OWNER TO test; + +-- +-- Name: customer_instead_of_delete_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_instead_of_delete_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''DELETE'', ''rbactest.customer'', rbac.currentSubjectOrAssumedRolesUuids())) then + delete from rbactest.customer p where p.uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to delete rbactest.customer uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.customer_instead_of_delete_tf() OWNER TO test; + +-- +-- Name: customer_instead_of_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_instead_of_insert_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + declare + newTargetRow rbactest.customer; + begin + insert + into rbactest.customer (uuid, version, reference, prefix, adminusername) + values (new.uuid, new.version, new.reference, new.prefix, new.adminusername) + returning * into newTargetRow; + return newTargetRow; + end; '; + + +ALTER FUNCTION rbactest.customer_instead_of_insert_tf() OWNER TO test; + +-- +-- Name: customer_instead_of_update_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_instead_of_update_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''UPDATE'', ''rbactest.customer'', rbac.currentSubjectOrAssumedRolesUuids())) then + update rbactest.customer + set + reference = new.reference, + prefix = new.prefix, + adminUserName = new.adminUserName + + where uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to update rbactest.customer uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.customer_instead_of_update_tf() OWNER TO test; + +-- +-- Name: customer_owner(rbactest.customer, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_owner(entity rbactest.customer, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''OWNER'', assumed); + end; '; + + +ALTER FUNCTION rbactest.customer_owner(entity rbactest.customer, assumed boolean) OWNER TO test; + +-- +-- Name: customer_rebuild_rbac_system(); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.customer_rebuild_rbac_system() + LANGUAGE plpgsql + AS ' +DECLARE + DECLARE + row rbactest.customer; + grantsAfter numeric; + grantsBefore numeric; +BEGIN + SELECT count(*) INTO grantsBefore FROM rbac.grant; + + FOR row IN SELECT * FROM rbactest.customer LOOP + + DELETE FROM rbac.grant g + WHERE g.grantedbytriggerof = row.uuid; + + + CALL rbactest.customer_build_rbac_system(row); + END LOOP; + + select count(*) into grantsAfter from rbac.grant; + + + raise notice ''total grant count before -> after: % -> %'', grantsBefore, grantsAfter; +END; +'; + + +ALTER PROCEDURE rbactest.customer_rebuild_rbac_system() OWNER TO test; + +-- +-- Name: customer_referrer(rbactest.customer); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_referrer(entity rbactest.customer) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''REFERRER''); + end; '; + + +ALTER FUNCTION rbactest.customer_referrer(entity rbactest.customer) OWNER TO test; + +-- +-- Name: customer_tenant(rbactest.customer, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_tenant(entity rbactest.customer, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.customer'', entity.uuid, ''TENANT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.customer_tenant(entity rbactest.customer, assumed boolean) OWNER TO test; + +-- +-- Name: customer_uuid_by_id_name(character varying); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.customer_uuid_by_id_name(givenidname character varying) RETURNS uuid + LANGUAGE plpgsql + AS ' + declare + singleMatch uuid; + begin + select uuid into strict singleMatch from rbactest.customer_iv iv where iv.idName = givenIdName; + return singleMatch; + end; '; + + +ALTER FUNCTION rbactest.customer_uuid_by_id_name(givenidname character varying) OWNER TO test; + +-- +-- Name: domain; Type: TABLE; Schema: rbactest; Owner: test +-- + +CREATE TABLE rbactest.domain ( + uuid uuid, + packageuuid uuid, + name character varying(253), + description character varying(96) +); + + +ALTER TABLE rbactest.domain OWNER TO test; + +-- +-- Name: domain_admin(rbactest.domain, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_admin(entity rbactest.domain, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''ADMIN'', assumed); + end; '; + + +ALTER FUNCTION rbactest.domain_admin(entity rbactest.domain, assumed boolean) OWNER TO test; + +-- +-- Name: domain_agent(rbactest.domain, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_agent(entity rbactest.domain, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''AGENT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.domain_agent(entity rbactest.domain, assumed boolean) OWNER TO test; + +-- +-- Name: domain_build_rbac_system(rbactest.domain); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.domain_build_rbac_system(IN new rbactest.domain) + LANGUAGE plpgsql + AS ' + +declare + newPackage rbactest.package; + +begin + call rbac.enterTriggerForObjectUuid(NEW.uuid); + + SELECT * FROM rbactest.package WHERE uuid = NEW.packageUuid INTO newPackage; + assert newPackage.uuid is not null, format(''newPackage must not be null for NEW.packageUuid = %s of rbactest.domain'', NEW.packageUuid); + + + perform rbac.defineRoleWithGrants( + rbactest.domain_OWNER(NEW), + permissions => array[''DELETE'', ''UPDATE''], + incomingSuperRoles => array[rbactest.package_ADMIN(newPackage)], + outgoingSubRoles => array[rbactest.package_TENANT(newPackage)] + ); + + perform rbac.defineRoleWithGrants( + rbactest.domain_ADMIN(NEW), + permissions => array[''SELECT''], + incomingSuperRoles => array[rbactest.domain_OWNER(NEW)], + outgoingSubRoles => array[rbactest.package_TENANT(newPackage)] + ); + + call rbac.leaveTriggerForObjectUuid(NEW.uuid); +end; '; + + +ALTER PROCEDURE rbactest.domain_build_rbac_system(IN new rbactest.domain) OWNER TO test; + +-- +-- Name: domain_build_rbac_system_after_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_build_rbac_system_after_insert_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + call rbactest.domain_build_rbac_system(NEW); + return NEW; +end; '; + + +ALTER FUNCTION rbactest.domain_build_rbac_system_after_insert_tf() OWNER TO test; + +-- +-- Name: domain_create_test_data(integer); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.domain_create_test_data(IN domainperpackage integer) + LANGUAGE plpgsql + AS ' +declare + pac record; +begin + for pac in + (select p.uuid, p.name + from rbactest.package p + join rbactest.customer c on p.customeruuid = c.uuid + where c.reference < 90000) + loop + call rbactest.domain_create_test_data(pac.name, 2); + commit; + end loop; + +end; '; + + +ALTER PROCEDURE rbactest.domain_create_test_data(IN domainperpackage integer) OWNER TO test; + +-- +-- Name: domain_create_test_data(character varying, integer); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.domain_create_test_data(IN packagename character varying, IN domaincount integer) + LANGUAGE plpgsql + AS ' +declare + pac record; + pacAdmin varchar; +begin + select p.uuid, p.name, c.prefix as custPrefix + from rbactest.package p + join rbactest.customer c on p.customeruuid = c.uuid + where p.name = packageName + into pac; + + for t in 0..(domainCount-1) + loop + pacAdmin = ''pac-admin-'' || pac.name || ''@'' || pac.custPrefix || ''.example.com''; + call base.defineContext(''creating RBAC test domain'', null, pacAdmin, null); + + insert + into rbactest.domain (name, packageUuid) + values (pac.name || ''-'' || base.intToVarChar(t, 4), pac.uuid); + end loop; +end; '; + + +ALTER PROCEDURE rbactest.domain_create_test_data(IN packagename character varying, IN domaincount integer) OWNER TO test; + +-- +-- Name: domain_grants_insert_to_package_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_grants_insert_to_package_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + + call rbac.grantPermissionToRole( + rbac.createPermission(NEW.uuid, ''INSERT'', ''rbactest.domain''), + rbactest.package_ADMIN(NEW)); + + return NEW; +end; '; + + +ALTER FUNCTION rbactest.domain_grants_insert_to_package_tf() OWNER TO test; + +-- +-- Name: domain_guest(rbactest.domain, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_guest(entity rbactest.domain, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''GUEST'', assumed); + end; '; + + +ALTER FUNCTION rbactest.domain_guest(entity rbactest.domain, assumed boolean) OWNER TO test; + +-- +-- Name: domain_id_name_by_uuid(uuid); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_id_name_by_uuid(givenuuid uuid) RETURNS character varying + LANGUAGE sql STRICT + AS ' + select idName from rbactest.domain_iv iv where iv.uuid = givenUuid; + '; + + +ALTER FUNCTION rbactest.domain_id_name_by_uuid(givenuuid uuid) OWNER TO test; + +-- +-- Name: domain_insert_permission_check_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_insert_permission_check_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' +declare + superObjectUuid uuid; +begin + + if rbac.hasInsertPermission(NEW.packageUuid, ''rbactest.domain'') then + return NEW; + end if; + + raise exception ''[403] insert into rbactest.domain values(%) not allowed for current subjects % (%)'', + NEW, base.currentSubjects(), rbac.currentSubjectOrAssumedRolesUuids(); +end; '; + + +ALTER FUNCTION rbactest.domain_insert_permission_check_tf() OWNER TO test; + +-- +-- Name: domain_instead_of_delete_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_instead_of_delete_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''DELETE'', ''rbactest.domain'', rbac.currentSubjectOrAssumedRolesUuids())) then + delete from rbactest.domain p where p.uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to delete rbactest.domain uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.domain_instead_of_delete_tf() OWNER TO test; + +-- +-- Name: domain_instead_of_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_instead_of_insert_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + declare + newTargetRow rbactest.domain; + begin + insert + into rbactest.domain (uuid, packageuuid, name, description) + values (new.uuid, new.packageuuid, new.name, new.description) + returning * into newTargetRow; + return newTargetRow; + end; '; + + +ALTER FUNCTION rbactest.domain_instead_of_insert_tf() OWNER TO test; + +-- +-- Name: domain_instead_of_update_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_instead_of_update_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''UPDATE'', ''rbactest.domain'', rbac.currentSubjectOrAssumedRolesUuids())) then + update rbactest.domain + set + version = new.version, + packageUuid = new.packageUuid, + description = new.description + + where uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to update rbactest.domain uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.domain_instead_of_update_tf() OWNER TO test; + +-- +-- Name: domain_owner(rbactest.domain, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_owner(entity rbactest.domain, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''OWNER'', assumed); + end; '; + + +ALTER FUNCTION rbactest.domain_owner(entity rbactest.domain, assumed boolean) OWNER TO test; + +-- +-- Name: domain_rebuild_rbac_system(); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.domain_rebuild_rbac_system() + LANGUAGE plpgsql + AS ' +DECLARE + DECLARE + row rbactest.domain; + grantsAfter numeric; + grantsBefore numeric; +BEGIN + SELECT count(*) INTO grantsBefore FROM rbac.grant; + + FOR row IN SELECT * FROM rbactest.domain LOOP + + DELETE FROM rbac.grant g + WHERE g.grantedbytriggerof = row.uuid; + + + CALL rbactest.domain_build_rbac_system(row); + END LOOP; + + select count(*) into grantsAfter from rbac.grant; + + + raise notice ''total grant count before -> after: % -> %'', grantsBefore, grantsAfter; +END; +'; + + +ALTER PROCEDURE rbactest.domain_rebuild_rbac_system() OWNER TO test; + +-- +-- Name: domain_referrer(rbactest.domain); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_referrer(entity rbactest.domain) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''REFERRER''); + end; '; + + +ALTER FUNCTION rbactest.domain_referrer(entity rbactest.domain) OWNER TO test; + +-- +-- Name: domain_tenant(rbactest.domain, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_tenant(entity rbactest.domain, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.domain'', entity.uuid, ''TENANT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.domain_tenant(entity rbactest.domain, assumed boolean) OWNER TO test; + +-- +-- Name: domain_update_rbac_system(rbactest.domain, rbactest.domain); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.domain_update_rbac_system(IN old rbactest.domain, IN new rbactest.domain) + LANGUAGE plpgsql + AS ' + +declare + oldPackage rbactest.package; + newPackage rbactest.package; + +begin + call rbac.enterTriggerForObjectUuid(NEW.uuid); + + SELECT * FROM rbactest.package WHERE uuid = OLD.packageUuid INTO oldPackage; + assert oldPackage.uuid is not null, format(''oldPackage must not be null for OLD.packageUuid = %s of rbactest.domain'', OLD.packageUuid); + + SELECT * FROM rbactest.package WHERE uuid = NEW.packageUuid INTO newPackage; + assert newPackage.uuid is not null, format(''newPackage must not be null for NEW.packageUuid = %s of rbactest.domain'', NEW.packageUuid); + + + if NEW.packageUuid <> OLD.packageUuid then + + call rbac.revokeRoleFromRole(rbactest.domain_OWNER(OLD), rbactest.package_ADMIN(oldPackage)); + call rbac.grantRoleToRole(rbactest.domain_OWNER(NEW), rbactest.package_ADMIN(newPackage)); + + call rbac.revokeRoleFromRole(rbactest.package_TENANT(oldPackage), rbactest.domain_OWNER(OLD)); + call rbac.grantRoleToRole(rbactest.package_TENANT(newPackage), rbactest.domain_OWNER(NEW)); + + call rbac.revokeRoleFromRole(rbactest.package_TENANT(oldPackage), rbactest.domain_ADMIN(OLD)); + call rbac.grantRoleToRole(rbactest.package_TENANT(newPackage), rbactest.domain_ADMIN(NEW)); + + end if; + + call rbac.leaveTriggerForObjectUuid(NEW.uuid); +end; '; + + +ALTER PROCEDURE rbactest.domain_update_rbac_system(IN old rbactest.domain, IN new rbactest.domain) OWNER TO test; + +-- +-- Name: domain_update_rbac_system_after_update_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_update_rbac_system_after_update_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + call rbactest.domain_update_rbac_system(OLD, NEW); + return NEW; +end; '; + + +ALTER FUNCTION rbactest.domain_update_rbac_system_after_update_tf() OWNER TO test; + +-- +-- Name: domain_uuid_by_id_name(character varying); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.domain_uuid_by_id_name(givenidname character varying) RETURNS uuid + LANGUAGE plpgsql + AS ' + declare + singleMatch uuid; + begin + select uuid into strict singleMatch from rbactest.domain_iv iv where iv.idName = givenIdName; + return singleMatch; + end; '; + + +ALTER FUNCTION rbactest.domain_uuid_by_id_name(givenidname character varying) OWNER TO test; + +-- +-- Name: package; Type: TABLE; Schema: rbactest; Owner: test +-- + +CREATE TABLE rbactest.package ( + uuid uuid, + version integer DEFAULT 0 NOT NULL, + customeruuid uuid, + name character varying(5), + description character varying(96) +); + + +ALTER TABLE rbactest.package OWNER TO test; + +-- +-- Name: package_admin(rbactest.package, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_admin(entity rbactest.package, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''ADMIN'', assumed); + end; '; + + +ALTER FUNCTION rbactest.package_admin(entity rbactest.package, assumed boolean) OWNER TO test; + +-- +-- Name: package_agent(rbactest.package, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_agent(entity rbactest.package, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''AGENT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.package_agent(entity rbactest.package, assumed boolean) OWNER TO test; + +-- +-- Name: package_build_rbac_system(rbactest.package); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.package_build_rbac_system(IN new rbactest.package) + LANGUAGE plpgsql + AS ' + +declare + newCustomer rbactest.customer; + +begin + call rbac.enterTriggerForObjectUuid(NEW.uuid); + + SELECT * FROM rbactest.customer WHERE uuid = NEW.customerUuid INTO newCustomer; + assert newCustomer.uuid is not null, format(''newCustomer must not be null for NEW.customerUuid = %s of rbactest.package'', NEW.customerUuid); + + + perform rbac.defineRoleWithGrants( + rbactest.package_OWNER(NEW), + permissions => array[''DELETE'', ''UPDATE''], + incomingSuperRoles => array[rbactest.customer_ADMIN(newCustomer)] + ); + + perform rbac.defineRoleWithGrants( + rbactest.package_ADMIN(NEW), + incomingSuperRoles => array[rbactest.package_OWNER(NEW)] + ); + + perform rbac.defineRoleWithGrants( + rbactest.package_TENANT(NEW), + permissions => array[''SELECT''], + incomingSuperRoles => array[rbactest.package_ADMIN(NEW)], + outgoingSubRoles => array[rbactest.customer_TENANT(newCustomer)] + ); + + call rbac.leaveTriggerForObjectUuid(NEW.uuid); +end; '; + + +ALTER PROCEDURE rbactest.package_build_rbac_system(IN new rbactest.package) OWNER TO test; + +-- +-- Name: package_build_rbac_system_after_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_build_rbac_system_after_insert_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + call rbactest.package_build_rbac_system(NEW); + return NEW; +end; '; + + +ALTER FUNCTION rbactest.package_build_rbac_system_after_insert_tf() OWNER TO test; + +-- +-- Name: package_create_test_data(); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.package_create_test_data() + LANGUAGE plpgsql + AS ' +declare + cust rbactest.customer; +begin + for cust in (select * from rbactest.customer) + loop + continue when cust.reference >= 90000; + call rbactest.package_create_test_data(cust.prefix, 3); + end loop; + + commit; +end ; +'; + + +ALTER PROCEDURE rbactest.package_create_test_data() OWNER TO test; + +-- +-- Name: package_create_test_data(character varying, integer); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.package_create_test_data(IN customerprefix character varying, IN paccount integer) + LANGUAGE plpgsql + AS ' +declare + cust rbactest.customer; + custAdminUser varchar; + custAdminRole varchar; + pacName varchar; + pac rbactest.package; +begin + select * from rbactest.customer where rbactest.customer.prefix = customerPrefix into cust; + + for t in 0..(pacCount-1) + loop + pacName = cust.prefix || to_char(t, ''fm00''); + custAdminUser = ''customer-admin@'' || cust.prefix || ''.example.com''; + custAdminRole = ''rbactest.customer#'' || cust.prefix || '':ADMIN''; + call base.defineContext(''creating RBAC test package'', null, ''superuser-fran@hostsharing.net'', custAdminRole); + + insert + into rbactest.package (customerUuid, name, description) + values (cust.uuid, pacName, ''Here you can add your own description of package '' || pacName || ''.'') + returning * into pac; + + call rbac.grantRoleToSubject( + rbac.getRoleId(rbactest.customer_ADMIN(cust)), + rbac.findRoleId(rbactest.package_ADMIN(pac)), + rbac.create_subject(''pac-admin-'' || pacName || ''@'' || cust.prefix || ''.example.com''), + true); + + end loop; +end; '; + + +ALTER PROCEDURE rbactest.package_create_test_data(IN customerprefix character varying, IN paccount integer) OWNER TO test; + +-- +-- Name: package_grants_insert_to_customer_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_grants_insert_to_customer_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + + call rbac.grantPermissionToRole( + rbac.createPermission(NEW.uuid, ''INSERT'', ''rbactest.package''), + rbactest.customer_ADMIN(NEW)); + + return NEW; +end; '; + + +ALTER FUNCTION rbactest.package_grants_insert_to_customer_tf() OWNER TO test; + +-- +-- Name: package_guest(rbactest.package, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_guest(entity rbactest.package, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''GUEST'', assumed); + end; '; + + +ALTER FUNCTION rbactest.package_guest(entity rbactest.package, assumed boolean) OWNER TO test; + +-- +-- Name: package_id_name_by_uuid(uuid); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_id_name_by_uuid(givenuuid uuid) RETURNS character varying + LANGUAGE sql STRICT + AS ' + select idName from rbactest.package_iv iv where iv.uuid = givenUuid; + '; + + +ALTER FUNCTION rbactest.package_id_name_by_uuid(givenuuid uuid) OWNER TO test; + +-- +-- Name: package_insert_permission_check_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_insert_permission_check_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' +declare + superObjectUuid uuid; +begin + + if rbac.hasInsertPermission(NEW.customerUuid, ''rbactest.package'') then + return NEW; + end if; + + raise exception ''[403] insert into rbactest.package values(%) not allowed for current subjects % (%)'', + NEW, base.currentSubjects(), rbac.currentSubjectOrAssumedRolesUuids(); +end; '; + + +ALTER FUNCTION rbactest.package_insert_permission_check_tf() OWNER TO test; + +-- +-- Name: package_instead_of_delete_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_instead_of_delete_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''DELETE'', ''rbactest.package'', rbac.currentSubjectOrAssumedRolesUuids())) then + delete from rbactest.package p where p.uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to delete rbactest.package uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.package_instead_of_delete_tf() OWNER TO test; + +-- +-- Name: package_instead_of_insert_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_instead_of_insert_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + declare + newTargetRow rbactest.package; + begin + insert + into rbactest.package (uuid, version, customeruuid, name, description) + values (new.uuid, new.version, new.customeruuid, new.name, new.description) + returning * into newTargetRow; + return newTargetRow; + end; '; + + +ALTER FUNCTION rbactest.package_instead_of_insert_tf() OWNER TO test; + +-- +-- Name: package_instead_of_update_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_instead_of_update_tf() RETURNS trigger + LANGUAGE plpgsql + AS ' + begin + if old.uuid in (select rbac.queryAccessibleObjectUuidsOfSubjectIds(''UPDATE'', ''rbactest.package'', rbac.currentSubjectOrAssumedRolesUuids())) then + update rbactest.package + set + version = new.version, + customerUuid = new.customerUuid, + description = new.description + + where uuid = old.uuid; + return old; + end if; + raise exception ''[403] Subject % is not allowed to update rbactest.package uuid %'', rbac.currentSubjectOrAssumedRolesUuids(), old.uuid; + end; '; + + +ALTER FUNCTION rbactest.package_instead_of_update_tf() OWNER TO test; + +-- +-- Name: package_owner(rbactest.package, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_owner(entity rbactest.package, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''OWNER'', assumed); + end; '; + + +ALTER FUNCTION rbactest.package_owner(entity rbactest.package, assumed boolean) OWNER TO test; + +-- +-- Name: package_rebuild_rbac_system(); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.package_rebuild_rbac_system() + LANGUAGE plpgsql + AS ' +DECLARE + DECLARE + row rbactest.package; + grantsAfter numeric; + grantsBefore numeric; +BEGIN + SELECT count(*) INTO grantsBefore FROM rbac.grant; + + FOR row IN SELECT * FROM rbactest.package LOOP + + DELETE FROM rbac.grant g + WHERE g.grantedbytriggerof = row.uuid; + + + CALL rbactest.package_build_rbac_system(row); + END LOOP; + + select count(*) into grantsAfter from rbac.grant; + + + raise notice ''total grant count before -> after: % -> %'', grantsBefore, grantsAfter; +END; +'; + + +ALTER PROCEDURE rbactest.package_rebuild_rbac_system() OWNER TO test; + +-- +-- Name: package_referrer(rbactest.package); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_referrer(entity rbactest.package) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''REFERRER''); + end; '; + + +ALTER FUNCTION rbactest.package_referrer(entity rbactest.package) OWNER TO test; + +-- +-- Name: package_tenant(rbactest.package, boolean); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_tenant(entity rbactest.package, assumed boolean DEFAULT true) RETURNS rbac.roledescriptor + LANGUAGE plpgsql STRICT + AS ' + begin + return rbac.roleDescriptorOf(''rbactest.package'', entity.uuid, ''TENANT'', assumed); + end; '; + + +ALTER FUNCTION rbactest.package_tenant(entity rbactest.package, assumed boolean) OWNER TO test; + +-- +-- Name: package_update_rbac_system(rbactest.package, rbactest.package); Type: PROCEDURE; Schema: rbactest; Owner: test +-- + +CREATE PROCEDURE rbactest.package_update_rbac_system(IN old rbactest.package, IN new rbactest.package) + LANGUAGE plpgsql + AS ' + +declare + oldCustomer rbactest.customer; + newCustomer rbactest.customer; + +begin + call rbac.enterTriggerForObjectUuid(NEW.uuid); + + SELECT * FROM rbactest.customer WHERE uuid = OLD.customerUuid INTO oldCustomer; + assert oldCustomer.uuid is not null, format(''oldCustomer must not be null for OLD.customerUuid = %s of rbactest.package'', OLD.customerUuid); + + SELECT * FROM rbactest.customer WHERE uuid = NEW.customerUuid INTO newCustomer; + assert newCustomer.uuid is not null, format(''newCustomer must not be null for NEW.customerUuid = %s of rbactest.package'', NEW.customerUuid); + + + if NEW.customerUuid <> OLD.customerUuid then + + call rbac.revokeRoleFromRole(rbactest.package_OWNER(OLD), rbactest.customer_ADMIN(oldCustomer)); + call rbac.grantRoleToRole(rbactest.package_OWNER(NEW), rbactest.customer_ADMIN(newCustomer)); + + call rbac.revokeRoleFromRole(rbactest.customer_TENANT(oldCustomer), rbactest.package_TENANT(OLD)); + call rbac.grantRoleToRole(rbactest.customer_TENANT(newCustomer), rbactest.package_TENANT(NEW)); + + end if; + + call rbac.leaveTriggerForObjectUuid(NEW.uuid); +end; '; + + +ALTER PROCEDURE rbactest.package_update_rbac_system(IN old rbactest.package, IN new rbactest.package) OWNER TO test; + +-- +-- Name: package_update_rbac_system_after_update_tf(); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_update_rbac_system_after_update_tf() RETURNS trigger + LANGUAGE plpgsql STRICT + AS ' +begin + call rbactest.package_update_rbac_system(OLD, NEW); + return NEW; +end; '; + + +ALTER FUNCTION rbactest.package_update_rbac_system_after_update_tf() OWNER TO test; + +-- +-- Name: package_uuid_by_id_name(character varying); Type: FUNCTION; Schema: rbactest; Owner: test +-- + +CREATE FUNCTION rbactest.package_uuid_by_id_name(givenidname character varying) RETURNS uuid + LANGUAGE plpgsql + AS ' + declare + singleMatch uuid; + begin + select uuid into strict singleMatch from rbactest.package_iv iv where iv.idName = givenIdName; + return singleMatch; + end; '; + + +ALTER FUNCTION rbactest.package_uuid_by_id_name(givenidname character varying) OWNER TO test; + -- -- Name: tx_context; Type: TABLE; Schema: base; Owner: test -- @@ -8252,6 +9910,188 @@ CREATE VIEW rbac.subject_rv AS ALTER VIEW rbac.subject_rv OWNER TO test; +-- +-- Name: customer_iv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.customer_iv AS + SELECT target.uuid, + base.cleanidentifier((target.prefix)::character varying) AS idname + FROM rbactest.customer target; + + +ALTER VIEW rbactest.customer_iv OWNER TO test; + +-- +-- Name: customer_rv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.customer_rv AS + WITH accessible_uuids AS ( + WITH RECURSIVE recursive_grants AS ( + SELECT DISTINCT "grant".descendantuuid, + "grant".ascendantuuid, + 1 AS level, + true AS "?column?" + FROM rbac."grant" + WHERE ("grant".assumed AND ("grant".ascendantuuid = ANY (rbac.currentsubjectorassumedrolesuuids()))) + UNION ALL + SELECT DISTINCT g.descendantuuid, + g.ascendantuuid, + (grants.level + 1) AS level, + base.asserttrue((grants.level < 22), ('too many grant-levels: '::text || grants.level)) AS asserttrue + FROM (rbac."grant" g + JOIN recursive_grants grants ON ((grants.descendantuuid = g.ascendantuuid))) + WHERE g.assumed + ), grant_count AS ( + SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1 + ), count_check AS ( + SELECT base.asserttrue((( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1) < 400000), ('too many grants for current subjects: '::text || ( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1))) AS valid + ) + SELECT DISTINCT perm.objectuuid + FROM (((recursive_grants + JOIN rbac.permission perm ON ((recursive_grants.descendantuuid = perm.uuid))) + JOIN rbac.object obj ON ((obj.uuid = perm.objectuuid))) + JOIN count_check cc ON (cc.valid)) + WHERE ((obj.objecttable)::text = 'rbactest.customer'::text) + ) + SELECT target.uuid, + target.version, + target.reference, + target.prefix, + target.adminusername + FROM rbactest.customer target + WHERE (rbac.hasglobaladminrole() OR (target.uuid IN ( SELECT accessible_uuids.objectuuid + FROM accessible_uuids))) + ORDER BY target.reference; + + +ALTER VIEW rbactest.customer_rv OWNER TO test; + +-- +-- Name: domain_iv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.domain_iv AS + SELECT target.uuid, + base.cleanidentifier(target.name) AS idname + FROM rbactest.domain target; + + +ALTER VIEW rbactest.domain_iv OWNER TO test; + +-- +-- Name: domain_rv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.domain_rv AS + WITH accessible_uuids AS ( + WITH RECURSIVE recursive_grants AS ( + SELECT DISTINCT "grant".descendantuuid, + "grant".ascendantuuid, + 1 AS level, + true AS "?column?" + FROM rbac."grant" + WHERE ("grant".assumed AND ("grant".ascendantuuid = ANY (rbac.currentsubjectorassumedrolesuuids()))) + UNION ALL + SELECT DISTINCT g.descendantuuid, + g.ascendantuuid, + (grants.level + 1) AS level, + base.asserttrue((grants.level < 22), ('too many grant-levels: '::text || grants.level)) AS asserttrue + FROM (rbac."grant" g + JOIN recursive_grants grants ON ((grants.descendantuuid = g.ascendantuuid))) + WHERE g.assumed + ), grant_count AS ( + SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1 + ), count_check AS ( + SELECT base.asserttrue((( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1) < 400000), ('too many grants for current subjects: '::text || ( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1))) AS valid + ) + SELECT DISTINCT perm.objectuuid + FROM (((recursive_grants + JOIN rbac.permission perm ON ((recursive_grants.descendantuuid = perm.uuid))) + JOIN rbac.object obj ON ((obj.uuid = perm.objectuuid))) + JOIN count_check cc ON (cc.valid)) + WHERE ((obj.objecttable)::text = 'rbactest.domain'::text) + ) + SELECT target.uuid, + target.packageuuid, + target.name, + target.description + FROM rbactest.domain target + WHERE (rbac.hasglobaladminrole() OR (target.uuid IN ( SELECT accessible_uuids.objectuuid + FROM accessible_uuids))) + ORDER BY target.name; + + +ALTER VIEW rbactest.domain_rv OWNER TO test; + +-- +-- Name: package_iv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.package_iv AS + SELECT target.uuid, + base.cleanidentifier(target.name) AS idname + FROM rbactest.package target; + + +ALTER VIEW rbactest.package_iv OWNER TO test; + +-- +-- Name: package_rv; Type: VIEW; Schema: rbactest; Owner: test +-- + +CREATE VIEW rbactest.package_rv AS + WITH accessible_uuids AS ( + WITH RECURSIVE recursive_grants AS ( + SELECT DISTINCT "grant".descendantuuid, + "grant".ascendantuuid, + 1 AS level, + true AS "?column?" + FROM rbac."grant" + WHERE ("grant".assumed AND ("grant".ascendantuuid = ANY (rbac.currentsubjectorassumedrolesuuids()))) + UNION ALL + SELECT DISTINCT g.descendantuuid, + g.ascendantuuid, + (grants.level + 1) AS level, + base.asserttrue((grants.level < 22), ('too many grant-levels: '::text || grants.level)) AS asserttrue + FROM (rbac."grant" g + JOIN recursive_grants grants ON ((grants.descendantuuid = g.ascendantuuid))) + WHERE g.assumed + ), grant_count AS ( + SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1 + ), count_check AS ( + SELECT base.asserttrue((( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1) < 400000), ('too many grants for current subjects: '::text || ( SELECT count(*) AS grant_count + FROM recursive_grants recursive_grants_1))) AS valid + ) + SELECT DISTINCT perm.objectuuid + FROM (((recursive_grants + JOIN rbac.permission perm ON ((recursive_grants.descendantuuid = perm.uuid))) + JOIN rbac.object obj ON ((obj.uuid = perm.objectuuid))) + JOIN count_check cc ON (cc.valid)) + WHERE ((obj.objecttable)::text = 'rbactest.package'::text) + ) + SELECT target.uuid, + target.version, + target.customeruuid, + target.name, + target.description + FROM rbactest.package target + WHERE (rbac.hasglobaladminrole() OR (target.uuid IN ( SELECT accessible_uuids.objectuuid + FROM accessible_uuids))) + ORDER BY target.name; + + +ALTER VIEW rbactest.package_rv OWNER TO test; + -- -- Name: contact_legacy_id contact_id; Type: DEFAULT; Schema: hs_office; Owner: test -- @@ -8298,3523 +10138,3560 @@ ALTER TABLE ONLY rbac.object ALTER COLUMN serialid SET DEFAULT nextval('rbac.obj -- Data for Name: tx_context; Type: TABLE DATA; Schema: base; Owner: test -- -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('883', '2025-02-03 15:09:57.200955', '', '{}', 'initializing table "rbac.global"', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('885', '2025-02-03 15:09:57.235415', '', '{}', 'creating role:rbac.global#global:ADMIN', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('887', '2025-02-03 15:09:57.256718', '', '{}', 'creating role:rbac.global#global:guest', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('976', '2025-02-03 15:09:58.102109', '', '{}', 'create INSERT INTO hs_office.partner permissions for pre-exising rbac.global rows', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('993', '2025-02-03 15:09:58.219454', '', '{}', 'create INSERT INTO hs_office.partner_details permissions for pre-exising rbac.global rows', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1043', '2025-02-03 15:09:58.512597', '', '{}', 'create INSERT INTO hs_office.debitor permissions for pre-exising rbac.global rows', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1095', '2025-02-03 15:09:58.862356', '', '{}', 'create INSERT INTO hs_office.membership permissions for pre-exising rbac.global rows', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1185', '2025-02-03 15:10:11.972842', '', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1186', '2025-02-03 15:10:12.02247', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1244', '2025-02-03 15:10:12.687178', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1317', '2025-02-03 15:10:12.940092', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1527', '2025-02-03 15:10:14.463818', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1576', '2025-02-03 15:10:14.803123', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1601', '2025-02-03 15:10:15.026844', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1637', '2025-02-03 15:10:15.203074', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1659', '2025-02-03 15:10:15.291885', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1681', '2025-02-03 15:10:15.508415', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1704', '2025-02-03 15:10:15.628149', 'import-superuser@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1692', '2025-01-30 16:36:11.049546', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1750', '2025-01-30 16:36:11.58435', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('1823', '2025-01-30 16:36:11.810066', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2033', '2025-01-30 16:36:13.382336', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2082', '2025-01-30 16:36:13.699862', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2107', '2025-01-30 16:36:13.924092', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2143', '2025-01-30 16:36:14.091721', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2165', '2025-01-30 16:36:14.17407', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2187', '2025-01-30 16:36:14.382939', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); +INSERT INTO base.tx_context (txid, txtimestamp, currentsubject, assumedroles, currenttask, currentrequest) VALUES ('2210', '2025-01-30 16:36:14.478165', 'superuser-alex@hostsharing.net', '{}', 'persistOfficeEntities()', ''); -- -- Data for Name: tx_journal; Type: TABLE DATA; Schema: base; Owner: test -- -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('883', 'rbac.object', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'INSERT', '{"uuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64", "serialid": 1, "objecttable": "rbac.global"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('885', 'rbac.role', '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'INSERT', '{"uuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "roletype": "ADMIN", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('887', 'rbac.role', 'c9e66e49-a298-4325-a291-5c6a484b4dd1', 'INSERT', '{"uuid": "c9e66e49-a298-4325-a291-5c6a484b4dd1", "roletype": "GUEST", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('976', 'rbac.permission', '1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31', 'INSERT', '{"op": "INSERT", "uuid": "1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64", "optablename": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('976', 'rbac.grant', '811c86b6-39c9-45e1-b8c8-74ccd6633f85', 'INSERT', '{"uuid": "811c86b6-39c9-45e1-b8c8-74ccd6633f85", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('993', 'rbac.permission', 'dcb6787c-3652-4ddc-bea1-6e32efab1ab8', 'INSERT', '{"op": "INSERT", "uuid": "dcb6787c-3652-4ddc-bea1-6e32efab1ab8", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64", "optablename": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('993', 'rbac.grant', 'c4cfb2f4-efce-440b-bf8d-e28bebf0442a', 'INSERT', '{"uuid": "c4cfb2f4-efce-440b-bf8d-e28bebf0442a", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "dcb6787c-3652-4ddc-bea1-6e32efab1ab8", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1043', 'rbac.permission', '1d26a525-6c01-453a-990b-8208eb077058', 'INSERT', '{"op": "INSERT", "uuid": "1d26a525-6c01-453a-990b-8208eb077058", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64", "optablename": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1043', 'rbac.grant', 'c36d683b-1c78-4803-8dfc-9ce04ff239a3', 'INSERT', '{"uuid": "c36d683b-1c78-4803-8dfc-9ce04ff239a3", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1d26a525-6c01-453a-990b-8208eb077058", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1095', 'rbac.permission', '8a906922-c5cd-41a8-927e-6506b96a722c', 'INSERT', '{"op": "INSERT", "uuid": "8a906922-c5cd-41a8-927e-6506b96a722c", "objectuuid": "c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64", "optablename": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1095', 'rbac.grant', '15b265a7-3c4d-4b21-93fa-6e1fb1c9850b', 'INSERT', '{"uuid": "15b265a7-3c4d-4b21-93fa-6e1fb1c9850b", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "8a906922-c5cd-41a8-927e-6506b96a722c", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1185', 'rbac.subject', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'INSERT', '{"name": "import-superuser@hostsharing.net", "uuid": "dcdfdea4-eec6-46fb-a006-1753a075201d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1185', 'rbac.grant', '770d1f9f-ec01-459a-977f-a678c2016802', 'INSERT', '{"uuid": "770d1f9f-ec01-459a-977f-a678c2016802", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "grantedbyroleuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '1c52fc2c-6390-425b-993a-788365e85d05', 'INSERT', '{"uuid": "1c52fc2c-6390-425b-993a-788365e85d05", "serialid": 2, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'b08554be-1c78-441c-87b0-5dbd7378a983', 'INSERT', '{"uuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "roletype": "OWNER", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'f731e75d-f892-4738-976c-576071605327', 'INSERT', '{"op": "DELETE", "uuid": "f731e75d-f892-4738-976c-576071605327", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b0f4ccfd-158f-4448-b0f0-3af785e42027', 'INSERT', '{"uuid": "b0f4ccfd-158f-4448-b0f0-3af785e42027", "assumed": true, "ascendantuuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "descendantuuid": "f731e75d-f892-4738-976c-576071605327", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'fc833dc9-ca1d-4394-bac6-87a84cdb6d63', 'INSERT', '{"uuid": "fc833dc9-ca1d-4394-bac6-87a84cdb6d63", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '381760a3-1649-4f51-a5ba-6a5c97209ffc', 'INSERT', '{"uuid": "381760a3-1649-4f51-a5ba-6a5c97209ffc", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "grantedbyroleuuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '94724e79-a840-4218-a5d6-e669c73ba53d', 'INSERT', '{"uuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "roletype": "ADMIN", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'e2fd67a6-43c3-4402-ad82-5675d15c619d', 'INSERT', '{"op": "UPDATE", "uuid": "e2fd67a6-43c3-4402-ad82-5675d15c619d", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '7746f42f-1040-4d83-8afa-3ccf2c5f3396', 'INSERT', '{"uuid": "7746f42f-1040-4d83-8afa-3ccf2c5f3396", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "e2fd67a6-43c3-4402-ad82-5675d15c619d", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b6978668-53bb-4bbe-b90a-e702dfadf930', 'INSERT', '{"uuid": "b6978668-53bb-4bbe-b90a-e702dfadf930", "assumed": true, "ascendantuuid": "b08554be-1c78-441c-87b0-5dbd7378a983", "descendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'd366868e-1c5f-40d8-90b6-9159123762fb', 'INSERT', '{"uuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "roletype": "REFERRER", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'f360669b-74d4-46ca-a651-bbadc07e4d8c', 'INSERT', '{"op": "SELECT", "uuid": "f360669b-74d4-46ca-a651-bbadc07e4d8c", "objectuuid": "1c52fc2c-6390-425b-993a-788365e85d05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '3de3f09e-a900-43e8-89f5-4e49ee8364b3', 'INSERT', '{"uuid": "3de3f09e-a900-43e8-89f5-4e49ee8364b3", "assumed": true, "ascendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "descendantuuid": "f360669b-74d4-46ca-a651-bbadc07e4d8c", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'dabdb333-2887-4138-8b2a-597c4de28268', 'INSERT', '{"uuid": "dabdb333-2887-4138-8b2a-597c4de28268", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '1c52fc2c-6390-425b-993a-788365e85d05', 'INSERT', '{"uuid": "1c52fc2c-6390-425b-993a-788365e85d05", "caption": "Michael Mellis, Herr Michael Mellis", "version": 0, "phonenumbers": {"fax": "+49 40 912345-9", "phone_mobile": "+49/1522123455", "phone_office": "+49 4931/1234567"}, "postaladdress": {"city": "Hage", "firm": "Herr Michael Mellis", "name": "Herr Michael Mellis", "street": "Dr. Bolte Str. 50", "country": "Germany", "zipcode": "26524"}, "emailaddresses": {"main": "michael@Mellis.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'INSERT', '{"uuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f", "serialid": 3, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '966e57d1-3610-4b50-8cfd-033a701ba50f', 'INSERT', '{"uuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "roletype": "OWNER", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '73da7922-3956-45fa-9101-2a53a494d5c1', 'INSERT', '{"op": "DELETE", "uuid": "73da7922-3956-45fa-9101-2a53a494d5c1", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'dbdb8890-e044-4fa5-8a75-8535ef2ff69c', 'INSERT', '{"uuid": "dbdb8890-e044-4fa5-8a75-8535ef2ff69c", "assumed": true, "ascendantuuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "descendantuuid": "73da7922-3956-45fa-9101-2a53a494d5c1", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '8c3313f2-101f-44a5-bc2d-f7a96bd570f0', 'INSERT', '{"uuid": "8c3313f2-101f-44a5-bc2d-f7a96bd570f0", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b5d4bf8b-562e-4444-9f14-dcb204a2029e', 'INSERT', '{"uuid": "b5d4bf8b-562e-4444-9f14-dcb204a2029e", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "grantedbyroleuuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '5228a4f7-f78c-4841-a40d-52d994d21a29', 'INSERT', '{"uuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "roletype": "ADMIN", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '1e1478e6-737d-4275-9ac2-8b9f1b020efc', 'INSERT', '{"op": "UPDATE", "uuid": "1e1478e6-737d-4275-9ac2-8b9f1b020efc", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '857aacea-82bd-488a-8338-13c4538e783b', 'INSERT', '{"uuid": "857aacea-82bd-488a-8338-13c4538e783b", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "1e1478e6-737d-4275-9ac2-8b9f1b020efc", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a3c80971-6a16-472a-9d0c-c12f87e4160c', 'INSERT', '{"uuid": "a3c80971-6a16-472a-9d0c-c12f87e4160c", "assumed": true, "ascendantuuid": "966e57d1-3610-4b50-8cfd-033a701ba50f", "descendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', 'INSERT', '{"uuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "roletype": "REFERRER", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'e8782aa9-f679-4b73-b584-cd6f9bd7e2f7', 'INSERT', '{"op": "SELECT", "uuid": "e8782aa9-f679-4b73-b584-cd6f9bd7e2f7", "objectuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '59cb40fb-5161-4f37-bf08-3a2a7cbf7553', 'INSERT', '{"uuid": "59cb40fb-5161-4f37-bf08-3a2a7cbf7553", "assumed": true, "ascendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "descendantuuid": "e8782aa9-f679-4b73-b584-cd6f9bd7e2f7", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '7e6864e8-c943-4a4f-adfc-2c73229f43b6', 'INSERT', '{"uuid": "7e6864e8-c943-4a4f-adfc-2c73229f43b6", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'INSERT', '{"uuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f", "caption": "Ragnar IT-Beratung, Herr Ragnar Richter", "version": 0, "phonenumbers": {"fax": "+49 711 87654-3", "phone_office": "+49 711 987654-2", "phone_private": "+49 711 987654-1"}, "postaladdress": {"city": "Stuttgart", "firm": "Herr Ragnar Richter", "name": "Herr Ragnar Richter", "street": "Vioktoriastraße 114", "country": "Germany", "zipcode": "70197"}, "emailaddresses": {"main": "hostsharing@ragnar-richter.de"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '441d53f1-af50-4e73-9b53-48468700d257', 'INSERT', '{"uuid": "441d53f1-af50-4e73-9b53-48468700d257", "serialid": 4, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '138cbab9-184b-4679-8caa-6d2ee82de3c4', 'INSERT', '{"uuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "roletype": "OWNER", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '8eb7208b-33f9-4e80-9071-ba1b76b79f75', 'INSERT', '{"op": "DELETE", "uuid": "8eb7208b-33f9-4e80-9071-ba1b76b79f75", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '0d9d3125-adf4-438e-b218-67258e8a1e9f', 'INSERT', '{"uuid": "0d9d3125-adf4-438e-b218-67258e8a1e9f", "assumed": true, "ascendantuuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "descendantuuid": "8eb7208b-33f9-4e80-9071-ba1b76b79f75", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'fbc8eecc-eb4a-4e62-9dd8-95d12089ecd8', 'INSERT', '{"uuid": "fbc8eecc-eb4a-4e62-9dd8-95d12089ecd8", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'bef6c842-70f6-45da-abfb-106a2eccc13b', 'INSERT', '{"uuid": "bef6c842-70f6-45da-abfb-106a2eccc13b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "grantedbyroleuuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', 'INSERT', '{"uuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "roletype": "ADMIN", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'bc68123f-b589-48ac-ada5-6ec38993b77e', 'INSERT', '{"op": "UPDATE", "uuid": "bc68123f-b589-48ac-ada5-6ec38993b77e", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '96ec70b1-0db5-416d-ba35-40231c589013', 'INSERT', '{"uuid": "96ec70b1-0db5-416d-ba35-40231c589013", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "bc68123f-b589-48ac-ada5-6ec38993b77e", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '97f5006a-0e88-4e0b-baa7-d83babcb4479', 'INSERT', '{"uuid": "97f5006a-0e88-4e0b-baa7-d83babcb4479", "assumed": true, "ascendantuuid": "138cbab9-184b-4679-8caa-6d2ee82de3c4", "descendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', 'INSERT', '{"uuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "roletype": "REFERRER", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '0bc96a92-5afa-43cf-81f8-63c24e7d82bd', 'INSERT', '{"op": "SELECT", "uuid": "0bc96a92-5afa-43cf-81f8-63c24e7d82bd", "objectuuid": "441d53f1-af50-4e73-9b53-48468700d257", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '66907a6b-8dfe-4989-8980-19f718b8b8f1', 'INSERT', '{"uuid": "66907a6b-8dfe-4989-8980-19f718b8b8f1", "assumed": true, "ascendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "descendantuuid": "0bc96a92-5afa-43cf-81f8-63c24e7d82bd", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '4d368bfb-c444-4e08-bed6-42b394c399ae', 'INSERT', '{"uuid": "4d368bfb-c444-4e08-bed6-42b394c399ae", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "grantedbyroleuuid": null, "grantedbytriggerof": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '441d53f1-af50-4e73-9b53-48468700d257', 'INSERT', '{"uuid": "441d53f1-af50-4e73-9b53-48468700d257", "caption": "Hostsharing e.G., Hostmaster Hostsharing", "version": 0, "phonenumbers": {}, "postaladdress": {"firm": "Hostmaster Hostsharing", "name": "Hostmaster Hostsharing", "country": "Germany"}, "emailaddresses": {"main": "hostmaster@hostsharing.net"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'INSERT', '{"uuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce", "serialid": 5, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'ee1f7e4c-6d00-4eee-a778-e936f019b149', 'INSERT', '{"uuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "roletype": "OWNER", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '60eb6016-51f5-40d5-965c-697d9ca9b3a8', 'INSERT', '{"op": "DELETE", "uuid": "60eb6016-51f5-40d5-965c-697d9ca9b3a8", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '2ec50284-9577-41c6-9854-5ce78c28ba3e', 'INSERT', '{"uuid": "2ec50284-9577-41c6-9854-5ce78c28ba3e", "assumed": true, "ascendantuuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "descendantuuid": "60eb6016-51f5-40d5-965c-697d9ca9b3a8", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5e03ce62-e6b2-448a-93c6-837c914d24ff', 'INSERT', '{"uuid": "5e03ce62-e6b2-448a-93c6-837c914d24ff", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '8d27efcd-1547-41fc-852b-2797056eba7f', 'INSERT', '{"uuid": "8d27efcd-1547-41fc-852b-2797056eba7f", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "grantedbyroleuuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'd98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', 'INSERT', '{"uuid": "d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad", "roletype": "ADMIN", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'e200c0d7-cec3-48ca-be23-61fc26739dd3', 'INSERT', '{"op": "UPDATE", "uuid": "e200c0d7-cec3-48ca-be23-61fc26739dd3", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'f37e51e7-29e6-40fc-a2aa-fc67f4c5839f', 'INSERT', '{"uuid": "f37e51e7-29e6-40fc-a2aa-fc67f4c5839f", "assumed": true, "ascendantuuid": "d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad", "descendantuuid": "e200c0d7-cec3-48ca-be23-61fc26739dd3", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '27309af4-c9c7-43b0-93a8-b574073897cd', 'INSERT', '{"uuid": "27309af4-c9c7-43b0-93a8-b574073897cd", "assumed": true, "ascendantuuid": "ee1f7e4c-6d00-4eee-a778-e936f019b149", "descendantuuid": "d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'c767e22f-f90f-455b-8733-7e58ca5ffba7', 'INSERT', '{"uuid": "c767e22f-f90f-455b-8733-7e58ca5ffba7", "roletype": "REFERRER", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '023e5366-3465-4a4a-ba48-613a72e043c8', 'INSERT', '{"op": "SELECT", "uuid": "023e5366-3465-4a4a-ba48-613a72e043c8", "objectuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '66d03e1f-e0e5-42ef-8e1b-e3611268b8e8', 'INSERT', '{"uuid": "66d03e1f-e0e5-42ef-8e1b-e3611268b8e8", "assumed": true, "ascendantuuid": "c767e22f-f90f-455b-8733-7e58ca5ffba7", "descendantuuid": "023e5366-3465-4a4a-ba48-613a72e043c8", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '4f9ccb2e-ad2c-4429-9ce2-14e519e925cd', 'INSERT', '{"uuid": "4f9ccb2e-ad2c-4429-9ce2-14e519e925cd", "assumed": true, "ascendantuuid": "d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad", "descendantuuid": "c767e22f-f90f-455b-8733-7e58ca5ffba7", "grantedbyroleuuid": null, "grantedbytriggerof": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'INSERT', '{"uuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce", "caption": "JM e.K.", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "", "street": "Wiesenweg 15", "country": "DE", "zipcode": "12335"}, "emailaddresses": {"main": "jm-ex-partner@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'INSERT', '{"uuid": "aa9af033-e564-421c-b235-2dd7d5b96559", "serialid": 6, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '71186c13-cea3-4223-9a7b-033ba9412920', 'INSERT', '{"uuid": "71186c13-cea3-4223-9a7b-033ba9412920", "roletype": "OWNER", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '154d1dd7-66e8-43ab-9b81-796758801837', 'INSERT', '{"op": "DELETE", "uuid": "154d1dd7-66e8-43ab-9b81-796758801837", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '87c7ffba-1059-4efd-ac57-e7268aa7b235', 'INSERT', '{"uuid": "87c7ffba-1059-4efd-ac57-e7268aa7b235", "assumed": true, "ascendantuuid": "71186c13-cea3-4223-9a7b-033ba9412920", "descendantuuid": "154d1dd7-66e8-43ab-9b81-796758801837", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c2c3faef-49b1-437f-81e6-f9f5887dbac1', 'INSERT', '{"uuid": "c2c3faef-49b1-437f-81e6-f9f5887dbac1", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "71186c13-cea3-4223-9a7b-033ba9412920", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'aa653337-1a29-41ac-aa91-3fba4ade193d', 'INSERT', '{"uuid": "aa653337-1a29-41ac-aa91-3fba4ade193d", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "71186c13-cea3-4223-9a7b-033ba9412920", "grantedbyroleuuid": "71186c13-cea3-4223-9a7b-033ba9412920", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', 'INSERT', '{"uuid": "7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a", "roletype": "ADMIN", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '66d8af90-61e5-46c0-a425-501a4320d913', 'INSERT', '{"op": "UPDATE", "uuid": "66d8af90-61e5-46c0-a425-501a4320d913", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '108efaa0-ebe9-423c-86d2-3320050b2ed5', 'INSERT', '{"uuid": "108efaa0-ebe9-423c-86d2-3320050b2ed5", "assumed": true, "ascendantuuid": "7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a", "descendantuuid": "66d8af90-61e5-46c0-a425-501a4320d913", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'e73d2e8c-d6c0-4c42-a40e-ed220970938f', 'INSERT', '{"uuid": "e73d2e8c-d6c0-4c42-a40e-ed220970938f", "assumed": true, "ascendantuuid": "71186c13-cea3-4223-9a7b-033ba9412920", "descendantuuid": "7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '5abd1ae5-da0c-415b-bff7-ef07513e08aa', 'INSERT', '{"uuid": "5abd1ae5-da0c-415b-bff7-ef07513e08aa", "roletype": "REFERRER", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '6e061f41-d64e-4cec-ab4c-016ffbf16cc0', 'INSERT', '{"op": "SELECT", "uuid": "6e061f41-d64e-4cec-ab4c-016ffbf16cc0", "objectuuid": "aa9af033-e564-421c-b235-2dd7d5b96559", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5cb1ef5c-526c-4328-bef0-5dd281c763ed', 'INSERT', '{"uuid": "5cb1ef5c-526c-4328-bef0-5dd281c763ed", "assumed": true, "ascendantuuid": "5abd1ae5-da0c-415b-bff7-ef07513e08aa", "descendantuuid": "6e061f41-d64e-4cec-ab4c-016ffbf16cc0", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5a379cf9-f4bc-4304-9fdd-066a8be657ca', 'INSERT', '{"uuid": "5a379cf9-f4bc-4304-9fdd-066a8be657ca", "assumed": true, "ascendantuuid": "7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a", "descendantuuid": "5abd1ae5-da0c-415b-bff7-ef07513e08aa", "grantedbyroleuuid": null, "grantedbytriggerof": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'INSERT', '{"uuid": "aa9af033-e564-421c-b235-2dd7d5b96559", "caption": "JM GmbH, Frau Dr. Jenny Meyer-Billing", "version": 0, "phonenumbers": {"fax": "+49 30 2222222", "phone_office": "+49 30 1111111", "phone_private": "+49 30 7777777"}, "postaladdress": {"city": "Berlin", "firm": "Frau Dr. Jenny Meyer-Billing", "name": "Frau Dr. Jenny Meyer-Billing", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "jm-billing@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'INSERT', '{"uuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86", "serialid": 7, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'c3163a16-abd8-428c-95d6-420b806f3291', 'INSERT', '{"uuid": "c3163a16-abd8-428c-95d6-420b806f3291", "roletype": "OWNER", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '45cf6473-ef59-46d7-a313-99d7faa6cba5', 'INSERT', '{"op": "DELETE", "uuid": "45cf6473-ef59-46d7-a313-99d7faa6cba5", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c26cca19-6cb8-4ccd-bfce-1aed60808577', 'INSERT', '{"uuid": "c26cca19-6cb8-4ccd-bfce-1aed60808577", "assumed": true, "ascendantuuid": "c3163a16-abd8-428c-95d6-420b806f3291", "descendantuuid": "45cf6473-ef59-46d7-a313-99d7faa6cba5", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'e2fc82e7-62b2-4c1b-94eb-05a96d5a3c3b', 'INSERT', '{"uuid": "e2fc82e7-62b2-4c1b-94eb-05a96d5a3c3b", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c3163a16-abd8-428c-95d6-420b806f3291", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'f9b7ccb5-5568-435e-af4a-f8984c84b01b', 'INSERT', '{"uuid": "f9b7ccb5-5568-435e-af4a-f8984c84b01b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c3163a16-abd8-428c-95d6-420b806f3291", "grantedbyroleuuid": "c3163a16-abd8-428c-95d6-420b806f3291", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', 'INSERT', '{"uuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "roletype": "ADMIN", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '607b321a-2e68-442a-ab4c-c603d2f36491', 'INSERT', '{"op": "UPDATE", "uuid": "607b321a-2e68-442a-ab4c-c603d2f36491", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c8a268f7-7789-4d7c-a213-bdd19b5b80f7', 'INSERT', '{"uuid": "c8a268f7-7789-4d7c-a213-bdd19b5b80f7", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "607b321a-2e68-442a-ab4c-c603d2f36491", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '6ab4c3c1-14fc-4233-bd75-fe17988c486c', 'INSERT', '{"uuid": "6ab4c3c1-14fc-4233-bd75-fe17988c486c", "assumed": true, "ascendantuuid": "c3163a16-abd8-428c-95d6-420b806f3291", "descendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '2b391e5d-6b69-4999-8ede-1885d700233f', 'INSERT', '{"uuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "roletype": "REFERRER", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'd90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa', 'INSERT', '{"op": "SELECT", "uuid": "d90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa", "objectuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ac21e4f3-a0ce-465c-9e58-97a87f4bb0b1', 'INSERT', '{"uuid": "ac21e4f3-a0ce-465c-9e58-97a87f4bb0b1", "assumed": true, "ascendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "descendantuuid": "d90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ea97b1e2-d5fb-4e9f-b85a-308a448e999e', 'INSERT', '{"uuid": "ea97b1e2-d5fb-4e9f-b85a-308a448e999e", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "grantedbyroleuuid": null, "grantedbytriggerof": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'INSERT', '{"uuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86", "caption": "JM GmbH, Herr Andrew Meyer-Operation", "version": 0, "phonenumbers": {"fax": "+49 30 4444444", "phone_office": "+49 30 3333333", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "Herr Andrew Meyer-Operation", "name": "Herr Andrew Meyer-Operation", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "am-operation@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '25083463-3713-4a20-b579-c1e34d542bcd', 'INSERT', '{"uuid": "25083463-3713-4a20-b579-c1e34d542bcd", "serialid": 8, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', 'INSERT', '{"uuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "roletype": "OWNER", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '3ff75cbf-35a8-4a35-b38e-ef723b8e2b86', 'INSERT', '{"op": "DELETE", "uuid": "3ff75cbf-35a8-4a35-b38e-ef723b8e2b86", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '07ca1167-e063-4607-b6b7-74627c4c2579', 'INSERT', '{"uuid": "07ca1167-e063-4607-b6b7-74627c4c2579", "assumed": true, "ascendantuuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "descendantuuid": "3ff75cbf-35a8-4a35-b38e-ef723b8e2b86", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'fc9223f3-0750-44a7-86f8-3de3ce4f0a90', 'INSERT', '{"uuid": "fc9223f3-0750-44a7-86f8-3de3ce4f0a90", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b21a4879-0978-429f-98f6-bd719d3763f9', 'INSERT', '{"uuid": "b21a4879-0978-429f-98f6-bd719d3763f9", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "grantedbyroleuuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '4309a7bf-0556-40d0-872d-dcbb13273c62', 'INSERT', '{"uuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "roletype": "ADMIN", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '98d3874a-b4fe-4355-86d1-d0508adc32b9', 'INSERT', '{"op": "UPDATE", "uuid": "98d3874a-b4fe-4355-86d1-d0508adc32b9", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'INSERT', '{"uuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2", "serialid": 14, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ce2f224d-e447-4582-b371-6dd772af9f22', 'INSERT', '{"uuid": "ce2f224d-e447-4582-b371-6dd772af9f22", "assumed": true, "ascendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "descendantuuid": "98d3874a-b4fe-4355-86d1-d0508adc32b9", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '658bfdc1-16c0-4325-a160-41928806e003', 'INSERT', '{"uuid": "658bfdc1-16c0-4325-a160-41928806e003", "assumed": true, "ascendantuuid": "bc3a8a8b-a276-4a3a-b750-bf7857ad1cec", "descendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '5034d61c-e9dd-4b48-8dc8-b9279e015494', 'INSERT', '{"uuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "roletype": "REFERRER", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'dac07f03-0dc2-4de1-a7f4-13145acd41b1', 'INSERT', '{"op": "SELECT", "uuid": "dac07f03-0dc2-4de1-a7f4-13145acd41b1", "objectuuid": "25083463-3713-4a20-b579-c1e34d542bcd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b1684d87-0c54-4777-ba72-ff6eabd5de59', 'INSERT', '{"uuid": "b1684d87-0c54-4777-ba72-ff6eabd5de59", "assumed": true, "ascendantuuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "descendantuuid": "dac07f03-0dc2-4de1-a7f4-13145acd41b1", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '4c7880cb-0d5f-4fc2-903d-f3c5cac66479', 'INSERT', '{"uuid": "4c7880cb-0d5f-4fc2-903d-f3c5cac66479", "assumed": true, "ascendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "descendantuuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "grantedbyroleuuid": null, "grantedbytriggerof": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '25083463-3713-4a20-b579-c1e34d542bcd', 'INSERT', '{"uuid": "25083463-3713-4a20-b579-c1e34d542bcd", "caption": "JM GmbH, Herr Philip Meyer-Contract", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "Herr Philip Meyer-Contract", "name": "Herr Philip Meyer-Contract", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "pm-partner@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'INSERT', '{"uuid": "dbf6038a-0387-400d-b083-411ba014ff6a", "serialid": 9, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', 'INSERT', '{"uuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "roletype": "OWNER", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '5545c680-274b-476b-98d4-e3fa99c4f4e4', 'INSERT', '{"op": "DELETE", "uuid": "5545c680-274b-476b-98d4-e3fa99c4f4e4", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '3aa6a573-df40-44ef-ad7d-26ad4d700fe7', 'INSERT', '{"uuid": "3aa6a573-df40-44ef-ad7d-26ad4d700fe7", "assumed": true, "ascendantuuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "descendantuuid": "5545c680-274b-476b-98d4-e3fa99c4f4e4", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '42ef5d39-7426-4b82-a6df-b001247ef085', 'INSERT', '{"uuid": "42ef5d39-7426-4b82-a6df-b001247ef085", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '9016ccfc-bf61-41c2-a936-6739b72f4538', 'INSERT', '{"uuid": "9016ccfc-bf61-41c2-a936-6739b72f4538", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "grantedbyroleuuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '662d0ce7-6216-4366-9691-cb5e6020e36f', 'INSERT', '{"uuid": "662d0ce7-6216-4366-9691-cb5e6020e36f", "roletype": "ADMIN", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'c0c83cf5-e355-453e-9791-2d850078d07b', 'INSERT', '{"op": "UPDATE", "uuid": "c0c83cf5-e355-453e-9791-2d850078d07b", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '39c64774-a7de-4ab6-b70c-74f7818cfce2', 'INSERT', '{"uuid": "39c64774-a7de-4ab6-b70c-74f7818cfce2", "assumed": true, "ascendantuuid": "662d0ce7-6216-4366-9691-cb5e6020e36f", "descendantuuid": "c0c83cf5-e355-453e-9791-2d850078d07b", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '1c94e2cb-bb96-492e-80a9-24075ca4e545', 'INSERT', '{"uuid": "1c94e2cb-bb96-492e-80a9-24075ca4e545", "assumed": true, "ascendantuuid": "acc6f8b6-e950-491a-99d8-432ab5f10b8d", "descendantuuid": "662d0ce7-6216-4366-9691-cb5e6020e36f", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'c16a64f9-5dd6-447b-bf7f-f19d542b981b', 'INSERT', '{"uuid": "c16a64f9-5dd6-447b-bf7f-f19d542b981b", "roletype": "REFERRER", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '083a28d4-199f-4cd6-9aa0-5cb0b4aac74e', 'INSERT', '{"op": "SELECT", "uuid": "083a28d4-199f-4cd6-9aa0-5cb0b4aac74e", "objectuuid": "dbf6038a-0387-400d-b083-411ba014ff6a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '930febcb-e673-4145-b947-33c4abbe3528', 'INSERT', '{"uuid": "930febcb-e673-4145-b947-33c4abbe3528", "assumed": true, "ascendantuuid": "c16a64f9-5dd6-447b-bf7f-f19d542b981b", "descendantuuid": "083a28d4-199f-4cd6-9aa0-5cb0b4aac74e", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '317064a2-6781-400e-883e-c7c9c0e28d43', 'INSERT', '{"uuid": "317064a2-6781-400e-883e-c7c9c0e28d43", "assumed": true, "ascendantuuid": "662d0ce7-6216-4366-9691-cb5e6020e36f", "descendantuuid": "c16a64f9-5dd6-447b-bf7f-f19d542b981b", "grantedbyroleuuid": null, "grantedbytriggerof": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'INSERT', '{"uuid": "dbf6038a-0387-400d-b083-411ba014ff6a", "caption": "JM GmbH, Frau Tammy Meyer-VIP", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 999999", "phone_private": "+49 30 999999"}, "postaladdress": {"city": "Berlin", "firm": "Frau Tammy Meyer-VIP", "name": "Frau Tammy Meyer-VIP", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "tm-vip@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'INSERT', '{"uuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6", "serialid": 10, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '60ac113d-c253-482f-b057-c83399cabc22', 'INSERT', '{"uuid": "60ac113d-c253-482f-b057-c83399cabc22", "roletype": "OWNER", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '7aeacd93-2236-43ff-bbb3-a7ed6ae5becc', 'INSERT', '{"op": "DELETE", "uuid": "7aeacd93-2236-43ff-bbb3-a7ed6ae5becc", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '9a2d2bcc-4ac3-47c8-a98c-e074eabad3fc', 'INSERT', '{"uuid": "9a2d2bcc-4ac3-47c8-a98c-e074eabad3fc", "assumed": true, "ascendantuuid": "60ac113d-c253-482f-b057-c83399cabc22", "descendantuuid": "7aeacd93-2236-43ff-bbb3-a7ed6ae5becc", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a23ca02c-409f-4af1-a74f-ed2aefe5e5be', 'INSERT', '{"uuid": "a23ca02c-409f-4af1-a74f-ed2aefe5e5be", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "60ac113d-c253-482f-b057-c83399cabc22", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '211b3de6-94e6-48cf-8d85-6f376a99d50a', 'INSERT', '{"uuid": "211b3de6-94e6-48cf-8d85-6f376a99d50a", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "60ac113d-c253-482f-b057-c83399cabc22", "grantedbyroleuuid": "60ac113d-c253-482f-b057-c83399cabc22", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '36cbc041-bb3d-4058-9ccd-2d608992aeef', 'INSERT', '{"uuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "roletype": "ADMIN", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '205f3e0d-445b-4bfb-a16d-fbde4399c1d1', 'INSERT', '{"op": "UPDATE", "uuid": "205f3e0d-445b-4bfb-a16d-fbde4399c1d1", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'eec39901-3fca-41b7-b7c1-8762225e9538', 'INSERT', '{"uuid": "eec39901-3fca-41b7-b7c1-8762225e9538", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "205f3e0d-445b-4bfb-a16d-fbde4399c1d1", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '9c8263f4-807d-49e0-bee7-b6dfb9ec7426', 'INSERT', '{"uuid": "9c8263f4-807d-49e0-bee7-b6dfb9ec7426", "assumed": true, "ascendantuuid": "60ac113d-c253-482f-b057-c83399cabc22", "descendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', 'INSERT', '{"uuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "roletype": "REFERRER", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '45350f64-13b8-47e7-ba17-15ba11a61981', 'INSERT', '{"op": "SELECT", "uuid": "45350f64-13b8-47e7-ba17-15ba11a61981", "objectuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b1f18778-b7ba-4471-8734-98f1afd53c75', 'INSERT', '{"uuid": "b1f18778-b7ba-4471-8734-98f1afd53c75", "assumed": true, "ascendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "descendantuuid": "45350f64-13b8-47e7-ba17-15ba11a61981", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '31db3c70-a444-4187-8781-a606e9a770c6', 'INSERT', '{"uuid": "31db3c70-a444-4187-8781-a606e9a770c6", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "grantedbyroleuuid": null, "grantedbytriggerof": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'INSERT', '{"uuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6", "caption": "Test PS, Petra Schmidt", "version": 0, "phonenumbers": {}, "postaladdress": {"firm": "Petra Schmidt", "name": "Petra Schmidt"}, "emailaddresses": {"main": "ps@example.com"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'INSERT', '{"uuid": "c5bd22df-9452-49c1-b369-b98c10a90853", "serialid": 11, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '03cee890-5e1c-43dc-8489-8ad117941f68', 'INSERT', '{"uuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "roletype": "OWNER", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'c4658a5b-6d9a-4482-830a-754759afa33d', 'INSERT', '{"op": "DELETE", "uuid": "c4658a5b-6d9a-4482-830a-754759afa33d", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '6ed53ef1-06df-463a-aa4b-8a9fc57de7e9', 'INSERT', '{"uuid": "6ed53ef1-06df-463a-aa4b-8a9fc57de7e9", "assumed": true, "ascendantuuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "descendantuuid": "c4658a5b-6d9a-4482-830a-754759afa33d", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5259095f-7bc9-4536-ac04-4ed4b75fa1b0', 'INSERT', '{"uuid": "5259095f-7bc9-4536-ac04-4ed4b75fa1b0", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '7ee4aeba-8c20-411f-a28f-ffd20e38d2a5', 'INSERT', '{"uuid": "7ee4aeba-8c20-411f-a28f-ffd20e38d2a5", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "grantedbyroleuuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '79cc0827-439d-4357-8749-97d21830f648', 'INSERT', '{"uuid": "79cc0827-439d-4357-8749-97d21830f648", "roletype": "ADMIN", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '14951d5e-990f-4bba-a3fc-a1a9f8a3d714', 'INSERT', '{"op": "UPDATE", "uuid": "14951d5e-990f-4bba-a3fc-a1a9f8a3d714", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'baedfb45-dcb2-454e-9517-604ff47f631a', 'INSERT', '{"uuid": "baedfb45-dcb2-454e-9517-604ff47f631a", "assumed": true, "ascendantuuid": "79cc0827-439d-4357-8749-97d21830f648", "descendantuuid": "14951d5e-990f-4bba-a3fc-a1a9f8a3d714", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '2d7aaed7-2400-4ca2-ab30-04f3c5df3b31', 'INSERT', '{"uuid": "2d7aaed7-2400-4ca2-ab30-04f3c5df3b31", "assumed": true, "ascendantuuid": "03cee890-5e1c-43dc-8489-8ad117941f68", "descendantuuid": "79cc0827-439d-4357-8749-97d21830f648", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '1cf65eee-3ae3-4c77-9ce0-e156db37da82', 'INSERT', '{"uuid": "1cf65eee-3ae3-4c77-9ce0-e156db37da82", "roletype": "REFERRER", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '1c6c6416-1de8-4134-893f-c0b3382a4248', 'INSERT', '{"op": "SELECT", "uuid": "1c6c6416-1de8-4134-893f-c0b3382a4248", "objectuuid": "c5bd22df-9452-49c1-b369-b98c10a90853", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '95c255af-809a-4792-84e5-76abf2ebb471', 'INSERT', '{"uuid": "95c255af-809a-4792-84e5-76abf2ebb471", "assumed": true, "ascendantuuid": "1cf65eee-3ae3-4c77-9ce0-e156db37da82", "descendantuuid": "1c6c6416-1de8-4134-893f-c0b3382a4248", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '58fc6263-415b-4a12-9076-17f46bf8a2bc', 'INSERT', '{"uuid": "58fc6263-415b-4a12-9076-17f46bf8a2bc", "assumed": true, "ascendantuuid": "79cc0827-439d-4357-8749-97d21830f648", "descendantuuid": "1cf65eee-3ae3-4c77-9ce0-e156db37da82", "grantedbyroleuuid": null, "grantedbytriggerof": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'INSERT', '{"uuid": "c5bd22df-9452-49c1-b369-b98c10a90853", "caption": "Frau Frauke Fanninga", "version": 0, "phonenumbers": {}, "postaladdress": {"city": "Hitzacker", "name": "Frau Frauke Fanninga", "street": "Am Walde 1", "country": "DE", "zipcode": "29456"}, "emailaddresses": {"main": "ff@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'INSERT', '{"uuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5", "serialid": 12, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', 'INSERT', '{"uuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "roletype": "OWNER", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'ab3678ee-6848-4dd4-a25e-96566a038ef0', 'INSERT', '{"op": "DELETE", "uuid": "ab3678ee-6848-4dd4-a25e-96566a038ef0", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'f39f5cb9-bdfa-422c-bc23-2e564025722f', 'INSERT', '{"uuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "roletype": "OWNER", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ddd5f425-34d6-4c71-9f30-b0c57110ebb7', 'INSERT', '{"uuid": "ddd5f425-34d6-4c71-9f30-b0c57110ebb7", "assumed": true, "ascendantuuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "descendantuuid": "ab3678ee-6848-4dd4-a25e-96566a038ef0", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '390dc9be-0514-46f0-b234-d141fb475bf8', 'INSERT', '{"uuid": "390dc9be-0514-46f0-b234-d141fb475bf8", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '257e7ed8-eafc-4f61-8b0b-7f070761a061', 'INSERT', '{"uuid": "257e7ed8-eafc-4f61-8b0b-7f070761a061", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "grantedbyroleuuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', 'INSERT', '{"uuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "roletype": "ADMIN", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd', 'INSERT', '{"op": "UPDATE", "uuid": "b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '13e2d0d2-49e4-40a0-bc3c-09bbc2e46de2', 'INSERT', '{"uuid": "13e2d0d2-49e4-40a0-bc3c-09bbc2e46de2", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '36395a7d-0861-438e-874b-9b7214bccb33', 'INSERT', '{"uuid": "36395a7d-0861-438e-874b-9b7214bccb33", "assumed": true, "ascendantuuid": "d75237c1-598b-4ce4-8e7f-ce5870f464b1", "descendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', 'INSERT', '{"uuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "roletype": "REFERRER", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'dcfebc0f-3615-4acb-9117-b060f6946fba', 'INSERT', '{"op": "SELECT", "uuid": "dcfebc0f-3615-4acb-9117-b060f6946fba", "objectuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'd6ebef81-c57b-4fce-9e87-4d352b982c55', 'INSERT', '{"uuid": "d6ebef81-c57b-4fce-9e87-4d352b982c55", "assumed": true, "ascendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "descendantuuid": "dcfebc0f-3615-4acb-9117-b060f6946fba", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'eaeeb537-c4bc-4b49-9dd7-06fbe0e860d4', 'INSERT', '{"uuid": "eaeeb537-c4bc-4b49-9dd7-06fbe0e860d4", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "grantedbyroleuuid": null, "grantedbytriggerof": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'INSERT', '{"uuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5", "caption": "Frau Cecilia Camus", "version": 0, "phonenumbers": {}, "postaladdress": {"city": "Orléans", "name": "Frau Cecilia Camus", "street": "Rue d''Avignion 60", "country": "FR", "zipcode": "45000"}, "emailaddresses": {"main": "cc@example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'INSERT', '{"uuid": "a8380163-1e05-41c9-9614-a0af334d49ac", "serialid": 13, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'a14e50c5-8609-4448-8855-5e76818df2e0', 'INSERT', '{"uuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "roletype": "OWNER", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '83da6f4c-a933-44a4-a317-b8b02eef997c', 'INSERT', '{"op": "DELETE", "uuid": "83da6f4c-a933-44a4-a317-b8b02eef997c", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '14ec6b71-ce1d-4cc2-9274-fd65df3ac5ad', 'INSERT', '{"uuid": "14ec6b71-ce1d-4cc2-9274-fd65df3ac5ad", "assumed": true, "ascendantuuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "descendantuuid": "83da6f4c-a933-44a4-a317-b8b02eef997c", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '571169e3-7e1c-4599-aec3-e7ee1a998645', 'INSERT', '{"uuid": "571169e3-7e1c-4599-aec3-e7ee1a998645", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c128bc06-0249-4e4b-9b69-bbfa9ac16397', 'INSERT', '{"uuid": "c128bc06-0249-4e4b-9b69-bbfa9ac16397", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "grantedbyroleuuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '0818dc0a-1fd2-4a99-901e-0dab13697d85', 'INSERT', '{"uuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "roletype": "ADMIN", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '052cda7d-c78a-49cc-8582-b161691afee7', 'INSERT', '{"op": "UPDATE", "uuid": "052cda7d-c78a-49cc-8582-b161691afee7", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5afb59e1-10cb-4ead-886f-5571379da4cf', 'INSERT', '{"uuid": "5afb59e1-10cb-4ead-886f-5571379da4cf", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "052cda7d-c78a-49cc-8582-b161691afee7", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a0338d15-8069-43a9-9132-e9bdf481d02c', 'INSERT', '{"uuid": "a0338d15-8069-43a9-9132-e9bdf481d02c", "assumed": true, "ascendantuuid": "a14e50c5-8609-4448-8855-5e76818df2e0", "descendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '461bfac0-a91d-41d5-a96c-4987a67f59f4', 'INSERT', '{"uuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "roletype": "REFERRER", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '45375195-71ed-41e0-a357-f3c0db47e1e9', 'INSERT', '{"op": "SELECT", "uuid": "45375195-71ed-41e0-a357-f3c0db47e1e9", "objectuuid": "a8380163-1e05-41c9-9614-a0af334d49ac", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5cdb3102-a6f8-4261-8c92-789239f65f6f', 'INSERT', '{"uuid": "5cdb3102-a6f8-4261-8c92-789239f65f6f", "assumed": true, "ascendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "descendantuuid": "45375195-71ed-41e0-a357-f3c0db47e1e9", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '1bbcb179-19ff-4af2-a5e5-5126579b7188', 'INSERT', '{"uuid": "1bbcb179-19ff-4af2-a5e5-5126579b7188", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'INSERT', '{"uuid": "a8380163-1e05-41c9-9614-a0af334d49ac", "caption": "Wasserwerk Südholstein, Frau Christiane Milberg", "version": 0, "phonenumbers": {"phone_mobile": "+49 4103 12345-1"}, "postaladdress": {"city": "Hetlingen", "firm": "Frau Christiane Milberg", "name": "Frau Christiane Milberg", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}, "emailaddresses": {"main": "rechnung@ww-sholst.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'cc20b289-5f51-4be7-af41-151a0d8aed8c', 'INSERT', '{"op": "DELETE", "uuid": "cc20b289-5f51-4be7-af41-151a0d8aed8c", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a468149d-13fa-49c4-baf1-012b2900a83b', 'INSERT', '{"uuid": "a468149d-13fa-49c4-baf1-012b2900a83b", "assumed": true, "ascendantuuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "descendantuuid": "cc20b289-5f51-4be7-af41-151a0d8aed8c", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '86e908aa-5907-43a9-adca-153f79d2f834', 'INSERT', '{"uuid": "86e908aa-5907-43a9-adca-153f79d2f834", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '028ff021-1ac5-4950-abaa-d201686c93ce', 'INSERT', '{"uuid": "028ff021-1ac5-4950-abaa-d201686c93ce", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "grantedbyroleuuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'INSERT', '{"uuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "roletype": "ADMIN", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'ea3b4e3b-e967-4238-8be5-ef1348aac8d3', 'INSERT', '{"op": "UPDATE", "uuid": "ea3b4e3b-e967-4238-8be5-ef1348aac8d3", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '1b958ccc-351a-46d7-be5c-fd28fdeebabf', 'INSERT', '{"uuid": "1b958ccc-351a-46d7-be5c-fd28fdeebabf", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "ea3b4e3b-e967-4238-8be5-ef1348aac8d3", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '37cc0750-c7e9-470a-b368-257eedfad3d1', 'INSERT', '{"uuid": "37cc0750-c7e9-470a-b368-257eedfad3d1", "assumed": true, "ascendantuuid": "f39f5cb9-bdfa-422c-bc23-2e564025722f", "descendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '54cac581-c28a-4727-82ac-0f4af93da96d', 'INSERT', '{"uuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "roletype": "REFERRER", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '5ee1eaa5-dae4-45af-8c9b-af4b44c192c9', 'INSERT', '{"op": "SELECT", "uuid": "5ee1eaa5-dae4-45af-8c9b-af4b44c192c9", "objectuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '36f9ef93-284b-4bfc-9f05-0a42ef7e5056', 'INSERT', '{"uuid": "36f9ef93-284b-4bfc-9f05-0a42ef7e5056", "assumed": true, "ascendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "descendantuuid": "5ee1eaa5-dae4-45af-8c9b-af4b44c192c9", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5bd0723d-d09b-4c1f-9d67-456625bdfb87', 'INSERT', '{"uuid": "5bd0723d-d09b-4c1f-9d67-456625bdfb87", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'INSERT', '{"uuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2", "caption": "Das Perfekte Haus, Herr Richard Wiese", "version": 0, "phonenumbers": {"phone_mobile": "+49-172-12345"}, "postaladdress": {"city": "Essen", "firm": "Herr Richard Wiese", "name": "Herr Richard Wiese", "street": "Kennedyplatz 11", "country": "Germany", "zipcode": "45279"}, "emailaddresses": {"main": "admin@das-perfekte-haus.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '7321b71b-7c08-49bf-ae45-12f69644378f', 'INSERT', '{"uuid": "7321b71b-7c08-49bf-ae45-12f69644378f", "serialid": 15, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'a8653567-6c67-484d-9c69-399fd7ca9fe3', 'INSERT', '{"uuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "roletype": "OWNER", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5', 'INSERT', '{"op": "DELETE", "uuid": "ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c99f548b-22b3-47ae-80ee-f58c6bf79deb', 'INSERT', '{"uuid": "c99f548b-22b3-47ae-80ee-f58c6bf79deb", "assumed": true, "ascendantuuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "descendantuuid": "ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'f51d1026-260b-45be-b451-eaeee034ee31', 'INSERT', '{"uuid": "f51d1026-260b-45be-b451-eaeee034ee31", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '1e7632db-ed33-43d0-985f-4ba2485156e0', 'INSERT', '{"uuid": "1e7632db-ed33-43d0-985f-4ba2485156e0", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "grantedbyroleuuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '8d8536df-c84f-466b-bd46-17e8ff67b43c', 'INSERT', '{"uuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "roletype": "ADMIN", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'a8737274-244a-4f6c-8095-6e3e51ad10c1', 'INSERT', '{"op": "UPDATE", "uuid": "a8737274-244a-4f6c-8095-6e3e51ad10c1", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'd0300fbb-1493-4802-ba15-515febea8781', 'INSERT', '{"uuid": "d0300fbb-1493-4802-ba15-515febea8781", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "a8737274-244a-4f6c-8095-6e3e51ad10c1", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a52e47b1-9e35-485b-b5cd-d1ec661dfc1e', 'INSERT', '{"uuid": "a52e47b1-9e35-485b-b5cd-d1ec661dfc1e", "assumed": true, "ascendantuuid": "a8653567-6c67-484d-9c69-399fd7ca9fe3", "descendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', 'INSERT', '{"uuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "roletype": "REFERRER", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '5d73f76c-f609-4650-9575-18c54c52251c', 'INSERT', '{"op": "SELECT", "uuid": "5d73f76c-f609-4650-9575-18c54c52251c", "objectuuid": "7321b71b-7c08-49bf-ae45-12f69644378f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '5749ae9a-3e24-4711-adc2-198ea08521c9', 'INSERT', '{"uuid": "5749ae9a-3e24-4711-adc2-198ea08521c9", "assumed": true, "ascendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "descendantuuid": "5d73f76c-f609-4650-9575-18c54c52251c", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '56dc252f-6276-4704-a5c5-007c18b3e0d1', 'INSERT', '{"uuid": "56dc252f-6276-4704-a5c5-007c18b3e0d1", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "grantedbyroleuuid": null, "grantedbytriggerof": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '198cac03-a83b-4a24-8559-29ef72cd24b0', 'INSERT', '{"uuid": "198cac03-a83b-4a24-8559-29ef72cd24b0", "roletype": "REFERRER", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '7321b71b-7c08-49bf-ae45-12f69644378f', 'INSERT', '{"uuid": "7321b71b-7c08-49bf-ae45-12f69644378f", "caption": "Wasswerwerk Südholstein, Herr Karim Metzger", "version": 0, "phonenumbers": {"phone_office": "+49 4103 12345-2"}, "postaladdress": {"city": "Hetlingen", "firm": "Herr Karim Metzger", "name": "Herr Karim Metzger", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}, "emailaddresses": {"main": "karim.metzger@ww-sholst.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'INSERT', '{"uuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21", "serialid": 16, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '77af2213-1fcf-4ce8-926e-26c15a6e6f31', 'INSERT', '{"uuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "roletype": "OWNER", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '1460063c-a1fd-4a4b-a7f3-13aabd41c021', 'INSERT', '{"op": "DELETE", "uuid": "1460063c-a1fd-4a4b-a7f3-13aabd41c021", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '12811f0a-b186-496f-a8c6-bc9b112deff0', 'INSERT', '{"uuid": "12811f0a-b186-496f-a8c6-bc9b112deff0", "assumed": true, "ascendantuuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "descendantuuid": "1460063c-a1fd-4a4b-a7f3-13aabd41c021", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '56a9a347-0a25-4ce7-9d1e-93e83758a491', 'INSERT', '{"uuid": "56a9a347-0a25-4ce7-9d1e-93e83758a491", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '01cd8e35-aa73-468a-adae-13c52e0c3bea', 'INSERT', '{"uuid": "01cd8e35-aa73-468a-adae-13c52e0c3bea", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "grantedbyroleuuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', 'INSERT', '{"uuid": "76b1b55f-cd51-4a0e-8c4f-003c6411c2e8", "roletype": "ADMIN", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e', 'INSERT', '{"op": "UPDATE", "uuid": "3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '71dbf477-d021-4cad-a589-281b3c5806e7', 'INSERT', '{"uuid": "71dbf477-d021-4cad-a589-281b3c5806e7", "assumed": true, "ascendantuuid": "76b1b55f-cd51-4a0e-8c4f-003c6411c2e8", "descendantuuid": "3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '74502eda-635d-4f0d-80dd-37c82c4dc41f', 'INSERT', '{"uuid": "74502eda-635d-4f0d-80dd-37c82c4dc41f", "assumed": true, "ascendantuuid": "77af2213-1fcf-4ce8-926e-26c15a6e6f31", "descendantuuid": "76b1b55f-cd51-4a0e-8c4f-003c6411c2e8", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '85d8e49d-9148-4431-a020-053fd4376574', 'INSERT', '{"uuid": "85d8e49d-9148-4431-a020-053fd4376574", "roletype": "REFERRER", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '57cdb6cb-097c-4f08-8daf-ce99536adb9d', 'INSERT', '{"op": "SELECT", "uuid": "57cdb6cb-097c-4f08-8daf-ce99536adb9d", "objectuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'cd9b3c4c-6cbe-49ad-beec-036f89d154d1', 'INSERT', '{"uuid": "cd9b3c4c-6cbe-49ad-beec-036f89d154d1", "assumed": true, "ascendantuuid": "85d8e49d-9148-4431-a020-053fd4376574", "descendantuuid": "57cdb6cb-097c-4f08-8daf-ce99536adb9d", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '082f105c-0004-4d59-9315-5c70dfd7bfcc', 'INSERT', '{"uuid": "082f105c-0004-4d59-9315-5c70dfd7bfcc", "assumed": true, "ascendantuuid": "76b1b55f-cd51-4a0e-8c4f-003c6411c2e8", "descendantuuid": "85d8e49d-9148-4431-a020-053fd4376574", "grantedbyroleuuid": null, "grantedbytriggerof": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'INSERT', '{"uuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21", "caption": "Das Perfekte Haus, Herr Inhaber R. Wiese", "version": 0, "phonenumbers": {}, "postaladdress": {"co": "Client-ID 515217", "city": "Hannover", "firm": "Herr Inhaber R. Wiese", "name": "Herr Inhaber R. Wiese", "street": "Essen, Kastanienallee 81", "country": "Germany", "zipcode": "30127"}, "emailaddresses": {"main": "515217@kkemail.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'INSERT', '{"uuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04", "serialid": 17, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '801af8b9-6a98-4758-93ee-1cb6ea634bcb', 'INSERT', '{"uuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "roletype": "OWNER", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'b566ded5-a4ab-47a4-9062-460eed731140', 'INSERT', '{"op": "DELETE", "uuid": "b566ded5-a4ab-47a4-9062-460eed731140", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '9f62ac31-6306-4db2-a0bc-d9cb57fe6caf', 'INSERT', '{"uuid": "9f62ac31-6306-4db2-a0bc-d9cb57fe6caf", "assumed": true, "ascendantuuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "descendantuuid": "b566ded5-a4ab-47a4-9062-460eed731140", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '65af456f-b4b7-4db9-a48c-727355bf9920', 'INSERT', '{"uuid": "65af456f-b4b7-4db9-a48c-727355bf9920", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ba8bd472-c018-4950-a1b7-acb36731a17f', 'INSERT', '{"uuid": "ba8bd472-c018-4950-a1b7-acb36731a17f", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "grantedbyroleuuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'INSERT', '{"uuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "roletype": "ADMIN", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'f3818a69-8669-4892-a8cd-e278ce45c518', 'INSERT', '{"op": "UPDATE", "uuid": "f3818a69-8669-4892-a8cd-e278ce45c518", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '87795b29-e1fd-47f9-8c50-3a4b899a7ba5', 'INSERT', '{"uuid": "87795b29-e1fd-47f9-8c50-3a4b899a7ba5", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "f3818a69-8669-4892-a8cd-e278ce45c518", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '909503c4-71e1-42cf-a0b4-9b771242d0a3', 'INSERT', '{"uuid": "909503c4-71e1-42cf-a0b4-9b771242d0a3", "assumed": true, "ascendantuuid": "801af8b9-6a98-4758-93ee-1cb6ea634bcb", "descendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', 'INSERT', '{"uuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "roletype": "REFERRER", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc', 'INSERT', '{"op": "SELECT", "uuid": "cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc", "objectuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c8f5e497-188e-4e6e-a9ba-51f882f11a4b', 'INSERT', '{"uuid": "c8f5e497-188e-4e6e-a9ba-51f882f11a4b", "assumed": true, "ascendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "descendantuuid": "cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '89173a47-c421-4e35-b5ac-112ba5c8a6fa', 'INSERT', '{"uuid": "89173a47-c421-4e35-b5ac-112ba5c8a6fa", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "grantedbyroleuuid": null, "grantedbytriggerof": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'INSERT', '{"uuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04", "caption": "Ragnar Richter", "version": 0, "phonenumbers": {}, "postaladdress": {"name": "Ragnar Richter"}, "emailaddresses": {"main": "mail@ragnar-richter..example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '31eb8927-f7e7-45db-a350-bece46fd2300', 'INSERT', '{"uuid": "31eb8927-f7e7-45db-a350-bece46fd2300", "serialid": 18, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '4ca46ce7-a371-45f8-aafc-b7803b821eb6', 'INSERT', '{"uuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "roletype": "OWNER", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'fd496f22-22ba-4d27-a87f-c8bf1cb1fda1', 'INSERT', '{"op": "DELETE", "uuid": "fd496f22-22ba-4d27-a87f-c8bf1cb1fda1", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '1f5f39b4-27f8-487b-b1fd-8d040e08126f', 'INSERT', '{"uuid": "1f5f39b4-27f8-487b-b1fd-8d040e08126f", "assumed": true, "ascendantuuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "descendantuuid": "fd496f22-22ba-4d27-a87f-c8bf1cb1fda1", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '0e769a36-1b28-410c-a0cd-45d85bdf4fa0', 'INSERT', '{"uuid": "0e769a36-1b28-410c-a0cd-45d85bdf4fa0", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '7fed4c21-36e0-4784-b6f8-e0d5f7ffa687', 'INSERT', '{"uuid": "7fed4c21-36e0-4784-b6f8-e0d5f7ffa687", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "grantedbyroleuuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '3b95dee8-1138-434c-91e4-5e28d537fa0e', 'INSERT', '{"uuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "roletype": "ADMIN", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', 'a344984d-6c4e-458f-8efe-7bd7459a3d8a', 'INSERT', '{"op": "UPDATE", "uuid": "a344984d-6c4e-458f-8efe-7bd7459a3d8a", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a9d40a6d-fc7e-464c-9ce1-725256314472', 'INSERT', '{"uuid": "a9d40a6d-fc7e-464c-9ce1-725256314472", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "a344984d-6c4e-458f-8efe-7bd7459a3d8a", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '44b9c7c9-43b0-460c-80e4-614d74d16d23', 'INSERT', '{"uuid": "44b9c7c9-43b0-460c-80e4-614d74d16d23", "assumed": true, "ascendantuuid": "4ca46ce7-a371-45f8-aafc-b7803b821eb6", "descendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', 'INSERT', '{"uuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "roletype": "REFERRER", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '1a3671c5-dab1-437f-8487-a53c54cc6146', 'INSERT', '{"op": "SELECT", "uuid": "1a3671c5-dab1-437f-8487-a53c54cc6146", "objectuuid": "31eb8927-f7e7-45db-a350-bece46fd2300", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '6fb77b01-4fd0-4dd5-bfe5-c8c6dbdf5de9', 'INSERT', '{"uuid": "6fb77b01-4fd0-4dd5-bfe5-c8c6dbdf5de9", "assumed": true, "ascendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "descendantuuid": "1a3671c5-dab1-437f-8487-a53c54cc6146", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '6551b429-adab-4b03-892c-92c05102e86f', 'INSERT', '{"uuid": "6551b429-adab-4b03-892c-92c05102e86f", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "grantedbyroleuuid": null, "grantedbytriggerof": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '31eb8927-f7e7-45db-a350-bece46fd2300', 'INSERT', '{"uuid": "31eb8927-f7e7-45db-a350-bece46fd2300", "caption": "Eike Henning", "version": 0, "phonenumbers": {}, "postaladdress": {"name": "Eike Henning"}, "emailaddresses": {"main": "hostsharing@eike-henning..example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'INSERT', '{"uuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a", "serialid": 19, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '407bfcdf-1273-4569-8483-5cea353c546d', 'INSERT', '{"uuid": "407bfcdf-1273-4569-8483-5cea353c546d", "roletype": "OWNER", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '903acdfc-150f-40d1-9f89-819bfc1711da', 'INSERT', '{"op": "DELETE", "uuid": "903acdfc-150f-40d1-9f89-819bfc1711da", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'b2aef6d9-ab64-4662-8380-5c3082aba082', 'INSERT', '{"uuid": "b2aef6d9-ab64-4662-8380-5c3082aba082", "assumed": true, "ascendantuuid": "407bfcdf-1273-4569-8483-5cea353c546d", "descendantuuid": "903acdfc-150f-40d1-9f89-819bfc1711da", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '60ede24a-23b2-44bf-9c7e-4fea0ee6b238', 'INSERT', '{"uuid": "60ede24a-23b2-44bf-9c7e-4fea0ee6b238", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "407bfcdf-1273-4569-8483-5cea353c546d", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '932d8083-020f-4635-aaf1-4b98517a6243', 'INSERT', '{"uuid": "932d8083-020f-4635-aaf1-4b98517a6243", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "407bfcdf-1273-4569-8483-5cea353c546d", "grantedbyroleuuid": "407bfcdf-1273-4569-8483-5cea353c546d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '5c33226f-3c03-4147-93b7-d41d378cf0f5', 'INSERT', '{"uuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "roletype": "ADMIN", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '46461eaa-21f8-418f-9c6f-7fcf8e86513f', 'INSERT', '{"op": "UPDATE", "uuid": "46461eaa-21f8-418f-9c6f-7fcf8e86513f", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '98a923e1-3a6c-4bb4-befe-2deac7add62a', 'INSERT', '{"uuid": "98a923e1-3a6c-4bb4-befe-2deac7add62a", "assumed": true, "ascendantuuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "descendantuuid": "46461eaa-21f8-418f-9c6f-7fcf8e86513f", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'aef1d673-8578-4921-bbad-91cdb9a0d854', 'INSERT', '{"uuid": "aef1d673-8578-4921-bbad-91cdb9a0d854", "assumed": true, "ascendantuuid": "407bfcdf-1273-4569-8483-5cea353c546d", "descendantuuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '836684cb-c167-4dfd-b8fc-35424558fb5f', 'INSERT', '{"op": "SELECT", "uuid": "836684cb-c167-4dfd-b8fc-35424558fb5f", "objectuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '69aaa372-8815-429b-ac6a-71a01692e21d', 'INSERT', '{"uuid": "69aaa372-8815-429b-ac6a-71a01692e21d", "assumed": true, "ascendantuuid": "198cac03-a83b-4a24-8559-29ef72cd24b0", "descendantuuid": "836684cb-c167-4dfd-b8fc-35424558fb5f", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'ae5b436f-c8a7-414c-beac-1878adac55dc', 'INSERT', '{"uuid": "ae5b436f-c8a7-414c-beac-1878adac55dc", "assumed": true, "ascendantuuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "descendantuuid": "198cac03-a83b-4a24-8559-29ef72cd24b0", "grantedbyroleuuid": null, "grantedbytriggerof": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'INSERT', '{"uuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a", "caption": "Jan Henning", "version": 0, "phonenumbers": {"phone_office": "01577 12345678"}, "postaladdress": {"name": "Jan Henning"}, "emailaddresses": {"main": "mail@jan-henning.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.object', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'INSERT', '{"uuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5", "serialid": 20, "objecttable": "hs_office.contact"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'e1624410-b367-4523-bbf5-59f33582b16f', 'INSERT', '{"uuid": "e1624410-b367-4523-bbf5-59f33582b16f", "roletype": "OWNER", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '6ac59ed3-6976-463b-a7b9-60a6dd27b46c', 'INSERT', '{"op": "DELETE", "uuid": "6ac59ed3-6976-463b-a7b9-60a6dd27b46c", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'bcb72b08-8725-4345-8040-4c74ebd008c5', 'INSERT', '{"uuid": "bcb72b08-8725-4345-8040-4c74ebd008c5", "assumed": true, "ascendantuuid": "e1624410-b367-4523-bbf5-59f33582b16f", "descendantuuid": "6ac59ed3-6976-463b-a7b9-60a6dd27b46c", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '56e6366c-1aa5-41cb-8878-845bc57e20cf', 'INSERT', '{"uuid": "56e6366c-1aa5-41cb-8878-845bc57e20cf", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e1624410-b367-4523-bbf5-59f33582b16f", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '7bed90d6-2638-44de-a631-b754d2dee120', 'INSERT', '{"uuid": "7bed90d6-2638-44de-a631-b754d2dee120", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e1624410-b367-4523-bbf5-59f33582b16f", "grantedbyroleuuid": "e1624410-b367-4523-bbf5-59f33582b16f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', 'cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', 'INSERT', '{"uuid": "cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74", "roletype": "ADMIN", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '22c7cae4-b6f1-4398-beae-fe0d3616e062', 'INSERT', '{"op": "UPDATE", "uuid": "22c7cae4-b6f1-4398-beae-fe0d3616e062", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'a6cf60d7-7e11-4f3a-93e4-d28bc9c4163c', 'INSERT', '{"uuid": "a6cf60d7-7e11-4f3a-93e4-d28bc9c4163c", "assumed": true, "ascendantuuid": "cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74", "descendantuuid": "22c7cae4-b6f1-4398-beae-fe0d3616e062", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', 'c9684553-46bc-4d94-afa0-8d00d18edbc1', 'INSERT', '{"uuid": "c9684553-46bc-4d94-afa0-8d00d18edbc1", "assumed": true, "ascendantuuid": "e1624410-b367-4523-bbf5-59f33582b16f", "descendantuuid": "cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.role', '9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', 'INSERT', '{"uuid": "9eb2735b-2b09-4f71-81a3-3ce8fbedae9d", "roletype": "REFERRER", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.permission', '47b14246-134d-4543-b287-c52e6af5b78e', 'INSERT', '{"op": "SELECT", "uuid": "47b14246-134d-4543-b287-c52e6af5b78e", "objectuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '02893021-cbdb-4c2b-b07b-164c83abc7a4', 'INSERT', '{"uuid": "02893021-cbdb-4c2b-b07b-164c83abc7a4", "assumed": true, "ascendantuuid": "9eb2735b-2b09-4f71-81a3-3ce8fbedae9d", "descendantuuid": "47b14246-134d-4543-b287-c52e6af5b78e", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'rbac.grant', '30ba3349-e10d-4800-9de7-a15126903cac', 'INSERT', '{"uuid": "30ba3349-e10d-4800-9de7-a15126903cac", "assumed": true, "ascendantuuid": "cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74", "descendantuuid": "9eb2735b-2b09-4f71-81a3-3ce8fbedae9d", "grantedbyroleuuid": null, "grantedbytriggerof": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1186', 'hs_office.contact', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'INSERT', '{"uuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5", "caption": "Jan Henning", "version": 0, "phonenumbers": {"phone_office": "01577 12345678"}, "postaladdress": {"name": "Jan Henning"}, "emailaddresses": {"main": "lists@jan-henning.example.org"}}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'INSERT', '{"uuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "serialid": 21, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '3e114ba1-65d5-40a2-9539-3413cdc28798', 'INSERT', '{"uuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "roletype": "OWNER", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'd7179a9f-6981-4794-a295-ecfe89d3a10b', 'INSERT', '{"op": "DELETE", "uuid": "d7179a9f-6981-4794-a295-ecfe89d3a10b", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '0d3ce340-0183-4d6c-81e9-9567831382b0', 'INSERT', '{"uuid": "0d3ce340-0183-4d6c-81e9-9567831382b0", "assumed": true, "ascendantuuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "descendantuuid": "d7179a9f-6981-4794-a295-ecfe89d3a10b", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'a586e4eb-ab01-4385-92d4-cdee2767daad', 'INSERT', '{"uuid": "a586e4eb-ab01-4385-92d4-cdee2767daad", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '81f416e9-a562-4666-a066-99efa46acf51', 'INSERT', '{"uuid": "81f416e9-a562-4666-a066-99efa46acf51", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "grantedbyroleuuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '31909570-3577-492f-a7a8-c7345f213bc8', 'INSERT', '{"uuid": "31909570-3577-492f-a7a8-c7345f213bc8", "roletype": "ADMIN", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '7225b959-f7bb-4530-a7f8-2f64811dd98d', 'INSERT', '{"op": "UPDATE", "uuid": "7225b959-f7bb-4530-a7f8-2f64811dd98d", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '13bc4ab9-9b46-41c4-af5e-1cdda2b6bf6f', 'INSERT', '{"uuid": "13bc4ab9-9b46-41c4-af5e-1cdda2b6bf6f", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "7225b959-f7bb-4530-a7f8-2f64811dd98d", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '82771891-737c-4c22-8321-c2542f973dbe', 'INSERT', '{"uuid": "82771891-737c-4c22-8321-c2542f973dbe", "serialid": 61, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fdb2257e-f5ac-49aa-834c-50e3e1d9d136', 'INSERT', '{"uuid": "fdb2257e-f5ac-49aa-834c-50e3e1d9d136", "assumed": true, "ascendantuuid": "3e114ba1-65d5-40a2-9539-3413cdc28798", "descendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', 'INSERT', '{"uuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "roletype": "REFERRER", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'bfef72bc-1d20-442e-8e7c-1feac7e3f1fa', 'INSERT', '{"op": "SELECT", "uuid": "bfef72bc-1d20-442e-8e7c-1feac7e3f1fa", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'df2f2b1c-613d-45a0-89ce-2aec7901406f', 'INSERT', '{"uuid": "df2f2b1c-613d-45a0-89ce-2aec7901406f", "assumed": true, "ascendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "descendantuuid": "bfef72bc-1d20-442e-8e7c-1feac7e3f1fa", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ece87f24-a602-449d-b804-db220715053f', 'INSERT', '{"uuid": "ece87f24-a602-449d-b804-db220715053f", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "caf3808d-21ec-4391-a57b-ea59eafe2c75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '32d71457-5a04-4edf-87ed-850f2c354718', 'INSERT', '{"op": "INSERT", "uuid": "32d71457-5a04-4edf-87ed-850f2c354718", "objectuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '21dcde69-07e0-4545-a965-7d60d1dd4ba9', 'INSERT', '{"uuid": "21dcde69-07e0-4545-a965-7d60d1dd4ba9", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "32d71457-5a04-4edf-87ed-850f2c354718", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'INSERT', '{"uuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "title": "", "version": 0, "givenname": "Michael", "tradename": "Michael Mellis", "familyname": "Mellis", "persontype": "??", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'INSERT', '{"uuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "serialid": 22, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '062ce171-efc3-4f07-8aa1-3486948ade81', 'INSERT', '{"uuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "roletype": "OWNER", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'a7c2d342-0472-49c6-933d-6674ad52588e', 'INSERT', '{"op": "DELETE", "uuid": "a7c2d342-0472-49c6-933d-6674ad52588e", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ca8148a9-1a4e-41e4-936c-85f7a3325b01', 'INSERT', '{"uuid": "ca8148a9-1a4e-41e4-936c-85f7a3325b01", "assumed": true, "ascendantuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "descendantuuid": "a7c2d342-0472-49c6-933d-6674ad52588e", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '42f68d24-a5eb-415e-b022-acfce7a13c4f', 'INSERT', '{"uuid": "42f68d24-a5eb-415e-b022-acfce7a13c4f", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'bee70d80-e2d5-4471-91b7-41ad1e4cca9b', 'INSERT', '{"uuid": "bee70d80-e2d5-4471-91b7-41ad1e4cca9b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "grantedbyroleuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '611c71bc-4ce5-4a20-b819-95d274f73227', 'INSERT', '{"uuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "roletype": "ADMIN", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4', 'INSERT', '{"op": "UPDATE", "uuid": "546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '60b38fb8-d01c-4d31-8aad-5a1867f31dfd', 'INSERT', '{"uuid": "60b38fb8-d01c-4d31-8aad-5a1867f31dfd", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5d685a10-b6de-4f4c-a00f-0bcc38102bdd', 'INSERT', '{"uuid": "5d685a10-b6de-4f4c-a00f-0bcc38102bdd", "assumed": true, "ascendantuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "descendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'febfbe7e-4bf7-4385-834f-017201aa8756', 'INSERT', '{"uuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "roletype": "REFERRER", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a', 'INSERT', '{"op": "SELECT", "uuid": "4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '60479e68-4c55-425b-96c1-f039877df327', 'INSERT', '{"uuid": "60479e68-4c55-425b-96c1-f039877df327", "assumed": true, "ascendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "descendantuuid": "4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3a1a4cef-ee26-48a7-b8d7-a8fa9063643e', 'INSERT', '{"uuid": "3a1a4cef-ee26-48a7-b8d7-a8fa9063643e", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "89f83a40-5d7b-4f33-ba0b-29207f263f15"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc', 'INSERT', '{"op": "INSERT", "uuid": "00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc", "objectuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '39c200e1-d028-4e84-8c1d-c585c5cc4d22', 'INSERT', '{"uuid": "39c200e1-d028-4e84-8c1d-c585c5cc4d22", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'INSERT', '{"uuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "title": "", "version": 0, "givenname": "Ragnar", "tradename": "Ragnar IT-Beratung", "familyname": "Richter", "persontype": "??", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'INSERT', '{"uuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "serialid": 23, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', 'INSERT', '{"uuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "roletype": "OWNER", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'bcd721f1-4e79-41a6-9019-b9c3ed63a4a5', 'INSERT', '{"op": "DELETE", "uuid": "bcd721f1-4e79-41a6-9019-b9c3ed63a4a5", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '94a82552-df7c-44e0-a9e3-e3adf60fe8b8', 'INSERT', '{"uuid": "94a82552-df7c-44e0-a9e3-e3adf60fe8b8", "assumed": true, "ascendantuuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "descendantuuid": "bcd721f1-4e79-41a6-9019-b9c3ed63a4a5", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '257a3ff4-cb1c-4efc-8069-032253c0fb87', 'INSERT', '{"uuid": "257a3ff4-cb1c-4efc-8069-032253c0fb87", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '70ad67a1-20b2-41d9-a067-df59ed89b9d7', 'INSERT', '{"uuid": "70ad67a1-20b2-41d9-a067-df59ed89b9d7", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "grantedbyroleuuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '29338455-e154-4447-9c36-9eb49cd398bd', 'INSERT', '{"uuid": "29338455-e154-4447-9c36-9eb49cd398bd", "roletype": "ADMIN", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '39eb942e-dcef-4f04-8b50-ff269434e769', 'INSERT', '{"op": "UPDATE", "uuid": "39eb942e-dcef-4f04-8b50-ff269434e769", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '6a7627c6-d178-4f67-ab39-cee1a171baba', 'INSERT', '{"uuid": "6a7627c6-d178-4f67-ab39-cee1a171baba", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "39eb942e-dcef-4f04-8b50-ff269434e769", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3e543942-d848-41a4-af4d-0d727cf116cb', 'INSERT', '{"uuid": "3e543942-d848-41a4-af4d-0d727cf116cb", "assumed": true, "ascendantuuid": "76a7ba85-7f36-4a2a-90b4-41cd89bbdf91", "descendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '1ab576b5-1092-44bc-81f2-5f21f24810ee', 'INSERT', '{"uuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "roletype": "REFERRER", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '5d5d557b-2893-4a40-9dc1-c160b7281437', 'INSERT', '{"op": "SELECT", "uuid": "5d5d557b-2893-4a40-9dc1-c160b7281437", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c4e08c68-c3c2-414a-a4fb-640a2194e255', 'INSERT', '{"uuid": "c4e08c68-c3c2-414a-a4fb-640a2194e255", "assumed": true, "ascendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "descendantuuid": "5d5d557b-2893-4a40-9dc1-c160b7281437", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'f066eee6-15a8-4c08-ad6d-b0fb61b4811f', 'INSERT', '{"uuid": "f066eee6-15a8-4c08-ad6d-b0fb61b4811f", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "ed1ea73e-5097-42c1-ba31-fe11480f3089"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'd6fae1c1-a7a5-4daa-8ae2-389172131648', 'INSERT', '{"op": "INSERT", "uuid": "d6fae1c1-a7a5-4daa-8ae2-389172131648", "objectuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'a4ff006e-1e33-416d-9a65-58b7a8b7a392', 'INSERT', '{"uuid": "a4ff006e-1e33-416d-9a65-58b7a8b7a392", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "d6fae1c1-a7a5-4daa-8ae2-389172131648", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'INSERT', '{"uuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "title": "", "version": 0, "givenname": "Hostmaster", "tradename": "Hostsharing e.G.", "familyname": "Hostsharing", "persontype": "LP", "salutation": "Firma"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'INSERT', '{"uuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "serialid": 24, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'ef043b77-f00c-42a5-b628-fa257cbe98fb', 'INSERT', '{"uuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "roletype": "OWNER", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '94d61a3c-08b9-46bb-bb3a-c4dab0521df5', 'INSERT', '{"op": "DELETE", "uuid": "94d61a3c-08b9-46bb-bb3a-c4dab0521df5", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '466c5736-f2de-493b-9347-e9f73306b58e', 'INSERT', '{"uuid": "466c5736-f2de-493b-9347-e9f73306b58e", "assumed": true, "ascendantuuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "descendantuuid": "94d61a3c-08b9-46bb-bb3a-c4dab0521df5", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'b9a67987-327a-49b9-aba7-ec0a1294a95f', 'INSERT', '{"uuid": "b9a67987-327a-49b9-aba7-ec0a1294a95f", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '55eb6aad-b9c3-449d-8dae-3375a0427362', 'INSERT', '{"uuid": "55eb6aad-b9c3-449d-8dae-3375a0427362", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "grantedbyroleuuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '568bfaa3-d857-432d-accf-ff32377587c9', 'INSERT', '{"uuid": "568bfaa3-d857-432d-accf-ff32377587c9", "roletype": "ADMIN", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'a2948c08-e5c9-4be7-a8fd-ec429e86bdf3', 'INSERT', '{"op": "UPDATE", "uuid": "a2948c08-e5c9-4be7-a8fd-ec429e86bdf3", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '985f5388-53b2-48e9-834c-39cfde7cf3cb', 'INSERT', '{"uuid": "985f5388-53b2-48e9-834c-39cfde7cf3cb", "assumed": true, "ascendantuuid": "568bfaa3-d857-432d-accf-ff32377587c9", "descendantuuid": "a2948c08-e5c9-4be7-a8fd-ec429e86bdf3", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c0d12974-d009-4ba9-bb03-305f2411c422', 'INSERT', '{"uuid": "c0d12974-d009-4ba9-bb03-305f2411c422", "assumed": true, "ascendantuuid": "ef043b77-f00c-42a5-b628-fa257cbe98fb", "descendantuuid": "568bfaa3-d857-432d-accf-ff32377587c9", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '6cc9abee-77f2-4e9b-ac65-f9cc57f00825', 'INSERT', '{"uuid": "6cc9abee-77f2-4e9b-ac65-f9cc57f00825", "roletype": "REFERRER", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f89d32df-b3fd-40a3-bbf1-cf8220dfb43b', 'INSERT', '{"op": "SELECT", "uuid": "f89d32df-b3fd-40a3-bbf1-cf8220dfb43b", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '41c34cc7-2a50-4f52-830e-f09900675fc9', 'INSERT', '{"uuid": "41c34cc7-2a50-4f52-830e-f09900675fc9", "assumed": true, "ascendantuuid": "6cc9abee-77f2-4e9b-ac65-f9cc57f00825", "descendantuuid": "f89d32df-b3fd-40a3-bbf1-cf8220dfb43b", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'd0c7f001-a8e5-419c-93c7-e79036be6073', 'INSERT', '{"uuid": "d0c7f001-a8e5-419c-93c7-e79036be6073", "assumed": true, "ascendantuuid": "568bfaa3-d857-432d-accf-ff32377587c9", "descendantuuid": "6cc9abee-77f2-4e9b-ac65-f9cc57f00825", "grantedbyroleuuid": null, "grantedbytriggerof": "ea4932ab-63b1-4e5a-9965-6f8604a14923"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'c594394e-fad6-42c5-90f7-a3dda0b8e028', 'INSERT', '{"op": "INSERT", "uuid": "c594394e-fad6-42c5-90f7-a3dda0b8e028", "objectuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', 'INSERT', '{"uuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "roletype": "REFERRER", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'a57890c3-e565-451b-a35a-36d5dbe706ae', 'INSERT', '{"uuid": "a57890c3-e565-451b-a35a-36d5dbe706ae", "assumed": true, "ascendantuuid": "568bfaa3-d857-432d-accf-ff32377587c9", "descendantuuid": "c594394e-fad6-42c5-90f7-a3dda0b8e028", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'INSERT', '{"uuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "title": "", "version": 0, "givenname": "", "tradename": "JM e.K.", "familyname": "", "persontype": "LP", "salutation": ""}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'INSERT', '{"uuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "serialid": 25, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', 'INSERT', '{"uuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "roletype": "OWNER", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f3455019-460b-4a40-ab4a-246190901887', 'INSERT', '{"op": "DELETE", "uuid": "f3455019-460b-4a40-ab4a-246190901887", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3126c921-41db-4640-87aa-3f81a65dd37c', 'INSERT', '{"uuid": "3126c921-41db-4640-87aa-3f81a65dd37c", "assumed": true, "ascendantuuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "descendantuuid": "f3455019-460b-4a40-ab4a-246190901887", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fa8fc728-f8de-4e8c-8367-088f3c97f7cf', 'INSERT', '{"uuid": "fa8fc728-f8de-4e8c-8367-088f3c97f7cf", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '919dd417-0e45-464e-a5df-3c5850d9ccd6', 'INSERT', '{"uuid": "919dd417-0e45-464e-a5df-3c5850d9ccd6", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "grantedbyroleuuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', 'INSERT', '{"uuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "roletype": "ADMIN", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f1e50651-1a66-469b-8a7e-5063a7d1852d', 'INSERT', '{"op": "UPDATE", "uuid": "f1e50651-1a66-469b-8a7e-5063a7d1852d", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '1e03bb3b-28c0-42ad-a89e-d6f7e87e45ae', 'INSERT', '{"uuid": "1e03bb3b-28c0-42ad-a89e-d6f7e87e45ae", "assumed": true, "ascendantuuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "descendantuuid": "f1e50651-1a66-469b-8a7e-5063a7d1852d", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ca8842ea-dde4-4119-a939-0004ad084c01', 'INSERT', '{"uuid": "ca8842ea-dde4-4119-a939-0004ad084c01", "assumed": true, "ascendantuuid": "e6214fbe-8e7a-4b20-88f8-e1c64e3caccb", "descendantuuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'c2d87277-0280-41c8-b0c1-3c431e7fc33d', 'INSERT', '{"uuid": "c2d87277-0280-41c8-b0c1-3c431e7fc33d", "roletype": "REFERRER", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f8c7ecd7-7ec9-46fa-bd96-aac315e96771', 'INSERT', '{"op": "SELECT", "uuid": "f8c7ecd7-7ec9-46fa-bd96-aac315e96771", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5b14f5a1-3373-4cde-b99a-924ab429cb31', 'INSERT', '{"uuid": "5b14f5a1-3373-4cde-b99a-924ab429cb31", "assumed": true, "ascendantuuid": "c2d87277-0280-41c8-b0c1-3c431e7fc33d", "descendantuuid": "f8c7ecd7-7ec9-46fa-bd96-aac315e96771", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ea60a75c-6b2c-40a6-8d4e-3c7591016bce', 'INSERT', '{"uuid": "ea60a75c-6b2c-40a6-8d4e-3c7591016bce", "assumed": true, "ascendantuuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "descendantuuid": "c2d87277-0280-41c8-b0c1-3c431e7fc33d", "grantedbyroleuuid": null, "grantedbytriggerof": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '97c9bdab-30ba-4ea5-acc2-6777123f2ce5', 'INSERT', '{"op": "INSERT", "uuid": "97c9bdab-30ba-4ea5-acc2-6777123f2ce5", "objectuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '41180bcc-8501-4162-a7a3-c14531e54571', 'INSERT', '{"uuid": "41180bcc-8501-4162-a7a3-c14531e54571", "assumed": true, "ascendantuuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "descendantuuid": "97c9bdab-30ba-4ea5-acc2-6777123f2ce5", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'INSERT', '{"uuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "title": "Dr.", "version": 0, "givenname": "Jenny", "tradename": "JM GmbH", "familyname": "Meyer-Billing", "persontype": "LP", "salutation": "Frau"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'INSERT', '{"uuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "serialid": 26, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '450185ef-185f-46b5-8842-8e4009576183', 'INSERT', '{"uuid": "450185ef-185f-46b5-8842-8e4009576183", "roletype": "OWNER", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '64aa40b9-9dc6-4254-994a-04a2198a606c', 'INSERT', '{"op": "DELETE", "uuid": "64aa40b9-9dc6-4254-994a-04a2198a606c", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '486cf470-646d-4332-a372-db68d01b0618', 'INSERT', '{"uuid": "486cf470-646d-4332-a372-db68d01b0618", "assumed": true, "ascendantuuid": "450185ef-185f-46b5-8842-8e4009576183", "descendantuuid": "64aa40b9-9dc6-4254-994a-04a2198a606c", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'bff397be-824f-4fba-98d5-7e3a7877683e', 'INSERT', '{"uuid": "bff397be-824f-4fba-98d5-7e3a7877683e", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "450185ef-185f-46b5-8842-8e4009576183", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '80edf720-0449-4434-99e5-31157a045498', 'INSERT', '{"uuid": "80edf720-0449-4434-99e5-31157a045498", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "450185ef-185f-46b5-8842-8e4009576183", "grantedbyroleuuid": "450185ef-185f-46b5-8842-8e4009576183", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'b5c771dd-5b62-4631-85d8-5702e34266c3', 'INSERT', '{"uuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "roletype": "ADMIN", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '27b4fff1-44c3-46a5-8fae-c72a49d4bcb3', 'INSERT', '{"op": "UPDATE", "uuid": "27b4fff1-44c3-46a5-8fae-c72a49d4bcb3", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c2f6b1e4-7d45-4d33-a39b-bca9fb786e4e', 'INSERT', '{"uuid": "c2f6b1e4-7d45-4d33-a39b-bca9fb786e4e", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "27b4fff1-44c3-46a5-8fae-c72a49d4bcb3", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '77fcebf2-4191-43d9-a452-49594d007d17', 'INSERT', '{"uuid": "77fcebf2-4191-43d9-a452-49594d007d17", "assumed": true, "ascendantuuid": "450185ef-185f-46b5-8842-8e4009576183", "descendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '73ecfc31-bde5-46cd-9a59-37e65c7db8fb', 'INSERT', '{"op": "SELECT", "uuid": "73ecfc31-bde5-46cd-9a59-37e65c7db8fb", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '70f42766-12aa-4547-9927-522bfc6048c3', 'INSERT', '{"uuid": "70f42766-12aa-4547-9927-522bfc6048c3", "assumed": true, "ascendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "descendantuuid": "73ecfc31-bde5-46cd-9a59-37e65c7db8fb", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fdb18a17-cfd0-4655-ab7d-0d7cce1d15fe', 'INSERT', '{"uuid": "fdb18a17-cfd0-4655-ab7d-0d7cce1d15fe", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "grantedbyroleuuid": null, "grantedbytriggerof": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '24ea1e85-129a-4d56-aa69-1e9ac58d0104', 'INSERT', '{"op": "INSERT", "uuid": "24ea1e85-129a-4d56-aa69-1e9ac58d0104", "objectuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '9399aa3e-6cf8-4231-af16-702db2c009fb', 'INSERT', '{"uuid": "9399aa3e-6cf8-4231-af16-702db2c009fb", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "24ea1e85-129a-4d56-aa69-1e9ac58d0104", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'INSERT', '{"uuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "title": "", "version": 0, "givenname": "Andrew", "tradename": "JM GmbH", "familyname": "Meyer-Operation", "persontype": "LP", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'INSERT', '{"uuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "serialid": 27, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'fc14ee74-f82a-4d8a-8db6-5b9627563922', 'INSERT', '{"uuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "roletype": "OWNER", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'd009618e-5194-4703-8008-54da927c3bd2', 'INSERT', '{"op": "DELETE", "uuid": "d009618e-5194-4703-8008-54da927c3bd2", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '58de68e5-e08d-4d8f-967d-c1c227316354', 'INSERT', '{"uuid": "58de68e5-e08d-4d8f-967d-c1c227316354", "assumed": true, "ascendantuuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "descendantuuid": "d009618e-5194-4703-8008-54da927c3bd2", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '0d059766-c0e4-435d-a251-1b827134bd52', 'INSERT', '{"uuid": "0d059766-c0e4-435d-a251-1b827134bd52", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fc647b09-d006-4c52-b2d7-b64467c8bae8', 'INSERT', '{"uuid": "fc647b09-d006-4c52-b2d7-b64467c8bae8", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "grantedbyroleuuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'INSERT', '{"uuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "roletype": "ADMIN", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'e8400d5e-ab6d-41d3-86a9-a6df2113adbc', 'INSERT', '{"op": "UPDATE", "uuid": "e8400d5e-ab6d-41d3-86a9-a6df2113adbc", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'eec720f5-90b0-43bb-8f79-1062af93abc8', 'INSERT', '{"uuid": "eec720f5-90b0-43bb-8f79-1062af93abc8", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "e8400d5e-ab6d-41d3-86a9-a6df2113adbc", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c98e26d6-687b-4505-b1a9-eb4db50bcd13', 'INSERT', '{"uuid": "c98e26d6-687b-4505-b1a9-eb4db50bcd13", "assumed": true, "ascendantuuid": "fc14ee74-f82a-4d8a-8db6-5b9627563922", "descendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '8dca2daf-408f-4e45-a777-a3f61b543450', 'INSERT', '{"uuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "roletype": "REFERRER", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f7e8a61e-ef07-4720-ab46-63ce8570ffdf', 'INSERT', '{"op": "SELECT", "uuid": "f7e8a61e-ef07-4720-ab46-63ce8570ffdf", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3b77756c-20bd-462a-a7d7-998655ef2f92', 'INSERT', '{"uuid": "3b77756c-20bd-462a-a7d7-998655ef2f92", "assumed": true, "ascendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "descendantuuid": "f7e8a61e-ef07-4720-ab46-63ce8570ffdf", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'e7ffb164-484c-40e7-8141-886a24f8934b', 'INSERT', '{"uuid": "e7ffb164-484c-40e7-8141-886a24f8934b", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "f50adac4-8248-4179-bfaf-26f03d96d13b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'f28aa0d4-1a57-4301-870f-fb7c78869cd6', 'INSERT', '{"op": "INSERT", "uuid": "f28aa0d4-1a57-4301-870f-fb7c78869cd6", "objectuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3c4bb132-9dff-4763-8803-899ad709bf11', 'INSERT', '{"uuid": "3c4bb132-9dff-4763-8803-899ad709bf11", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "f28aa0d4-1a57-4301-870f-fb7c78869cd6", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'INSERT', '{"uuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "title": "", "version": 0, "givenname": "Philip", "tradename": "JM GmbH", "familyname": "Meyer-Contract", "persontype": "LP", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'INSERT', '{"uuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "serialid": 28, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'b31f0400-18ec-4b70-9578-0f887d35021c', 'INSERT', '{"uuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "roletype": "OWNER", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '61147c69-ed43-4813-978e-5aa7576dd2bc', 'INSERT', '{"op": "DELETE", "uuid": "61147c69-ed43-4813-978e-5aa7576dd2bc", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'e36605dd-d609-4d4f-b448-841341739401', 'INSERT', '{"uuid": "e36605dd-d609-4d4f-b448-841341739401", "assumed": true, "ascendantuuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "descendantuuid": "61147c69-ed43-4813-978e-5aa7576dd2bc", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '0305f95d-b8ed-40ac-99ce-68b9c67974ee', 'INSERT', '{"uuid": "0305f95d-b8ed-40ac-99ce-68b9c67974ee", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5b2f709c-9a55-4efc-8056-1ad83ab94a88', 'INSERT', '{"uuid": "5b2f709c-9a55-4efc-8056-1ad83ab94a88", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "grantedbyroleuuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', 'INSERT', '{"uuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "roletype": "ADMIN", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '2215d918-b008-4253-a36e-b23e33191470', 'INSERT', '{"op": "UPDATE", "uuid": "2215d918-b008-4253-a36e-b23e33191470", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5d5b28a9-ea0c-4d53-bc57-d9f8184052a7', 'INSERT', '{"uuid": "5d5b28a9-ea0c-4d53-bc57-d9f8184052a7", "assumed": true, "ascendantuuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "descendantuuid": "2215d918-b008-4253-a36e-b23e33191470", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '886f8887-bde5-41ff-983f-3fb04fbacbcd', 'INSERT', '{"uuid": "886f8887-bde5-41ff-983f-3fb04fbacbcd", "assumed": true, "ascendantuuid": "b31f0400-18ec-4b70-9578-0f887d35021c", "descendantuuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '81b01454-08e4-48ab-9879-4b7ea82a0531', 'INSERT', '{"uuid": "81b01454-08e4-48ab-9879-4b7ea82a0531", "roletype": "REFERRER", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '5e496a56-e275-4ba7-8c07-c171a6b44e72', 'INSERT', '{"op": "SELECT", "uuid": "5e496a56-e275-4ba7-8c07-c171a6b44e72", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '7cc03961-b7e0-4913-b712-f83cb894cceb', 'INSERT', '{"uuid": "7cc03961-b7e0-4913-b712-f83cb894cceb", "assumed": true, "ascendantuuid": "81b01454-08e4-48ab-9879-4b7ea82a0531", "descendantuuid": "5e496a56-e275-4ba7-8c07-c171a6b44e72", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fe3b7213-46a1-47ae-9d41-9db63392278f', 'INSERT', '{"uuid": "fe3b7213-46a1-47ae-9d41-9db63392278f", "assumed": true, "ascendantuuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "descendantuuid": "81b01454-08e4-48ab-9879-4b7ea82a0531", "grantedbyroleuuid": null, "grantedbytriggerof": "f4e3fd05-43f8-49cb-a167-91a91640a117"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '797d0a10-4bec-4f32-b746-671b6a46bbef', 'INSERT', '{"op": "INSERT", "uuid": "797d0a10-4bec-4f32-b746-671b6a46bbef", "objectuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '6e3ba24e-6f43-438a-8f31-0db39a755cf2', 'INSERT', '{"uuid": "6e3ba24e-6f43-438a-8f31-0db39a755cf2", "assumed": true, "ascendantuuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "descendantuuid": "797d0a10-4bec-4f32-b746-671b6a46bbef", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'INSERT', '{"uuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "title": "", "version": 0, "givenname": "Tammy", "tradename": "JM GmbH", "familyname": "Meyer-VIP", "persontype": "LP", "salutation": "Frau"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'INSERT', '{"uuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "serialid": 29, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '6954b103-16e1-44f0-9aec-cf5cad98ff6c', 'INSERT', '{"uuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "roletype": "OWNER", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '0ff11824-6467-46b8-8f52-45dd6fa89041', 'INSERT', '{"op": "DELETE", "uuid": "0ff11824-6467-46b8-8f52-45dd6fa89041", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'f22d38d3-b1a1-4fef-a62f-cbf643453b00', 'INSERT', '{"uuid": "f22d38d3-b1a1-4fef-a62f-cbf643453b00", "assumed": true, "ascendantuuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "descendantuuid": "0ff11824-6467-46b8-8f52-45dd6fa89041", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'b0ed567a-9493-4589-b1f5-cd17e66242c3', 'INSERT', '{"uuid": "b0ed567a-9493-4589-b1f5-cd17e66242c3", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '2e8d580e-5622-42b4-91e2-8b4799a7a740', 'INSERT', '{"uuid": "2e8d580e-5622-42b4-91e2-8b4799a7a740", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "grantedbyroleuuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'INSERT', '{"uuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "roletype": "ADMIN", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '32698556-c076-47c6-8d84-d311090cabc0', 'INSERT', '{"op": "UPDATE", "uuid": "32698556-c076-47c6-8d84-d311090cabc0", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '13d21634-24ab-435c-8b65-ef24a3a9f2e7', 'INSERT', '{"uuid": "13d21634-24ab-435c-8b65-ef24a3a9f2e7", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "32698556-c076-47c6-8d84-d311090cabc0", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '04b59327-7fd1-4fb3-b601-658bf9292073', 'INSERT', '{"uuid": "04b59327-7fd1-4fb3-b601-658bf9292073", "assumed": true, "ascendantuuid": "6954b103-16e1-44f0-9aec-cf5cad98ff6c", "descendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'df81248e-911b-4793-9913-0538a12ea820', 'INSERT', '{"uuid": "df81248e-911b-4793-9913-0538a12ea820", "roletype": "REFERRER", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '481c04fb-38e2-49a5-a9a8-065ac59cd53c', 'INSERT', '{"op": "SELECT", "uuid": "481c04fb-38e2-49a5-a9a8-065ac59cd53c", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '437b7d87-f236-498e-83ee-3d367f75a843', 'INSERT', '{"uuid": "437b7d87-f236-498e-83ee-3d367f75a843", "assumed": true, "ascendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "descendantuuid": "481c04fb-38e2-49a5-a9a8-065ac59cd53c", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '2f5c78cb-615b-45ff-82b3-2bfd574ef6d9', 'INSERT', '{"uuid": "2f5c78cb-615b-45ff-82b3-2bfd574ef6d9", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "grantedbyroleuuid": null, "grantedbytriggerof": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f', 'INSERT', '{"op": "INSERT", "uuid": "fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f", "objectuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '330b339c-6d05-48d8-b8ef-068b4d85ee66', 'INSERT', '{"uuid": "330b339c-6d05-48d8-b8ef-068b4d85ee66", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'INSERT', '{"uuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "title": "", "version": 0, "givenname": "Petra", "tradename": "Test PS", "familyname": "Schmidt", "persontype": "??", "salutation": ""}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '7e11b785-e756-49de-a3b3-2f001ea79993', 'INSERT', '{"uuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "serialid": 30, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'INSERT', '{"uuid": "ef085ca0-2cc6-4497-b739-1668e6acb687", "serialid": 41, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', 'INSERT', '{"uuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "roletype": "OWNER", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '15a81a95-9ddc-497b-8835-6a2b5b74fd89', 'INSERT', '{"op": "DELETE", "uuid": "15a81a95-9ddc-497b-8835-6a2b5b74fd89", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '6d9f58ea-308a-4d00-9b6e-469dbb40f6fe', 'INSERT', '{"uuid": "6d9f58ea-308a-4d00-9b6e-469dbb40f6fe", "assumed": true, "ascendantuuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "descendantuuid": "15a81a95-9ddc-497b-8835-6a2b5b74fd89", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '94892f5c-8a9e-4d17-a611-0a27ec035a7d', 'INSERT', '{"uuid": "94892f5c-8a9e-4d17-a611-0a27ec035a7d", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'd87d9909-a42e-4d27-ba62-024d3b050c49', 'INSERT', '{"uuid": "d87d9909-a42e-4d27-ba62-024d3b050c49", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "grantedbyroleuuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '408c77c7-1c50-46c2-a0e3-27046473e0a5', 'INSERT', '{"uuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "roletype": "ADMIN", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'e2b730f8-2419-4709-ac41-2965913182e6', 'INSERT', '{"op": "UPDATE", "uuid": "e2b730f8-2419-4709-ac41-2965913182e6", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '45915ead-d4ba-4099-925d-12ef6bba6075', 'INSERT', '{"uuid": "45915ead-d4ba-4099-925d-12ef6bba6075", "assumed": true, "ascendantuuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "descendantuuid": "e2b730f8-2419-4709-ac41-2965913182e6", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ce3524e6-45e6-48bc-8333-216d410a43fe', 'INSERT', '{"uuid": "ce3524e6-45e6-48bc-8333-216d410a43fe", "assumed": true, "ascendantuuid": "32e802ba-ffc4-4b80-bcc6-6e913e0e1d42", "descendantuuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'c25516ad-8358-49e5-ae55-ccecc2fc9b3b', 'INSERT', '{"uuid": "c25516ad-8358-49e5-ae55-ccecc2fc9b3b", "roletype": "REFERRER", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '62bd04a2-1f7d-4b0f-b060-93a972f0b7d8', 'INSERT', '{"op": "SELECT", "uuid": "62bd04a2-1f7d-4b0f-b060-93a972f0b7d8", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '70730176-5f3c-44be-bcec-bc9154ac3ea8', 'INSERT', '{"uuid": "70730176-5f3c-44be-bcec-bc9154ac3ea8", "assumed": true, "ascendantuuid": "c25516ad-8358-49e5-ae55-ccecc2fc9b3b", "descendantuuid": "62bd04a2-1f7d-4b0f-b060-93a972f0b7d8", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '217ded01-7d2a-48a2-8044-3cecec6fd8de', 'INSERT', '{"uuid": "217ded01-7d2a-48a2-8044-3cecec6fd8de", "assumed": true, "ascendantuuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "descendantuuid": "c25516ad-8358-49e5-ae55-ccecc2fc9b3b", "grantedbyroleuuid": null, "grantedbytriggerof": "7e11b785-e756-49de-a3b3-2f001ea79993"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '8aa7fbed-7490-4f2e-b22e-5adfe5d98304', 'INSERT', '{"op": "INSERT", "uuid": "8aa7fbed-7490-4f2e-b22e-5adfe5d98304", "objectuuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '7875270a-3185-4840-9339-70ecd2d6140f', 'INSERT', '{"uuid": "7875270a-3185-4840-9339-70ecd2d6140f", "assumed": true, "ascendantuuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "descendantuuid": "8aa7fbed-7490-4f2e-b22e-5adfe5d98304", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '7e11b785-e756-49de-a3b3-2f001ea79993', 'INSERT', '{"uuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "title": "", "version": 0, "givenname": "Frauke", "tradename": "", "familyname": "Fanninga", "persontype": "NP", "salutation": "Frau"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', 'd616957a-e628-498e-b230-be25244d4e30', 'INSERT', '{"uuid": "d616957a-e628-498e-b230-be25244d4e30", "serialid": 31, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'e8750395-3b20-426a-ba1a-e46eaf62ef86', 'INSERT', '{"uuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "roletype": "OWNER", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '14a306eb-e654-4717-a540-f25462a9f980', 'INSERT', '{"op": "DELETE", "uuid": "14a306eb-e654-4717-a540-f25462a9f980", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '2b7bb42e-cbe3-4e85-a8a0-231f88bbee15', 'INSERT', '{"uuid": "2b7bb42e-cbe3-4e85-a8a0-231f88bbee15", "assumed": true, "ascendantuuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "descendantuuid": "14a306eb-e654-4717-a540-f25462a9f980", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '20c13b70-d523-4321-a4a8-be65d577e1fb', 'INSERT', '{"uuid": "20c13b70-d523-4321-a4a8-be65d577e1fb", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3d30485b-e6b9-4939-a682-cf83279aacce', 'INSERT', '{"uuid": "3d30485b-e6b9-4939-a682-cf83279aacce", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "grantedbyroleuuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'INSERT', '{"uuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "roletype": "ADMIN", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '1be781cd-2fa0-43a3-a2a1-76b2cf867603', 'INSERT', '{"op": "UPDATE", "uuid": "1be781cd-2fa0-43a3-a2a1-76b2cf867603", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '7c5aa860-94c2-45c5-b8c8-787a44dfeff3', 'INSERT', '{"uuid": "7c5aa860-94c2-45c5-b8c8-787a44dfeff3", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "1be781cd-2fa0-43a3-a2a1-76b2cf867603", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '55bb7c6a-3753-4ea3-a180-65999952750a', 'INSERT', '{"uuid": "55bb7c6a-3753-4ea3-a180-65999952750a", "assumed": true, "ascendantuuid": "e8750395-3b20-426a-ba1a-e46eaf62ef86", "descendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', 'INSERT', '{"uuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "roletype": "REFERRER", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '0d61a1e6-778f-4c91-85aa-b5b26373d810', 'INSERT', '{"op": "SELECT", "uuid": "0d61a1e6-778f-4c91-85aa-b5b26373d810", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '83576613-9469-49c5-9ad0-b13783a80d16', 'INSERT', '{"uuid": "83576613-9469-49c5-9ad0-b13783a80d16", "assumed": true, "ascendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "descendantuuid": "0d61a1e6-778f-4c91-85aa-b5b26373d810", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'b57fb184-4f51-471b-ac16-962d40714b46', 'INSERT', '{"uuid": "b57fb184-4f51-471b-ac16-962d40714b46", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "grantedbyroleuuid": null, "grantedbytriggerof": "d616957a-e628-498e-b230-be25244d4e30"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1', 'INSERT', '{"op": "INSERT", "uuid": "c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1", "objectuuid": "d616957a-e628-498e-b230-be25244d4e30", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ca9a0077-4fc4-46bc-acf2-80b13ba230a3', 'INSERT', '{"uuid": "ca9a0077-4fc4-46bc-acf2-80b13ba230a3", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', 'd616957a-e628-498e-b230-be25244d4e30', 'INSERT', '{"uuid": "d616957a-e628-498e-b230-be25244d4e30", "title": "", "version": 0, "givenname": "Cecilia", "tradename": "", "familyname": "Camus", "persontype": "NP", "salutation": "Frau"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'INSERT', '{"uuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "serialid": 32, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', 'INSERT', '{"uuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "roletype": "OWNER", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '064424c2-9d11-4949-a987-e2696fcda1a6', 'INSERT', '{"op": "DELETE", "uuid": "064424c2-9d11-4949-a987-e2696fcda1a6", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3105eff1-9b11-4aaf-9ef8-6ec6b8449700', 'INSERT', '{"uuid": "3105eff1-9b11-4aaf-9ef8-6ec6b8449700", "assumed": true, "ascendantuuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "descendantuuid": "064424c2-9d11-4949-a987-e2696fcda1a6", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '9c62bd9d-d245-4fd4-89c0-08939fbb6fb5', 'INSERT', '{"uuid": "9c62bd9d-d245-4fd4-89c0-08939fbb6fb5", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '51b9cae6-4f17-4f7f-aa2b-0c4630b2f812', 'INSERT', '{"uuid": "51b9cae6-4f17-4f7f-aa2b-0c4630b2f812", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "grantedbyroleuuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'a48c6e6e-77e8-481a-bca0-916150b6fd20', 'INSERT', '{"uuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "roletype": "ADMIN", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '7fa6cc60-4bb9-418b-be4f-4aa72524e214', 'INSERT', '{"op": "UPDATE", "uuid": "7fa6cc60-4bb9-418b-be4f-4aa72524e214", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '11e4ddc8-2c3a-4451-a1d4-3a3f86707ffe', 'INSERT', '{"uuid": "11e4ddc8-2c3a-4451-a1d4-3a3f86707ffe", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "7fa6cc60-4bb9-418b-be4f-4aa72524e214", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c3766300-84da-47ab-8dad-39d57ddb4366', 'INSERT', '{"uuid": "c3766300-84da-47ab-8dad-39d57ddb4366", "assumed": true, "ascendantuuid": "c0534e7d-6f73-42e5-aff8-ff9d47e3186d", "descendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '5b97fea3-07be-443f-87f4-9a0764e31215', 'INSERT', '{"uuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "roletype": "REFERRER", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'dae319d6-1e84-43c2-ac4f-a2baa73ecfe8', 'INSERT', '{"op": "SELECT", "uuid": "dae319d6-1e84-43c2-ac4f-a2baa73ecfe8", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'a21e5b82-b77b-4938-bc5b-706b1d51e52c', 'INSERT', '{"uuid": "a21e5b82-b77b-4938-bc5b-706b1d51e52c", "assumed": true, "ascendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "descendantuuid": "dae319d6-1e84-43c2-ac4f-a2baa73ecfe8", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'd0e05bb0-dea6-4507-9904-7b5e113947f2', 'INSERT', '{"uuid": "d0e05bb0-dea6-4507-9904-7b5e113947f2", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'dcbaa9d7-ccab-4d93-b93b-47495769872b', 'INSERT', '{"op": "INSERT", "uuid": "dcbaa9d7-ccab-4d93-b93b-47495769872b", "objectuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '9a750ca0-408d-4d56-9e7d-41a5879c3c12', 'INSERT', '{"uuid": "9a750ca0-408d-4d56-9e7d-41a5879c3c12", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "dcbaa9d7-ccab-4d93-b93b-47495769872b", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'INSERT', '{"uuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "title": "", "version": 0, "givenname": "Christiane", "tradename": "Wasserwerk Südholstein", "familyname": "Milberg", "persontype": "??", "salutation": "Frau"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'INSERT', '{"uuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "serialid": 33, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '6a826b99-66d3-4bca-8462-e0957149d607', 'INSERT', '{"uuid": "6a826b99-66d3-4bca-8462-e0957149d607", "roletype": "OWNER", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'b58e78f4-cae9-410a-b5b2-6d38e4e1b483', 'INSERT', '{"op": "DELETE", "uuid": "b58e78f4-cae9-410a-b5b2-6d38e4e1b483", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'eff962c3-0044-4774-b344-c597586d727d', 'INSERT', '{"uuid": "eff962c3-0044-4774-b344-c597586d727d", "assumed": true, "ascendantuuid": "6a826b99-66d3-4bca-8462-e0957149d607", "descendantuuid": "b58e78f4-cae9-410a-b5b2-6d38e4e1b483", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '2e0ae133-ebe6-4eb2-86fc-e07792388b0c', 'INSERT', '{"uuid": "2e0ae133-ebe6-4eb2-86fc-e07792388b0c", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "6a826b99-66d3-4bca-8462-e0957149d607", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '9148e225-1879-4cea-97be-319592b174cd', 'INSERT', '{"uuid": "9148e225-1879-4cea-97be-319592b174cd", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "6a826b99-66d3-4bca-8462-e0957149d607", "grantedbyroleuuid": "6a826b99-66d3-4bca-8462-e0957149d607", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '3f0dc306-e3b9-4324-a05d-1de298db1039', 'INSERT', '{"uuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "roletype": "ADMIN", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'e0c07495-5fd0-4d25-9713-4b11b1f31557', 'INSERT', '{"op": "UPDATE", "uuid": "e0c07495-5fd0-4d25-9713-4b11b1f31557", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '4a3de3b2-dc0c-4918-b104-443a6bd87410', 'INSERT', '{"uuid": "4a3de3b2-dc0c-4918-b104-443a6bd87410", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "e0c07495-5fd0-4d25-9713-4b11b1f31557", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '30756632-a08f-4902-a11c-4abcfbbf0b70', 'INSERT', '{"uuid": "30756632-a08f-4902-a11c-4abcfbbf0b70", "assumed": true, "ascendantuuid": "6a826b99-66d3-4bca-8462-e0957149d607", "descendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', 'INSERT', '{"uuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "roletype": "REFERRER", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '294cebc1-7d37-43de-a2c3-ae529676dfd6', 'INSERT', '{"op": "SELECT", "uuid": "294cebc1-7d37-43de-a2c3-ae529676dfd6", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'fd41ea29-7a72-4aa0-a3f5-e25bd276281d', 'INSERT', '{"uuid": "fd41ea29-7a72-4aa0-a3f5-e25bd276281d", "assumed": true, "ascendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "descendantuuid": "294cebc1-7d37-43de-a2c3-ae529676dfd6", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c75a4a06-45ba-4278-9abc-a7fa4a9dce0b', 'INSERT', '{"uuid": "c75a4a06-45ba-4278-9abc-a7fa4a9dce0b", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "348a082d-3ca8-44a0-adc2-06a2aed23cd9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '5906a152-7e12-43de-b12c-223ad1cdbdbe', 'INSERT', '{"op": "INSERT", "uuid": "5906a152-7e12-43de-b12c-223ad1cdbdbe", "objectuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c91086fe-3d8b-4cb8-8a60-845bfb2672f0', 'INSERT', '{"uuid": "c91086fe-3d8b-4cb8-8a60-845bfb2672f0", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "5906a152-7e12-43de-b12c-223ad1cdbdbe", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'INSERT', '{"uuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "title": "", "version": 0, "givenname": "Richard", "tradename": "Das Perfekte Haus", "familyname": "Wiese", "persontype": "??", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'INSERT', '{"uuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "serialid": 34, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '494974f4-1809-4ffa-82a8-96b26a88b483', 'INSERT', '{"uuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "roletype": "OWNER", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '5c468a9b-01c0-4847-987d-5f5469d505fe', 'INSERT', '{"op": "DELETE", "uuid": "5c468a9b-01c0-4847-987d-5f5469d505fe", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'f0c3e70f-2db3-47cf-8c9d-03876c6d33aa', 'INSERT', '{"uuid": "f0c3e70f-2db3-47cf-8c9d-03876c6d33aa", "assumed": true, "ascendantuuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "descendantuuid": "5c468a9b-01c0-4847-987d-5f5469d505fe", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'baf94aae-4e81-44e6-945c-7578ea06788b', 'INSERT', '{"uuid": "baf94aae-4e81-44e6-945c-7578ea06788b", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '6b6531f4-f962-4594-a80f-5430fcac1f4c', 'INSERT', '{"uuid": "6b6531f4-f962-4594-a80f-5430fcac1f4c", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "grantedbyroleuuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'b0fbb802-35bf-4971-92a3-225bd6433052', 'INSERT', '{"uuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "roletype": "ADMIN", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '65fa26a2-e501-442b-9efe-30c756b4eae9', 'INSERT', '{"op": "UPDATE", "uuid": "65fa26a2-e501-442b-9efe-30c756b4eae9", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '975eef42-9d17-4fe0-9f6f-859b93ca0376', 'INSERT', '{"uuid": "975eef42-9d17-4fe0-9f6f-859b93ca0376", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "65fa26a2-e501-442b-9efe-30c756b4eae9", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '79148879-4d14-419a-bd2b-f27a3773d6bb', 'INSERT', '{"uuid": "79148879-4d14-419a-bd2b-f27a3773d6bb", "assumed": true, "ascendantuuid": "494974f4-1809-4ffa-82a8-96b26a88b483", "descendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '64b677c5-c58c-4a84-95d4-69d005c4a682', 'INSERT', '{"uuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "roletype": "REFERRER", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '75c391b5-1092-4689-839d-ace89825807f', 'INSERT', '{"op": "SELECT", "uuid": "75c391b5-1092-4689-839d-ace89825807f", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '81137d9f-996a-4adc-8611-28895cf59a06', 'INSERT', '{"uuid": "81137d9f-996a-4adc-8611-28895cf59a06", "assumed": true, "ascendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "descendantuuid": "75c391b5-1092-4689-839d-ace89825807f", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c0faa404-ab5a-4d15-bb51-989bd8e2126b', 'INSERT', '{"uuid": "c0faa404-ab5a-4d15-bb51-989bd8e2126b", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "grantedbyroleuuid": null, "grantedbytriggerof": "55dd7d96-751e-43b2-afd8-4803a55b422a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'dd986aa4-5f80-47e8-8346-a5b24cf6f91a', 'INSERT', '{"op": "INSERT", "uuid": "dd986aa4-5f80-47e8-8346-a5b24cf6f91a", "objectuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '6d5cba60-bf13-434c-8991-9e811ae44c33', 'INSERT', '{"uuid": "6d5cba60-bf13-434c-8991-9e811ae44c33", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "dd986aa4-5f80-47e8-8346-a5b24cf6f91a", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'INSERT', '{"uuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "title": "", "version": 0, "givenname": "Karim", "tradename": "Wasswerwerk Südholstein", "familyname": "Metzger", "persontype": "??", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'INSERT', '{"uuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "serialid": 35, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'e34d142d-dacb-495b-a937-87ee4e1c09fa', 'INSERT', '{"uuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "roletype": "OWNER", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '773e4625-4c58-4a10-affe-9ecdb6582a51', 'INSERT', '{"op": "DELETE", "uuid": "773e4625-4c58-4a10-affe-9ecdb6582a51", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c5437c86-9388-4bc7-b1d9-777ec5b35ba8', 'INSERT', '{"uuid": "c5437c86-9388-4bc7-b1d9-777ec5b35ba8", "assumed": true, "ascendantuuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "descendantuuid": "773e4625-4c58-4a10-affe-9ecdb6582a51", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '42967cc7-25ff-4986-98f8-f3932663036a', 'INSERT', '{"uuid": "42967cc7-25ff-4986-98f8-f3932663036a", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '2ef219e2-c751-4791-a1c6-1266285be3b9', 'INSERT', '{"uuid": "2ef219e2-c751-4791-a1c6-1266285be3b9", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "grantedbyroleuuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', 'INSERT', '{"uuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "roletype": "ADMIN", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'bd1892c4-625d-4282-966e-c852b72bf84b', 'INSERT', '{"op": "UPDATE", "uuid": "bd1892c4-625d-4282-966e-c852b72bf84b", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '63c67bc5-c31d-4dd4-86a9-4aa7177b0e2c', 'INSERT', '{"uuid": "63c67bc5-c31d-4dd4-86a9-4aa7177b0e2c", "assumed": true, "ascendantuuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "descendantuuid": "bd1892c4-625d-4282-966e-c852b72bf84b", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5da3adab-5ca8-4885-a0d2-fbfd08d272e0', 'INSERT', '{"uuid": "5da3adab-5ca8-4885-a0d2-fbfd08d272e0", "assumed": true, "ascendantuuid": "e34d142d-dacb-495b-a937-87ee4e1c09fa", "descendantuuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '6b61b520-c228-407a-9b99-47031cd7352d', 'INSERT', '{"uuid": "6b61b520-c228-407a-9b99-47031cd7352d", "roletype": "REFERRER", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '1774b4f2-0887-4a09-bf87-ada95aa91f0e', 'INSERT', '{"op": "SELECT", "uuid": "1774b4f2-0887-4a09-bf87-ada95aa91f0e", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '1fd70324-7dce-4278-bbb3-f922f451cf04', 'INSERT', '{"uuid": "1fd70324-7dce-4278-bbb3-f922f451cf04", "assumed": true, "ascendantuuid": "6b61b520-c228-407a-9b99-47031cd7352d", "descendantuuid": "1774b4f2-0887-4a09-bf87-ada95aa91f0e", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '67e302a7-d43c-4c4c-97e4-2e8042df5062', 'INSERT', '{"uuid": "67e302a7-d43c-4c4c-97e4-2e8042df5062", "assumed": true, "ascendantuuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "descendantuuid": "6b61b520-c228-407a-9b99-47031cd7352d", "grantedbyroleuuid": null, "grantedbytriggerof": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63', 'INSERT', '{"op": "INSERT", "uuid": "8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63", "objectuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '33a33fa7-997a-4367-98e1-31143ab8ffaa', 'INSERT', '{"uuid": "33a33fa7-997a-4367-98e1-31143ab8ffaa", "assumed": true, "ascendantuuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "descendantuuid": "8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'INSERT', '{"uuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "title": "", "version": 0, "givenname": "Inhaber R.", "tradename": "Das Perfekte Haus", "familyname": "Wiese", "persontype": "??", "salutation": "Herr"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '351d423b-c277-4300-afcd-7cdc9942f48b', 'INSERT', '{"uuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "serialid": 36, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '96df783e-4e02-430d-bfc2-ec05e51c17fa', 'INSERT', '{"uuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "roletype": "OWNER", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'feed202d-52de-4e5a-a607-3eb9bf2003d9', 'INSERT', '{"op": "DELETE", "uuid": "feed202d-52de-4e5a-a607-3eb9bf2003d9", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '8df90d21-52f4-4b30-be4c-abd4ca0b2634', 'INSERT', '{"uuid": "8df90d21-52f4-4b30-be4c-abd4ca0b2634", "assumed": true, "ascendantuuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "descendantuuid": "feed202d-52de-4e5a-a607-3eb9bf2003d9", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '887ac9b7-2225-4833-800e-a99b1ab0f8b5', 'INSERT', '{"uuid": "887ac9b7-2225-4833-800e-a99b1ab0f8b5", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '4d300e44-9da8-400a-9ed5-9ee76f5f8b2a', 'INSERT', '{"uuid": "4d300e44-9da8-400a-9ed5-9ee76f5f8b2a", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "grantedbyroleuuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', 'INSERT', '{"uuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "roletype": "ADMIN", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'e92adbd8-4e34-4953-81f9-ddbc53c01718', 'INSERT', '{"op": "UPDATE", "uuid": "e92adbd8-4e34-4953-81f9-ddbc53c01718", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '8b2c6c94-6ed2-4f60-b67d-44f5744f58a6', 'INSERT', '{"uuid": "8b2c6c94-6ed2-4f60-b67d-44f5744f58a6", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "e92adbd8-4e34-4953-81f9-ddbc53c01718", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '1d155530-23a2-40a9-b3b3-d160adb0eb5e', 'INSERT', '{"uuid": "1d155530-23a2-40a9-b3b3-d160adb0eb5e", "assumed": true, "ascendantuuid": "96df783e-4e02-430d-bfc2-ec05e51c17fa", "descendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'd0d6036a-4fe9-4823-943d-bc784037a589', 'INSERT', '{"uuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "roletype": "REFERRER", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '438b8588-ce9f-4d79-9596-886a7563dbb6', 'INSERT', '{"op": "SELECT", "uuid": "438b8588-ce9f-4d79-9596-886a7563dbb6", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'd7366c2a-93a6-441a-9c99-5781f0bcff95', 'INSERT', '{"uuid": "d7366c2a-93a6-441a-9c99-5781f0bcff95", "assumed": true, "ascendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "descendantuuid": "438b8588-ce9f-4d79-9596-886a7563dbb6", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '91470581-d848-44bb-b90f-b7638f0160a0', 'INSERT', '{"uuid": "91470581-d848-44bb-b90f-b7638f0160a0", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "grantedbyroleuuid": null, "grantedbytriggerof": "351d423b-c277-4300-afcd-7cdc9942f48b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '530d8d03-1827-434d-ae3a-2569d140fcf4', 'INSERT', '{"op": "INSERT", "uuid": "530d8d03-1827-434d-ae3a-2569d140fcf4", "objectuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'c0cdecfa-88d9-4739-baa1-bb8b696c5623', 'INSERT', '{"uuid": "c0cdecfa-88d9-4739-baa1-bb8b696c5623", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "530d8d03-1827-434d-ae3a-2569d140fcf4", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '351d423b-c277-4300-afcd-7cdc9942f48b', 'INSERT', '{"uuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "title": "", "version": 0, "givenname": "Ragnar", "tradename": "", "familyname": "Richter", "persontype": "NP", "salutation": ""}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'INSERT', '{"uuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "serialid": 37, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', 'INSERT', '{"uuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "roletype": "OWNER", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '3c754d92-32d8-489f-b18d-ddc6795b8178', 'INSERT', '{"op": "DELETE", "uuid": "3c754d92-32d8-489f-b18d-ddc6795b8178", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '3c4a047d-78dc-4742-a049-1f71eca1f87f', 'INSERT', '{"uuid": "3c4a047d-78dc-4742-a049-1f71eca1f87f", "assumed": true, "ascendantuuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "descendantuuid": "3c754d92-32d8-489f-b18d-ddc6795b8178", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '43257fab-cc3f-4ed9-a776-3cbe69e16c67', 'INSERT', '{"uuid": "43257fab-cc3f-4ed9-a776-3cbe69e16c67", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '8da160d1-6f03-45d1-8a42-510f5a5612d1', 'INSERT', '{"uuid": "8da160d1-6f03-45d1-8a42-510f5a5612d1", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "grantedbyroleuuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', 'INSERT', '{"uuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "roletype": "ADMIN", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'a5f0f6a9-187f-4b93-b8d6-e536a8494be7', 'INSERT', '{"op": "UPDATE", "uuid": "a5f0f6a9-187f-4b93-b8d6-e536a8494be7", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '63e2f0f2-4098-4e67-9b7d-4c38fbd590d6', 'INSERT', '{"uuid": "63e2f0f2-4098-4e67-9b7d-4c38fbd590d6", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "a5f0f6a9-187f-4b93-b8d6-e536a8494be7", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'ea267276-d4ab-49b8-ac1a-f83297526e5e', 'INSERT', '{"uuid": "ea267276-d4ab-49b8-ac1a-f83297526e5e", "assumed": true, "ascendantuuid": "ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed", "descendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '9f4f63b2-6439-4c9c-ae86-305aca317339', 'INSERT', '{"uuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "roletype": "REFERRER", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'ba846e43-deb5-4d37-83f2-e783ea17de2d', 'INSERT', '{"op": "SELECT", "uuid": "ba846e43-deb5-4d37-83f2-e783ea17de2d", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '0380a4ec-af04-47f1-87e4-d00a2ef72669', 'INSERT', '{"uuid": "0380a4ec-af04-47f1-87e4-d00a2ef72669", "assumed": true, "ascendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "descendantuuid": "ba846e43-deb5-4d37-83f2-e783ea17de2d", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '5d6d0378-3c68-4ddb-9493-97f1445c6748', 'INSERT', '{"uuid": "5d6d0378-3c68-4ddb-9493-97f1445c6748", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "grantedbyroleuuid": null, "grantedbytriggerof": "08e856b7-4c1e-4f9f-96ad-6127de069fa2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '80b1933f-300a-43d7-8e3f-5ada1fb7c9be', 'INSERT', '{"op": "INSERT", "uuid": "80b1933f-300a-43d7-8e3f-5ada1fb7c9be", "objectuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '7247c7cf-397d-414b-afc0-b708749f6838', 'INSERT', '{"uuid": "7247c7cf-397d-414b-afc0-b708749f6838", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "80b1933f-300a-43d7-8e3f-5ada1fb7c9be", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'INSERT', '{"uuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "title": "", "version": 0, "givenname": "Eike", "tradename": "", "familyname": "Henning", "persontype": "NP", "salutation": ""}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.object', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'INSERT', '{"uuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "serialid": 38, "objecttable": "hs_office.person"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '1dcac355-585b-439f-ac9b-52566674c34d', 'INSERT', '{"uuid": "1dcac355-585b-439f-ac9b-52566674c34d", "roletype": "OWNER", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'c0a43132-204a-4905-8d81-e172188b51cf', 'INSERT', '{"op": "DELETE", "uuid": "c0a43132-204a-4905-8d81-e172188b51cf", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'abfd6792-173a-4e6c-9f86-23fa7e4cc3de', 'INSERT', '{"uuid": "abfd6792-173a-4e6c-9f86-23fa7e4cc3de", "assumed": true, "ascendantuuid": "1dcac355-585b-439f-ac9b-52566674c34d", "descendantuuid": "c0a43132-204a-4905-8d81-e172188b51cf", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '26eba482-d646-42f2-90f4-1733611cbe57', 'INSERT', '{"uuid": "26eba482-d646-42f2-90f4-1733611cbe57", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1dcac355-585b-439f-ac9b-52566674c34d", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '4f9a3864-cea8-4557-9ac4-e2d80c4ac1ba', 'INSERT', '{"uuid": "4f9a3864-cea8-4557-9ac4-e2d80c4ac1ba", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1dcac355-585b-439f-ac9b-52566674c34d", "grantedbyroleuuid": "1dcac355-585b-439f-ac9b-52566674c34d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', 'INSERT', '{"uuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "roletype": "ADMIN", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'fba0b7cb-bafe-4308-b95b-467050031247', 'INSERT', '{"op": "UPDATE", "uuid": "fba0b7cb-bafe-4308-b95b-467050031247", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '9c233012-6330-4359-bc0f-8bf779d314d6', 'INSERT', '{"uuid": "9c233012-6330-4359-bc0f-8bf779d314d6", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "fba0b7cb-bafe-4308-b95b-467050031247", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '23272f3b-28e7-4777-9f86-5821646343ad', 'INSERT', '{"uuid": "23272f3b-28e7-4777-9f86-5821646343ad", "serialid": 119, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '57fe5952-8e7f-4e3e-9847-11b66165700c', 'INSERT', '{"uuid": "57fe5952-8e7f-4e3e-9847-11b66165700c", "assumed": true, "ascendantuuid": "1dcac355-585b-439f-ac9b-52566674c34d", "descendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.role', '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', 'INSERT', '{"uuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "roletype": "REFERRER", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', 'eba62494-ced5-47fd-b8be-2ca0eea0c71f', 'INSERT', '{"op": "SELECT", "uuid": "eba62494-ced5-47fd-b8be-2ca0eea0c71f", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', 'cef0b088-0682-42fe-a144-e28e3f7cb01e', 'INSERT', '{"uuid": "cef0b088-0682-42fe-a144-e28e3f7cb01e", "assumed": true, "ascendantuuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "descendantuuid": "eba62494-ced5-47fd-b8be-2ca0eea0c71f", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '1be01c8c-401a-4c00-ad85-612aa14f0af9', 'INSERT', '{"uuid": "1be01c8c-401a-4c00-ad85-612aa14f0af9", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "grantedbyroleuuid": null, "grantedbytriggerof": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.permission', '8239420e-41f1-40b0-b344-aa94a71aa03c', 'INSERT', '{"op": "INSERT", "uuid": "8239420e-41f1-40b0-b344-aa94a71aa03c", "objectuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "optablename": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'rbac.grant', '0b982b0f-712c-43ca-9be3-e0d11c00144b', 'INSERT', '{"uuid": "0b982b0f-712c-43ca-9be3-e0d11c00144b", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "8239420e-41f1-40b0-b344-aa94a71aa03c", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1244', 'hs_office.person', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'INSERT', '{"uuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "title": "", "version": 0, "givenname": "Jan", "tradename": "", "familyname": "Henning", "persontype": "NP", "salutation": ""}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'INSERT', '{"uuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9", "serialid": 39, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2e4968dd-1b34-4509-ae49-26525a1b61e1', 'INSERT', '{"uuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "roletype": "OWNER", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2dce17a3-19c6-4199-97ce-7be6c2b8ae77', 'INSERT', '{"op": "DELETE", "uuid": "2dce17a3-19c6-4199-97ce-7be6c2b8ae77", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eb934fb0-d2d3-44b7-ac3c-eb3a531165f9', 'INSERT', '{"uuid": "eb934fb0-d2d3-44b7-ac3c-eb3a531165f9", "assumed": true, "ascendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "descendantuuid": "2dce17a3-19c6-4199-97ce-7be6c2b8ae77", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd7932fdf-70ae-473e-85ce-b18453d800c0', 'INSERT', '{"uuid": "d7932fdf-70ae-473e-85ce-b18453d800c0", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5aab8c2b-f947-4f95-87c5-e4c6ea7dc3c4', 'INSERT', '{"uuid": "5aab8c2b-f947-4f95-87c5-e4c6ea7dc3c4", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "grantedbyroleuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '79f6ac07-1368-42f4-a1ae-a9a357a8426e', 'INSERT', '{"uuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "roletype": "ADMIN", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '53cabb17-6406-415c-9d81-299a473e6241', 'INSERT', '{"op": "UPDATE", "uuid": "53cabb17-6406-415c-9d81-299a473e6241", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a2bbaa1c-ea36-43f5-b277-256513852de8', 'INSERT', '{"uuid": "a2bbaa1c-ea36-43f5-b277-256513852de8", "assumed": true, "ascendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "descendantuuid": "53cabb17-6406-415c-9d81-299a473e6241", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3ce3e2b8-6d03-490e-84c1-79bca8042951', 'INSERT', '{"uuid": "3ce3e2b8-6d03-490e-84c1-79bca8042951", "assumed": true, "ascendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "descendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9e239542-d709-4bd3-9286-29c94c37908a', 'INSERT', '{"uuid": "9e239542-d709-4bd3-9286-29c94c37908a", "roletype": "AGENT", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '11a413f0-9307-4883-96a8-3bc158632b4f', 'INSERT', '{"uuid": "11a413f0-9307-4883-96a8-3bc158632b4f", "assumed": true, "ascendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "descendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c0087469-c932-4639-9f7c-577e275791df', 'INSERT', '{"uuid": "c0087469-c932-4639-9f7c-577e275791df", "roletype": "TENANT", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4c5423db-72ec-4af8-9f2c-4763304185d4', 'INSERT', '{"op": "SELECT", "uuid": "4c5423db-72ec-4af8-9f2c-4763304185d4", "objectuuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '07c0183e-b11e-41f9-b718-850a5e11fdb6', 'INSERT', '{"uuid": "07c0183e-b11e-41f9-b718-850a5e11fdb6", "assumed": true, "ascendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "descendantuuid": "4c5423db-72ec-4af8-9f2c-4763304185d4", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '083de981-37b7-4634-aaec-03446481dcb5', 'INSERT', '{"uuid": "083de981-37b7-4634-aaec-03446481dcb5", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '544964ed-e703-42a7-9b62-2649535c881a', 'INSERT', '{"uuid": "544964ed-e703-42a7-9b62-2649535c881a", "assumed": true, "ascendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "descendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b2ff4159-328a-4daf-ac3a-35b60a9f7dd1', 'INSERT', '{"uuid": "b2ff4159-328a-4daf-ac3a-35b60a9f7dd1", "assumed": true, "ascendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c5df0aef-0c2d-4ed2-b5d1-9e5cf98ba7b9', 'INSERT', '{"uuid": "c5df0aef-0c2d-4ed2-b5d1-9e5cf98ba7b9", "assumed": true, "ascendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '36cffe93-13e4-45bd-8f54-efbbd32ee3c2', 'INSERT', '{"uuid": "36cffe93-13e4-45bd-8f54-efbbd32ee3c2", "assumed": true, "ascendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '06b37d46-5c1b-4144-a7e8-2f861d97d192', 'INSERT', '{"uuid": "06b37d46-5c1b-4144-a7e8-2f861d97d192", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cbf8d2e6-20e2-431d-80d9-ad4d6b646394', 'INSERT', '{"uuid": "cbf8d2e6-20e2-431d-80d9-ad4d6b646394", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "grantedbyroleuuid": null, "grantedbytriggerof": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'INSERT', '{"uuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "serialid": 40, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', 'INSERT', '{"uuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "roletype": "OWNER", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '807e60d2-e206-4fcb-8411-e9c13a305095', 'INSERT', '{"op": "DELETE", "uuid": "807e60d2-e206-4fcb-8411-e9c13a305095", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bb40fac7-b5a9-44e9-910a-40fe2463df1b', 'INSERT', '{"uuid": "bb40fac7-b5a9-44e9-910a-40fe2463df1b", "assumed": true, "ascendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "descendantuuid": "807e60d2-e206-4fcb-8411-e9c13a305095", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '441ff3c8-1325-4a7f-a0a1-8fccb3d7cf6e', 'INSERT', '{"uuid": "441ff3c8-1325-4a7f-a0a1-8fccb3d7cf6e", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4159e5f4-c6cc-44a9-8262-7ded90da767b', 'INSERT', '{"uuid": "4159e5f4-c6cc-44a9-8262-7ded90da767b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "grantedbyroleuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b488d259-9ffa-47ea-9494-722a4f97a8c9', 'INSERT', '{"uuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "roletype": "ADMIN", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '98c7cb10-8b2d-4478-8f7d-4376d5d603b6', 'INSERT', '{"op": "UPDATE", "uuid": "98c7cb10-8b2d-4478-8f7d-4376d5d603b6", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8f6317ec-42dd-4404-91ce-6565c55f8f33', 'INSERT', '{"uuid": "8f6317ec-42dd-4404-91ce-6565c55f8f33", "assumed": true, "ascendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "descendantuuid": "98c7cb10-8b2d-4478-8f7d-4376d5d603b6", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '30d0c401-ecc4-43f5-8e95-33e9cf2d8715', 'INSERT', '{"uuid": "30d0c401-ecc4-43f5-8e95-33e9cf2d8715", "assumed": true, "ascendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "descendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', 'INSERT', '{"uuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "roletype": "AGENT", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0e14b1fe-ad2d-4db3-9c55-9e61cebc7cce', 'INSERT', '{"uuid": "0e14b1fe-ad2d-4db3-9c55-9e61cebc7cce", "assumed": true, "ascendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "descendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', 'INSERT', '{"uuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "roletype": "TENANT", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '85269400-918a-46d9-870e-289da89b0bb2', 'INSERT', '{"op": "SELECT", "uuid": "85269400-918a-46d9-870e-289da89b0bb2", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c914c852-ea4f-4d2c-9c78-05d11a65caf3', 'INSERT', '{"uuid": "c914c852-ea4f-4d2c-9c78-05d11a65caf3", "assumed": true, "ascendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "descendantuuid": "85269400-918a-46d9-870e-289da89b0bb2", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e0f5cd3c-00e6-475c-86c2-ad89ab12209e', 'INSERT', '{"uuid": "e0f5cd3c-00e6-475c-86c2-ad89ab12209e", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5049dc2d-b231-4d60-8040-36d77df87a9c', 'INSERT', '{"uuid": "5049dc2d-b231-4d60-8040-36d77df87a9c", "assumed": true, "ascendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "descendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8b91b09b-8052-4893-94b1-62a8552b8543', 'INSERT', '{"uuid": "8b91b09b-8052-4893-94b1-62a8552b8543", "assumed": true, "ascendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b349e0c7-af72-462a-8672-993d498db00a', 'INSERT', '{"uuid": "b349e0c7-af72-462a-8672-993d498db00a", "assumed": true, "ascendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '786d5157-4a90-473e-bdd9-a98dd11f4a05', 'INSERT', '{"uuid": "786d5157-4a90-473e-bdd9-a98dd11f4a05", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ac1219be-2da7-4645-b57c-2d3080548e66', 'INSERT', '{"uuid": "ac1219be-2da7-4645-b57c-2d3080548e66", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "grantedbyroleuuid": null, "grantedbytriggerof": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '6a5d3ea6-f442-445e-8680-d4c9525bf56f', 'INSERT', '{"op": "INSERT", "uuid": "6a5d3ea6-f442-445e-8680-d4c9525bf56f", "objectuuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bc29ced5-cfb7-4ef4-a9ca-b2eab5ded8fa', 'INSERT', '{"uuid": "bc29ced5-cfb7-4ef4-a9ca-b2eab5ded8fa", "assumed": true, "ascendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "descendantuuid": "6a5d3ea6-f442-445e-8680-d4c9525bf56f", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '07e54dc9-9b64-464c-9894-08d88a01cfb6', 'INSERT', '{"uuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "roletype": "OWNER", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68', 'INSERT', '{"op": "DELETE", "uuid": "b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f39a4112-b7d2-4fe9-8f78-b3f890d81026', 'INSERT', '{"uuid": "f39a4112-b7d2-4fe9-8f78-b3f890d81026", "assumed": true, "ascendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "descendantuuid": "b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c6b62aa0-0c82-4c81-950d-b64d185f7478', 'INSERT', '{"uuid": "c6b62aa0-0c82-4c81-950d-b64d185f7478", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3e651f22-f055-4545-b102-d38c1f448d4e', 'INSERT', '{"uuid": "3e651f22-f055-4545-b102-d38c1f448d4e", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "grantedbyroleuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '63952462-0544-485e-8e6f-a344be47cc97', 'INSERT', '{"uuid": "63952462-0544-485e-8e6f-a344be47cc97", "roletype": "ADMIN", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '81e46ebd-311d-47b1-9c7d-135922dc0511', 'INSERT', '{"op": "UPDATE", "uuid": "81e46ebd-311d-47b1-9c7d-135922dc0511", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a0353fff-c263-4286-ae9b-412059f31ab1', 'INSERT', '{"uuid": "a0353fff-c263-4286-ae9b-412059f31ab1", "assumed": true, "ascendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "descendantuuid": "81e46ebd-311d-47b1-9c7d-135922dc0511", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b48a6315-c31e-4749-8f5c-26143a4abe5c', 'INSERT', '{"uuid": "b48a6315-c31e-4749-8f5c-26143a4abe5c", "assumed": true, "ascendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "descendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '03613dc7-4ec1-430b-a213-291b587700d5', 'INSERT', '{"uuid": "03613dc7-4ec1-430b-a213-291b587700d5", "roletype": "AGENT", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8ad1165a-4ed0-4e7e-b800-6655548a7df3', 'INSERT', '{"uuid": "8ad1165a-4ed0-4e7e-b800-6655548a7df3", "assumed": true, "ascendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "descendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '06736882-96b1-4e48-bcb0-b897a5929f8d', 'INSERT', '{"uuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "roletype": "TENANT", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'af8d1591-065a-4707-ae5e-b0703df69be9', 'INSERT', '{"op": "SELECT", "uuid": "af8d1591-065a-4707-ae5e-b0703df69be9", "objectuuid": "ef085ca0-2cc6-4497-b739-1668e6acb687", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '824b3cdd-a54d-48c8-812a-07147cf5ae10', 'INSERT', '{"uuid": "824b3cdd-a54d-48c8-812a-07147cf5ae10", "assumed": true, "ascendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "descendantuuid": "af8d1591-065a-4707-ae5e-b0703df69be9", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '13da6718-75bb-4b06-be4b-276f535781e6', 'INSERT', '{"uuid": "13da6718-75bb-4b06-be4b-276f535781e6", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4af87644-e213-44f4-bcbb-9587571f2892', 'INSERT', '{"uuid": "4af87644-e213-44f4-bcbb-9587571f2892", "assumed": true, "ascendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "descendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fd355002-53f7-4f97-bc4c-6574fc13b9d0', 'INSERT', '{"uuid": "fd355002-53f7-4f97-bc4c-6574fc13b9d0", "assumed": true, "ascendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'da757da2-36ef-49c3-ae20-0c7981f5f87f', 'INSERT', '{"uuid": "da757da2-36ef-49c3-ae20-0c7981f5f87f", "assumed": true, "ascendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c10ae518-157e-4079-9484-ee9163afefbc', 'INSERT', '{"uuid": "c10ae518-157e-4079-9484-ee9163afefbc", "assumed": true, "ascendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8bfcad6a-1b29-48dc-a3bd-4ca9bb584262', 'INSERT', '{"uuid": "8bfcad6a-1b29-48dc-a3bd-4ca9bb584262", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd177eb0f-a6a9-4856-8a00-77b68b3e63a5', 'INSERT', '{"uuid": "d177eb0f-a6a9-4856-8a00-77b68b3e63a5", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "grantedbyroleuuid": null, "grantedbytriggerof": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "ef085ca0-2cc6-4497-b739-1668e6acb687", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'INSERT', '{"uuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "serialid": 42, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7a2bfdae-7219-4781-9da1-ed34a2b61868', 'INSERT', '{"uuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "roletype": "OWNER", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4d646f0b-f068-4fd3-b1b1-561c70ab7503', 'INSERT', '{"op": "DELETE", "uuid": "4d646f0b-f068-4fd3-b1b1-561c70ab7503", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cde087cb-f190-435a-a1fb-587f90c3bb8d', 'INSERT', '{"uuid": "cde087cb-f190-435a-a1fb-587f90c3bb8d", "assumed": true, "ascendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "descendantuuid": "4d646f0b-f068-4fd3-b1b1-561c70ab7503", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '46187d9d-84b2-4989-b337-40dbb67d0715', 'INSERT', '{"uuid": "46187d9d-84b2-4989-b337-40dbb67d0715", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8d7183c5-d888-48e7-828e-419935ee2e66', 'INSERT', '{"uuid": "8d7183c5-d888-48e7-828e-419935ee2e66", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "grantedbyroleuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '788ffc41-ac92-4dfe-b5ac-0e18e2249262', 'INSERT', '{"uuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "roletype": "ADMIN", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5e4fcb21-3239-4060-87c1-c0a31eaf98ad', 'INSERT', '{"op": "UPDATE", "uuid": "5e4fcb21-3239-4060-87c1-c0a31eaf98ad", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a3a8d620-02fd-4813-a076-e9a99c1b376e', 'INSERT', '{"uuid": "a3a8d620-02fd-4813-a076-e9a99c1b376e", "assumed": true, "ascendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "descendantuuid": "5e4fcb21-3239-4060-87c1-c0a31eaf98ad", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd9869761-9909-4169-acc3-21192fa968fd', 'INSERT', '{"uuid": "d9869761-9909-4169-acc3-21192fa968fd", "assumed": true, "ascendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "descendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '27f136ee-b3fa-4aa7-8806-45e856c2c56c', 'INSERT', '{"uuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "roletype": "AGENT", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9e69e99c-d8b7-44f8-9e74-2f89f736e0fa', 'INSERT', '{"uuid": "9e69e99c-d8b7-44f8-9e74-2f89f736e0fa", "assumed": true, "ascendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "descendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'INSERT', '{"uuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "roletype": "TENANT", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd465dfbe-dfda-49e6-9c32-b2624e20d4a3', 'INSERT', '{"op": "SELECT", "uuid": "d465dfbe-dfda-49e6-9c32-b2624e20d4a3", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd617dcb5-c2db-4606-8766-a0a075511890', 'INSERT', '{"uuid": "d617dcb5-c2db-4606-8766-a0a075511890", "assumed": true, "ascendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "descendantuuid": "d465dfbe-dfda-49e6-9c32-b2624e20d4a3", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cd1a0b6f-bb58-4503-ad5d-c5639589ebc0', 'INSERT', '{"uuid": "cd1a0b6f-bb58-4503-ad5d-c5639589ebc0", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0bc107ea-53b5-4d55-88d1-4dacdddb8f1e', 'INSERT', '{"uuid": "0bc107ea-53b5-4d55-88d1-4dacdddb8f1e", "assumed": true, "ascendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "descendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2dda6f26-5768-4780-8c43-6d4316fb875f', 'INSERT', '{"uuid": "2dda6f26-5768-4780-8c43-6d4316fb875f", "assumed": true, "ascendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '49a8fbe8-2197-454f-a0cb-33d738da6ced', 'INSERT', '{"uuid": "49a8fbe8-2197-454f-a0cb-33d738da6ced", "assumed": true, "ascendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a28c0d3a-a654-41d5-9df8-bec81a27f1bf', 'INSERT', '{"uuid": "a28c0d3a-a654-41d5-9df8-bec81a27f1bf", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cf4d3d0e-c154-4f07-85a0-e4a909257267', 'INSERT', '{"uuid": "cf4d3d0e-c154-4f07-85a0-e4a909257267", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "grantedbyroleuuid": null, "grantedbytriggerof": "ddb4f0d0-83d2-43de-8024-a98953c1e821"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7151fd4d-3caa-4aed-af0c-ecb089b128fa', 'INSERT', '{"op": "INSERT", "uuid": "7151fd4d-3caa-4aed-af0c-ecb089b128fa", "objectuuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4e14dc85-cd8f-4d34-9df1-8aeb109830da', 'INSERT', '{"uuid": "4e14dc85-cd8f-4d34-9df1-8aeb109830da", "assumed": true, "ascendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "descendantuuid": "7151fd4d-3caa-4aed-af0c-ecb089b128fa", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '9702bd74-e7d9-440a-a210-64905274c259', 'INSERT', '{"uuid": "9702bd74-e7d9-440a-a210-64905274c259", "serialid": 43, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', 'INSERT', '{"uuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "roletype": "OWNER", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '68780154-c302-414c-8608-a0c7e59fb2be', 'INSERT', '{"op": "DELETE", "uuid": "68780154-c302-414c-8608-a0c7e59fb2be", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd8009033-4966-4bd2-9cc4-0695b5661079', 'INSERT', '{"uuid": "d8009033-4966-4bd2-9cc4-0695b5661079", "assumed": true, "ascendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "descendantuuid": "68780154-c302-414c-8608-a0c7e59fb2be", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f388454c-3d90-4736-a71d-d656ec52fc00', 'INSERT', '{"uuid": "f388454c-3d90-4736-a71d-d656ec52fc00", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '38ce269f-21e9-4e4e-bab3-e1cc70f3a9b5', 'INSERT', '{"uuid": "38ce269f-21e9-4e4e-bab3-e1cc70f3a9b5", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "grantedbyroleuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '59461651-6e8b-4e92-a992-c6361933f78a', 'INSERT', '{"uuid": "59461651-6e8b-4e92-a992-c6361933f78a", "roletype": "ADMIN", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0e8a6c6e-b802-41be-a668-ab192714f9f2', 'INSERT', '{"op": "UPDATE", "uuid": "0e8a6c6e-b802-41be-a668-ab192714f9f2", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'be036f84-17aa-45d2-bc17-b58a8db1f33a', 'INSERT', '{"op": "SELECT", "uuid": "be036f84-17aa-45d2-bc17-b58a8db1f33a", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7df3e83d-3d3f-4ac5-9e53-fa3e86f8e7b4', 'INSERT', '{"uuid": "7df3e83d-3d3f-4ac5-9e53-fa3e86f8e7b4", "assumed": true, "ascendantuuid": "59461651-6e8b-4e92-a992-c6361933f78a", "descendantuuid": "0e8a6c6e-b802-41be-a668-ab192714f9f2", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c78a66d5-ee28-48bd-a2ae-f99978fd9f95', 'INSERT', '{"uuid": "c78a66d5-ee28-48bd-a2ae-f99978fd9f95", "assumed": true, "ascendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "descendantuuid": "59461651-6e8b-4e92-a992-c6361933f78a", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '00922fe9-7f32-4a66-9e9e-959719b12c5a', 'INSERT', '{"uuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "roletype": "AGENT", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9d3fcdf7-1caa-4e99-8b39-bc07051a7c9e', 'INSERT', '{"uuid": "9d3fcdf7-1caa-4e99-8b39-bc07051a7c9e", "assumed": true, "ascendantuuid": "59461651-6e8b-4e92-a992-c6361933f78a", "descendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', 'INSERT', '{"uuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "roletype": "TENANT", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '30d3a5ab-6588-4c16-93cc-1fd96894b613', 'INSERT', '{"op": "SELECT", "uuid": "30d3a5ab-6588-4c16-93cc-1fd96894b613", "objectuuid": "9702bd74-e7d9-440a-a210-64905274c259", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '60538a96-6f8c-492a-a5cd-5bd8df07661b', 'INSERT', '{"uuid": "60538a96-6f8c-492a-a5cd-5bd8df07661b", "assumed": true, "ascendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "descendantuuid": "30d3a5ab-6588-4c16-93cc-1fd96894b613", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd3324791-6356-49d1-9eb2-bb67ca2bbc2e', 'INSERT', '{"uuid": "d3324791-6356-49d1-9eb2-bb67ca2bbc2e", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1f7ff91-8dec-4ac4-bd15-59e603bc9367', 'INSERT', '{"uuid": "a1f7ff91-8dec-4ac4-bd15-59e603bc9367", "assumed": true, "ascendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "descendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3e2f2a88-56bc-4ce8-ba48-2bdfadae3268', 'INSERT', '{"uuid": "3e2f2a88-56bc-4ce8-ba48-2bdfadae3268", "assumed": true, "ascendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "descendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b4c9b93-fa97-41ad-92c2-8ab821409d1e', 'INSERT', '{"uuid": "5b4c9b93-fa97-41ad-92c2-8ab821409d1e", "assumed": true, "ascendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '95083a82-a2b5-406e-8447-0c4c6d53de84', 'INSERT', '{"uuid": "95083a82-a2b5-406e-8447-0c4c6d53de84", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a7a975ac-f181-4d01-90c9-a09293b8fa9d', 'INSERT', '{"uuid": "a7a975ac-f181-4d01-90c9-a09293b8fa9d", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "grantedbyroleuuid": null, "grantedbytriggerof": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '9702bd74-e7d9-440a-a210-64905274c259', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "9702bd74-e7d9-440a-a210-64905274c259", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "contactuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'INSERT', '{"uuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "serialid": 44, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cee3b153-5528-4547-abf6-0abfb951c3e5', 'INSERT', '{"uuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "roletype": "OWNER", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'cce1f971-2aad-4e93-9ed3-811170c655a6', 'INSERT', '{"op": "DELETE", "uuid": "cce1f971-2aad-4e93-9ed3-811170c655a6", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7c2f6fd9-27fa-431c-a50c-24fae5fbd6fc', 'INSERT', '{"uuid": "7c2f6fd9-27fa-431c-a50c-24fae5fbd6fc", "assumed": true, "ascendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "descendantuuid": "cce1f971-2aad-4e93-9ed3-811170c655a6", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '96be4765-12d7-4721-b854-fb5f051f187f', 'INSERT', '{"uuid": "96be4765-12d7-4721-b854-fb5f051f187f", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0100a93d-e052-4d71-921f-2bccbec0562f', 'INSERT', '{"uuid": "0100a93d-e052-4d71-921f-2bccbec0562f", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "grantedbyroleuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c7155b13-a749-4856-9832-3b2c3f652e08', 'INSERT', '{"uuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "roletype": "ADMIN", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c34bc0e5-fc79-4895-bab7-638b2f405bbd', 'INSERT', '{"op": "UPDATE", "uuid": "c34bc0e5-fc79-4895-bab7-638b2f405bbd", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '289af8f5-c413-4606-95ef-a3966c46262e', 'INSERT', '{"uuid": "289af8f5-c413-4606-95ef-a3966c46262e", "assumed": true, "ascendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "descendantuuid": "c34bc0e5-fc79-4895-bab7-638b2f405bbd", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '279890a3-6336-4018-9201-7a4296e4a465', 'INSERT', '{"uuid": "279890a3-6336-4018-9201-7a4296e4a465", "assumed": true, "ascendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "descendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '647db241-3be3-4ba7-b34b-d971ad566a37', 'INSERT', '{"uuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "roletype": "AGENT", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2600ae32-b183-435a-9df4-c44acc8722c8', 'INSERT', '{"uuid": "2600ae32-b183-435a-9df4-c44acc8722c8", "assumed": true, "ascendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "descendantuuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', 'INSERT', '{"uuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "roletype": "TENANT", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b4b3d4b8-c834-4f10-8313-7c082dae819f', 'INSERT', '{"uuid": "b4b3d4b8-c834-4f10-8313-7c082dae819f", "assumed": true, "ascendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "descendantuuid": "be036f84-17aa-45d2-bc17-b58a8db1f33a", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4940f785-e138-4f93-90e4-a63a6187cf25', 'INSERT', '{"uuid": "4940f785-e138-4f93-90e4-a63a6187cf25", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b5b38e06-31a9-4e8a-ac1c-157a258d2025', 'INSERT', '{"uuid": "b5b38e06-31a9-4e8a-ac1c-157a258d2025", "assumed": true, "ascendantuuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "descendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1c16f19b-15a5-49d1-93c9-af328b7dfb50', 'INSERT', '{"uuid": "1c16f19b-15a5-49d1-93c9-af328b7dfb50", "assumed": true, "ascendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "descendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8ddd83fe-14ba-4e94-a57c-76ab6d3c1920', 'INSERT', '{"uuid": "8ddd83fe-14ba-4e94-a57c-76ab6d3c1920", "assumed": true, "ascendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '145df43c-bd23-4dd6-859f-8adb578375e5', 'INSERT', '{"uuid": "145df43c-bd23-4dd6-859f-8adb578375e5", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '352a06a8-b6b8-4664-a907-210d48f0dfd1', 'INSERT', '{"uuid": "352a06a8-b6b8-4664-a907-210d48f0dfd1", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "grantedbyroleuuid": null, "grantedbytriggerof": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '9eb6492e-6946-4868-be5c-aec6d3ba92cf', 'INSERT', '{"op": "INSERT", "uuid": "9eb6492e-6946-4868-be5c-aec6d3ba92cf", "objectuuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '65e7b617-3b6f-47ba-a3d5-f66d96f4d98b', 'INSERT', '{"uuid": "65e7b617-3b6f-47ba-a3d5-f66d96f4d98b", "assumed": true, "ascendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "descendantuuid": "9eb6492e-6946-4868-be5c-aec6d3ba92cf", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "contactuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'INSERT', '{"uuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e", "serialid": 45, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1f222590-d082-4b39-baf4-883dc9a46409', 'INSERT', '{"uuid": "1f222590-d082-4b39-baf4-883dc9a46409", "roletype": "OWNER", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '50163cb7-d90a-4c8f-9373-18ac3d6c4768', 'INSERT', '{"op": "DELETE", "uuid": "50163cb7-d90a-4c8f-9373-18ac3d6c4768", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ea521367-4b36-4623-9e3b-6faf768751b6', 'INSERT', '{"uuid": "ea521367-4b36-4623-9e3b-6faf768751b6", "assumed": true, "ascendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "descendantuuid": "50163cb7-d90a-4c8f-9373-18ac3d6c4768", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b3389841-2fec-4e79-9f45-aca623474bfb', 'INSERT', '{"uuid": "b3389841-2fec-4e79-9f45-aca623474bfb", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '656987d6-c727-41cc-bcb8-ea92426cddf4', 'INSERT', '{"uuid": "656987d6-c727-41cc-bcb8-ea92426cddf4", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "grantedbyroleuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', 'INSERT', '{"uuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "roletype": "ADMIN", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'ffa29a16-42e7-4ebe-b9f5-f167330d9140', 'INSERT', '{"op": "UPDATE", "uuid": "ffa29a16-42e7-4ebe-b9f5-f167330d9140", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '131adfd0-123b-44f3-9d71-4ccd5549419a', 'INSERT', '{"uuid": "131adfd0-123b-44f3-9d71-4ccd5549419a", "assumed": true, "ascendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "descendantuuid": "ffa29a16-42e7-4ebe-b9f5-f167330d9140", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6123fbfc-77ba-4255-a3f0-6fce0ff9cf6b', 'INSERT', '{"uuid": "6123fbfc-77ba-4255-a3f0-6fce0ff9cf6b", "assumed": true, "ascendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "descendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3edbc6f6-bd84-4390-970d-5e344664f86e', 'INSERT', '{"uuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "roletype": "AGENT", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '99422be9-86a4-4d42-8c6a-ba42135ecf57', 'INSERT', '{"uuid": "99422be9-86a4-4d42-8c6a-ba42135ecf57", "assumed": true, "ascendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "descendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', 'INSERT', '{"uuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "roletype": "TENANT", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '49150712-ea8a-4b30-b22e-e9641363e264', 'INSERT', '{"op": "SELECT", "uuid": "49150712-ea8a-4b30-b22e-e9641363e264", "objectuuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9adc3d62-7165-46af-a2f2-5c80f8866ee5', 'INSERT', '{"uuid": "9adc3d62-7165-46af-a2f2-5c80f8866ee5", "assumed": true, "ascendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "descendantuuid": "49150712-ea8a-4b30-b22e-e9641363e264", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9fd7f667-770a-4348-a628-61640a5ccd56', 'INSERT', '{"uuid": "9fd7f667-770a-4348-a628-61640a5ccd56", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9b85488a-abd5-49da-8ce0-87bbe52773bb', 'INSERT', '{"uuid": "9b85488a-abd5-49da-8ce0-87bbe52773bb", "assumed": true, "ascendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "descendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '00672b57-05bd-45e2-ab65-523f72ba77e4', 'INSERT', '{"uuid": "00672b57-05bd-45e2-ab65-523f72ba77e4", "assumed": true, "ascendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '187da55b-2fac-48fc-8e7b-06c96dc51b36', 'INSERT', '{"uuid": "187da55b-2fac-48fc-8e7b-06c96dc51b36", "assumed": true, "ascendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '47c4ea06-d112-4bc9-addf-4b4a7b3ec197', 'INSERT', '{"uuid": "47c4ea06-d112-4bc9-addf-4b4a7b3ec197", "assumed": true, "ascendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '26877494-33c2-4a90-8119-bbad662b297b', 'INSERT', '{"uuid": "26877494-33c2-4a90-8119-bbad662b297b", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd47c44c5-62d6-4f60-bd35-6ea9fe11f3f5', 'INSERT', '{"uuid": "d47c44c5-62d6-4f60-bd35-6ea9fe11f3f5", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "grantedbyroleuuid": null, "grantedbytriggerof": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "contactuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '6263942d-84d3-40de-b460-04c52e2a7f36', 'INSERT', '{"uuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "serialid": 46, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0458c878-07f7-48cc-8cde-866110a379b2', 'INSERT', '{"uuid": "0458c878-07f7-48cc-8cde-866110a379b2", "roletype": "OWNER", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'cbbab505-7a2e-4cf4-9f53-607d9bb5eee9', 'INSERT', '{"op": "DELETE", "uuid": "cbbab505-7a2e-4cf4-9f53-607d9bb5eee9", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8d9b6859-7477-4bbc-8f11-a9ad0878f6d4', 'INSERT', '{"uuid": "8d9b6859-7477-4bbc-8f11-a9ad0878f6d4", "assumed": true, "ascendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "descendantuuid": "cbbab505-7a2e-4cf4-9f53-607d9bb5eee9", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7915bb74-3597-426e-9a05-bb8f945ad7d1', 'INSERT', '{"uuid": "7915bb74-3597-426e-9a05-bb8f945ad7d1", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1b97b693-b525-49ad-bc06-e562e13573d7', 'INSERT', '{"uuid": "1b97b693-b525-49ad-bc06-e562e13573d7", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "grantedbyroleuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9843689f-18c7-472f-833c-262d2348ae61', 'INSERT', '{"uuid": "9843689f-18c7-472f-833c-262d2348ae61", "roletype": "ADMIN", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '49bc5185-6d3b-469c-a604-88bbda2e4322', 'INSERT', '{"op": "UPDATE", "uuid": "49bc5185-6d3b-469c-a604-88bbda2e4322", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e39c3a7a-3b62-455c-9a96-024c736f93eb', 'INSERT', '{"uuid": "e39c3a7a-3b62-455c-9a96-024c736f93eb", "assumed": true, "ascendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "descendantuuid": "49bc5185-6d3b-469c-a604-88bbda2e4322", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e11c56ec-856a-46b2-ac1d-0746d6f511ea', 'INSERT', '{"uuid": "e11c56ec-856a-46b2-ac1d-0746d6f511ea", "assumed": true, "ascendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "descendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '133d043e-f9e7-462d-9519-1ae05a47a1be', 'INSERT', '{"uuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "roletype": "AGENT", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '32c40d56-59a2-45fd-b647-950e939389ff', 'INSERT', '{"uuid": "32c40d56-59a2-45fd-b647-950e939389ff", "assumed": true, "ascendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "descendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ac14c959-2f96-4fbd-9970-87a2b07dff95', 'INSERT', '{"uuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "roletype": "TENANT", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab', 'INSERT', '{"op": "SELECT", "uuid": "7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '04824e07-5d0a-44df-af3b-8a25802fe288', 'INSERT', '{"uuid": "04824e07-5d0a-44df-af3b-8a25802fe288", "assumed": true, "ascendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "descendantuuid": "7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4498be00-5303-4607-9ce7-87b1df6ae8d0', 'INSERT', '{"uuid": "4498be00-5303-4607-9ce7-87b1df6ae8d0", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4ab9311e-ca75-444f-b282-e744267f6cd3', 'INSERT', '{"uuid": "4ab9311e-ca75-444f-b282-e744267f6cd3", "assumed": true, "ascendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "descendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4e462082-d972-4b96-8c31-33d07c3355b1', 'INSERT', '{"uuid": "4e462082-d972-4b96-8c31-33d07c3355b1", "assumed": true, "ascendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '36fca910-37a9-4cb5-9287-80cba7fed641', 'INSERT', '{"uuid": "36fca910-37a9-4cb5-9287-80cba7fed641", "assumed": true, "ascendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e39a3cf3-8560-4231-9b88-7e260eb07ecf', 'INSERT', '{"uuid": "e39a3cf3-8560-4231-9b88-7e260eb07ecf", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'INSERT', '{"uuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "serialid": 48, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '65dfa65b-ea63-42b7-aa4c-e77148284235', 'INSERT', '{"uuid": "65dfa65b-ea63-42b7-aa4c-e77148284235", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "grantedbyroleuuid": null, "grantedbytriggerof": "6263942d-84d3-40de-b460-04c52e2a7f36"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b74a805f-9138-4dbd-abe3-5641fd1ea9e8', 'INSERT', '{"op": "INSERT", "uuid": "b74a805f-9138-4dbd-abe3-5641fd1ea9e8", "objectuuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9aeb47a4-88f9-4c25-a4bd-19f21e09c98e', 'INSERT', '{"uuid": "9aeb47a4-88f9-4c25-a4bd-19f21e09c98e", "assumed": true, "ascendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "descendantuuid": "b74a805f-9138-4dbd-abe3-5641fd1ea9e8", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '6263942d-84d3-40de-b460-04c52e2a7f36', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "contactuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'INSERT', '{"uuid": "f1d2c18d-4cb0-481e-a948-934324a74f61", "serialid": 47, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'INSERT', '{"uuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "roletype": "OWNER", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '75e9b840-5f72-4e2b-9698-80b49512e6dd', 'INSERT', '{"op": "DELETE", "uuid": "75e9b840-5f72-4e2b-9698-80b49512e6dd", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '40442094-1a61-4be5-8888-7f1a70ee5087', 'INSERT', '{"uuid": "40442094-1a61-4be5-8888-7f1a70ee5087", "assumed": true, "ascendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "descendantuuid": "75e9b840-5f72-4e2b-9698-80b49512e6dd", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5beca2c2-dfdf-42c6-86bb-91b2391d6799', 'INSERT', '{"uuid": "5beca2c2-dfdf-42c6-86bb-91b2391d6799", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a6f82830-aa20-49ca-88b5-3025a9bd8f46', 'INSERT', '{"uuid": "a6f82830-aa20-49ca-88b5-3025a9bd8f46", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "grantedbyroleuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'INSERT', '{"uuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "roletype": "ADMIN", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '90044e14-3a87-4791-b11d-e4ae2f6d845c', 'INSERT', '{"op": "UPDATE", "uuid": "90044e14-3a87-4791-b11d-e4ae2f6d845c", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e3561015-e031-49ee-ab18-6af24bec5543', 'INSERT', '{"uuid": "e3561015-e031-49ee-ab18-6af24bec5543", "assumed": true, "ascendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "descendantuuid": "90044e14-3a87-4791-b11d-e4ae2f6d845c", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd81ff8ac-d109-4df2-b3f2-4cdcaec71a4c', 'INSERT', '{"uuid": "d81ff8ac-d109-4df2-b3f2-4cdcaec71a4c", "assumed": true, "ascendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "descendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '003086d1-689f-41da-9ea2-e61c50dc6c10', 'INSERT', '{"uuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "roletype": "AGENT", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4cd81cdf-6151-47df-bd24-047550147e5c', 'INSERT', '{"uuid": "4cd81cdf-6151-47df-bd24-047550147e5c", "assumed": true, "ascendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "descendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'face87b5-b7b2-4525-b615-9c917e6f11c9', 'INSERT', '{"uuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "roletype": "TENANT", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b6a24ed9-c3ab-436f-b2e7-17af91dc29d2', 'INSERT', '{"op": "SELECT", "uuid": "b6a24ed9-c3ab-436f-b2e7-17af91dc29d2", "objectuuid": "f1d2c18d-4cb0-481e-a948-934324a74f61", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dbe3d343-f2a1-41f4-b670-3736a19fc580', 'INSERT', '{"uuid": "dbe3d343-f2a1-41f4-b670-3736a19fc580", "assumed": true, "ascendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "descendantuuid": "b6a24ed9-c3ab-436f-b2e7-17af91dc29d2", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bce4e726-f2d5-4e64-b5ca-8c1c90963d0c', 'INSERT', '{"uuid": "bce4e726-f2d5-4e64-b5ca-8c1c90963d0c", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b9fea06a-dc05-4989-ba33-752444800718', 'INSERT', '{"uuid": "b9fea06a-dc05-4989-ba33-752444800718", "assumed": true, "ascendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "descendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '61720382-f46a-422c-b7da-ae4d46941f4b', 'INSERT', '{"uuid": "61720382-f46a-422c-b7da-ae4d46941f4b", "assumed": true, "ascendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dec7c9b0-4202-4f6b-bd8a-34aa947e8348', 'INSERT', '{"uuid": "dec7c9b0-4202-4f6b-bd8a-34aa947e8348", "assumed": true, "ascendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dac8ac41-1636-4037-adff-d59766365d24', 'INSERT', '{"uuid": "dac8ac41-1636-4037-adff-d59766365d24", "assumed": true, "ascendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2db2c87d-abcd-45e4-b1ef-75c0e8545fe6', 'INSERT', '{"uuid": "2db2c87d-abcd-45e4-b1ef-75c0e8545fe6", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e6b144c4-26cd-4438-83d4-14d9f00e1e29', 'INSERT', '{"uuid": "e6b144c4-26cd-4438-83d4-14d9f00e1e29", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "grantedbyroleuuid": null, "grantedbytriggerof": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "f1d2c18d-4cb0-481e-a948-934324a74f61", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cff56822-3173-4489-ba4e-eeb10924cefd', 'INSERT', '{"uuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "roletype": "OWNER", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '50d5489c-914e-4432-9a0a-bb3607a0f4b2', 'INSERT', '{"op": "DELETE", "uuid": "50d5489c-914e-4432-9a0a-bb3607a0f4b2", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '156b6f2a-77ab-4bdb-bde5-0d043f38e69d', 'INSERT', '{"uuid": "156b6f2a-77ab-4bdb-bde5-0d043f38e69d", "assumed": true, "ascendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "descendantuuid": "50d5489c-914e-4432-9a0a-bb3607a0f4b2", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e24d8317-fef8-42ff-86fe-ab9ffc46d96a', 'INSERT', '{"uuid": "e24d8317-fef8-42ff-86fe-ab9ffc46d96a", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '93b617bf-c75a-4655-914f-23ab0367d9f7', 'INSERT', '{"uuid": "93b617bf-c75a-4655-914f-23ab0367d9f7", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "grantedbyroleuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', 'INSERT', '{"uuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "roletype": "ADMIN", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f0661cbd-56bc-4130-8b44-528cf5e693e2', 'INSERT', '{"op": "UPDATE", "uuid": "f0661cbd-56bc-4130-8b44-528cf5e693e2", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2f17bd23-c283-43e5-86c7-0a30466ccb85', 'INSERT', '{"uuid": "2f17bd23-c283-43e5-86c7-0a30466ccb85", "assumed": true, "ascendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "descendantuuid": "f0661cbd-56bc-4130-8b44-528cf5e693e2", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1ab2132-46c5-429d-aefd-2517a77d5c49', 'INSERT', '{"uuid": "a1ab2132-46c5-429d-aefd-2517a77d5c49", "assumed": true, "ascendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "descendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ece49845-4b04-434a-a12e-2e5ea1d2c241', 'INSERT', '{"uuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "roletype": "AGENT", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5f07530f-8d79-4a6b-b08a-47dd98c0cb67', 'INSERT', '{"uuid": "5f07530f-8d79-4a6b-b08a-47dd98c0cb67", "assumed": true, "ascendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "descendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3412d5e9-9e1e-470b-af39-015652349d4f', 'INSERT', '{"uuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "roletype": "TENANT", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8f5d8cbe-1763-492f-b918-7e8f197ae3d8', 'INSERT', '{"op": "SELECT", "uuid": "8f5d8cbe-1763-492f-b918-7e8f197ae3d8", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9a9cc803-22c2-4661-a417-1f0fa7b6a063', 'INSERT', '{"uuid": "9a9cc803-22c2-4661-a417-1f0fa7b6a063", "assumed": true, "ascendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "descendantuuid": "8f5d8cbe-1763-492f-b918-7e8f197ae3d8", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b3b358e5-53e4-471f-8c66-b779be21fc25', 'INSERT', '{"uuid": "b3b358e5-53e4-471f-8c66-b779be21fc25", "assumed": true, "ascendantuuid": "76b1b55f-cd51-4a0e-8c4f-003c6411c2e8", "descendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ecd32703-f1c0-49ee-8b80-e0020731ca03', 'INSERT', '{"uuid": "ecd32703-f1c0-49ee-8b80-e0020731ca03", "assumed": true, "ascendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "descendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '346012c6-67b0-4c51-9203-e5347640741e', 'INSERT', '{"uuid": "346012c6-67b0-4c51-9203-e5347640741e", "assumed": true, "ascendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "descendantuuid": "85d8e49d-9148-4431-a020-053fd4376574", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a9dcc184-4464-4937-b596-2e2b1d025912', 'INSERT', '{"uuid": "a9dcc184-4464-4937-b596-2e2b1d025912", "assumed": true, "ascendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a9f26cd9-51ab-4b27-b41f-bd6c5e4822d4', 'INSERT', '{"uuid": "a9f26cd9-51ab-4b27-b41f-bd6c5e4822d4", "assumed": true, "ascendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "descendantuuid": "6b61b520-c228-407a-9b99-47031cd7352d", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '48d02cf0-5ea6-464f-b751-17fa64a5a54f', 'INSERT', '{"uuid": "48d02cf0-5ea6-464f-b751-17fa64a5a54f", "assumed": true, "ascendantuuid": "ad60bd89-f1c5-4ca2-b880-5bbe60da3969", "descendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '90df33ed-fbe6-41b0-8adb-8eca368270c8', 'INSERT', '{"uuid": "90df33ed-fbe6-41b0-8adb-8eca368270c8", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "grantedbyroleuuid": null, "grantedbytriggerof": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a', 'INSERT', '{"op": "INSERT", "uuid": "5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a", "objectuuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '47897f33-fa65-46ff-9b84-fab8b9ca6140', 'INSERT', '{"uuid": "47897f33-fa65-46ff-9b84-fab8b9ca6140", "assumed": true, "ascendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "descendantuuid": "5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3", "contactuuid": "8f9e5a9a-d273-4b89-bfcf-b9c077e13d21"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'INSERT', '{"uuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722", "serialid": 49, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '692d194a-ce6c-4932-9a16-08fc5b853bbe', 'INSERT', '{"uuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "roletype": "OWNER", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7b4e7960-7014-4a64-a845-19cbb2ca301a', 'INSERT', '{"op": "DELETE", "uuid": "7b4e7960-7014-4a64-a845-19cbb2ca301a", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5645f188-49da-4e4f-a826-6e71239446a1', 'INSERT', '{"op": "UPDATE", "uuid": "5645f188-49da-4e4f-a826-6e71239446a1", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b8b83a92-de14-4824-9e56-a2f75e26175a', 'INSERT', '{"uuid": "b8b83a92-de14-4824-9e56-a2f75e26175a", "assumed": true, "ascendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "descendantuuid": "7b4e7960-7014-4a64-a845-19cbb2ca301a", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eb32de3b-5e91-4453-ac95-6c5ad3a5fefc', 'INSERT', '{"uuid": "eb32de3b-5e91-4453-ac95-6c5ad3a5fefc", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0925302c-cfb9-49e9-811a-9f80088135b8', 'INSERT', '{"uuid": "0925302c-cfb9-49e9-811a-9f80088135b8", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "grantedbyroleuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', 'INSERT', '{"uuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "roletype": "ADMIN", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '89664515-a29d-4f80-8446-47aaf8cf22fc', 'INSERT', '{"op": "UPDATE", "uuid": "89664515-a29d-4f80-8446-47aaf8cf22fc", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2b02eb9f-9775-4d12-9f26-aad736120c75', 'INSERT', '{"uuid": "2b02eb9f-9775-4d12-9f26-aad736120c75", "assumed": true, "ascendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "descendantuuid": "89664515-a29d-4f80-8446-47aaf8cf22fc", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0331a228-efcb-47aa-9f91-6f1c0e08ba94', 'INSERT', '{"uuid": "0331a228-efcb-47aa-9f91-6f1c0e08ba94", "assumed": true, "ascendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "descendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', 'INSERT', '{"uuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "roletype": "AGENT", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a25fc1af-0430-4f26-aa15-df82c54dd5ed', 'INSERT', '{"uuid": "a25fc1af-0430-4f26-aa15-df82c54dd5ed", "assumed": true, "ascendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "descendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', 'INSERT', '{"uuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "roletype": "TENANT", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c1ee5c53-b7a0-4e76-9d44-d32b96333bb2', 'INSERT', '{"op": "SELECT", "uuid": "c1ee5c53-b7a0-4e76-9d44-d32b96333bb2", "objectuuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '49c8a64b-4fe9-408c-b352-f61954142ef0', 'INSERT', '{"uuid": "49c8a64b-4fe9-408c-b352-f61954142ef0", "assumed": true, "ascendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "descendantuuid": "c1ee5c53-b7a0-4e76-9d44-d32b96333bb2", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '685955b5-30c0-4edf-b495-5e3b179f9391', 'INSERT', '{"uuid": "685955b5-30c0-4edf-b495-5e3b179f9391", "assumed": true, "ascendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "descendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd37f2149-f0d7-403c-9409-86dc2245a49b', 'INSERT', '{"uuid": "d37f2149-f0d7-403c-9409-86dc2245a49b", "assumed": true, "ascendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "descendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd5ba2ae3-4c1c-4834-97a5-aa04f6291d7d', 'INSERT', '{"uuid": "d5ba2ae3-4c1c-4834-97a5-aa04f6291d7d", "assumed": true, "ascendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "descendantuuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f2183b1e-0b22-49bf-9ab4-10b51c82518e', 'INSERT', '{"uuid": "f2183b1e-0b22-49bf-9ab4-10b51c82518e", "assumed": true, "ascendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5716eb6b-c3f2-4098-a223-cbf4f19285f8', 'INSERT', '{"uuid": "5716eb6b-c3f2-4098-a223-cbf4f19285f8", "assumed": true, "ascendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8466e839-ab3f-4fa0-950a-554baf9e5bf2', 'INSERT', '{"uuid": "8466e839-ab3f-4fa0-950a-554baf9e5bf2", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '54339656-ecfd-44e8-b518-6fcf6b50b324', 'INSERT', '{"uuid": "54339656-ecfd-44e8-b518-6fcf6b50b324", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "grantedbyroleuuid": null, "grantedbytriggerof": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "contactuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '92b842af-05fc-405d-b0db-7a667228c221', 'INSERT', '{"uuid": "92b842af-05fc-405d-b0db-7a667228c221", "serialid": 50, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '25aea726-1671-41d0-9264-5bb7c4972697', 'INSERT', '{"uuid": "25aea726-1671-41d0-9264-5bb7c4972697", "roletype": "OWNER", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'df00b91d-921f-4479-b9e4-e1732444508a', 'INSERT', '{"op": "DELETE", "uuid": "df00b91d-921f-4479-b9e4-e1732444508a", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dcfd39fd-2f6b-443f-93e8-ab6aa6670a44', 'INSERT', '{"uuid": "dcfd39fd-2f6b-443f-93e8-ab6aa6670a44", "assumed": true, "ascendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "descendantuuid": "df00b91d-921f-4479-b9e4-e1732444508a", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '326c8e62-f6e1-429f-9fad-eff95064a322', 'INSERT', '{"uuid": "326c8e62-f6e1-429f-9fad-eff95064a322", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '51a9b8eb-0f5a-4e29-882e-48075d3e4c12', 'INSERT', '{"uuid": "51a9b8eb-0f5a-4e29-882e-48075d3e4c12", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "grantedbyroleuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', 'INSERT', '{"uuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "roletype": "ADMIN", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'be409892-35e7-467a-89b3-90f719b8380d', 'INSERT', '{"uuid": "be409892-35e7-467a-89b3-90f719b8380d", "assumed": true, "ascendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "descendantuuid": "5645f188-49da-4e4f-a826-6e71239446a1", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '939a2967-48b8-4b98-820c-41d264ddb1a0', 'INSERT', '{"uuid": "939a2967-48b8-4b98-820c-41d264ddb1a0", "assumed": true, "ascendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "descendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', 'INSERT', '{"uuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "roletype": "AGENT", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bda1352e-6a31-498c-b6e2-c671ec9431ce', 'INSERT', '{"uuid": "bda1352e-6a31-498c-b6e2-c671ec9431ce", "assumed": true, "ascendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "descendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c15e0b81-002e-480e-93f8-93b06f87bbff', 'INSERT', '{"uuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "roletype": "TENANT", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '89111db0-bdec-4e14-b05a-a4b92b65299a', 'INSERT', '{"op": "SELECT", "uuid": "89111db0-bdec-4e14-b05a-a4b92b65299a", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '99990e8e-6ec6-4bc1-ab91-b7feac5d7a11', 'INSERT', '{"uuid": "99990e8e-6ec6-4bc1-ab91-b7feac5d7a11", "assumed": true, "ascendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "descendantuuid": "89111db0-bdec-4e14-b05a-a4b92b65299a", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0e4e435d-b2f2-4ea6-843b-dfc4503e744e', 'INSERT', '{"uuid": "0e4e435d-b2f2-4ea6-843b-dfc4503e744e", "assumed": true, "ascendantuuid": "7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a", "descendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cb7391d1-af88-441d-8a24-df26ccb5525d', 'INSERT', '{"uuid": "cb7391d1-af88-441d-8a24-df26ccb5525d", "assumed": true, "ascendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "descendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e6dac2c4-1fdb-43e7-9ef8-b09940bf893e', 'INSERT', '{"uuid": "e6dac2c4-1fdb-43e7-9ef8-b09940bf893e", "assumed": true, "ascendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "descendantuuid": "5abd1ae5-da0c-415b-bff7-ef07513e08aa", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1f4beef7-f7ef-411b-bc25-502ef9e0c80d', 'INSERT', '{"uuid": "1f4beef7-f7ef-411b-bc25-502ef9e0c80d", "assumed": true, "ascendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '02f5a272-7a29-4c27-901b-2200a929b659', 'INSERT', '{"uuid": "02f5a272-7a29-4c27-901b-2200a929b659", "assumed": true, "ascendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "descendantuuid": "c2d87277-0280-41c8-b0c1-3c431e7fc33d", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aa916da0-ddb9-467f-9d41-f48c204d693d', 'INSERT', '{"uuid": "aa916da0-ddb9-467f-9d41-f48c204d693d", "assumed": true, "ascendantuuid": "b20cc2e5-2836-47cf-913d-d5cb7aec6356", "descendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '081c149f-d44d-4e8d-9ee8-c1814b4f1eab', 'INSERT', '{"uuid": "081c149f-d44d-4e8d-9ee8-c1814b4f1eab", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "grantedbyroleuuid": null, "grantedbytriggerof": "92b842af-05fc-405d-b0db-7a667228c221"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '369f633f-ae6f-46de-b383-a4fb05f1656d', 'INSERT', '{"op": "INSERT", "uuid": "369f633f-ae6f-46de-b383-a4fb05f1656d", "objectuuid": "92b842af-05fc-405d-b0db-7a667228c221", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8c0aa2d8-da32-4ad0-943b-43fdb39772c9', 'INSERT', '{"uuid": "8c0aa2d8-da32-4ad0-943b-43fdb39772c9", "assumed": true, "ascendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "descendantuuid": "369f633f-ae6f-46de-b383-a4fb05f1656d", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '92b842af-05fc-405d-b0db-7a667228c221', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "92b842af-05fc-405d-b0db-7a667228c221", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "59f3fcd2-ff1a-4a23-86bb-4af58b7df404", "contactuuid": "aa9af033-e564-421c-b235-2dd7d5b96559"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'INSERT', '{"uuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56", "serialid": 51, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', 'INSERT', '{"uuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "roletype": "OWNER", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3c30d78b-cca1-46a4-92b0-141a5a49d2bb', 'INSERT', '{"op": "DELETE", "uuid": "3c30d78b-cca1-46a4-92b0-141a5a49d2bb", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a485e64a-93a9-4c8d-8e2d-d168a6b369de', 'INSERT', '{"uuid": "a485e64a-93a9-4c8d-8e2d-d168a6b369de", "assumed": true, "ascendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "descendantuuid": "3c30d78b-cca1-46a4-92b0-141a5a49d2bb", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7c303235-eded-4247-be4b-48022beac96b', 'INSERT', '{"uuid": "7c303235-eded-4247-be4b-48022beac96b", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '27e8f08e-02f0-4d2f-8887-e9eea815518a', 'INSERT', '{"uuid": "27e8f08e-02f0-4d2f-8887-e9eea815518a", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "grantedbyroleuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a115bf5c-94f4-46b0-8506-e41ead116a8d', 'INSERT', '{"uuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "roletype": "ADMIN", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a12fea75-a5c5-4b6b-b54a-dbffb84d4d96', 'INSERT', '{"op": "UPDATE", "uuid": "a12fea75-a5c5-4b6b-b54a-dbffb84d4d96", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a2b9080-0a66-4986-b2b2-eaf72be6aa46', 'INSERT', '{"uuid": "0a2b9080-0a66-4986-b2b2-eaf72be6aa46", "assumed": true, "ascendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "descendantuuid": "a12fea75-a5c5-4b6b-b54a-dbffb84d4d96", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '095d2930-38c0-4a02-97ec-84e052f1ff3a', 'INSERT', '{"uuid": "095d2930-38c0-4a02-97ec-84e052f1ff3a", "assumed": true, "ascendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "descendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', 'INSERT', '{"uuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "roletype": "AGENT", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6796598f-b003-47b7-aa29-0c69004823df', 'INSERT', '{"uuid": "6796598f-b003-47b7-aa29-0c69004823df", "assumed": true, "ascendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "descendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', 'INSERT', '{"uuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "roletype": "TENANT", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e89f8e4b-7387-45e3-8241-86cd24d48fe2', 'INSERT', '{"op": "SELECT", "uuid": "e89f8e4b-7387-45e3-8241-86cd24d48fe2", "objectuuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c07debc4-37e0-40cd-a666-258b23e3cf3f', 'INSERT', '{"uuid": "c07debc4-37e0-40cd-a666-258b23e3cf3f", "assumed": true, "ascendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "descendantuuid": "e89f8e4b-7387-45e3-8241-86cd24d48fe2", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6bcd62a1-e4e0-4dea-ae28-08d9bac75862', 'INSERT', '{"uuid": "6bcd62a1-e4e0-4dea-ae28-08d9bac75862", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '912246a6-c7ba-4413-9b4d-723217ecd5e1', 'INSERT', '{"uuid": "912246a6-c7ba-4413-9b4d-723217ecd5e1", "assumed": true, "ascendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "descendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '28e5a0a3-2291-4e03-b62a-bfb8713a827b', 'INSERT', '{"uuid": "28e5a0a3-2291-4e03-b62a-bfb8713a827b", "assumed": true, "ascendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "descendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3761b240-449c-4cda-98de-bd20b2e6ad4f', 'INSERT', '{"uuid": "3761b240-449c-4cda-98de-bd20b2e6ad4f", "assumed": true, "ascendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f7209163-b630-444e-9835-2281456e5909', 'INSERT', '{"uuid": "f7209163-b630-444e-9835-2281456e5909", "assumed": true, "ascendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "descendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '942718de-df0f-4b81-bec8-96a0a3db8be4', 'INSERT', '{"uuid": "942718de-df0f-4b81-bec8-96a0a3db8be4", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '320cb7ed-0442-41d3-b54e-96728496f1d0', 'INSERT', '{"uuid": "320cb7ed-0442-41d3-b54e-96728496f1d0", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "grantedbyroleuuid": null, "grantedbytriggerof": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "contactuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'INSERT', '{"uuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "serialid": 52, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', 'INSERT', '{"uuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "roletype": "OWNER", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a17cbf35-8afe-4032-a911-3347a0e952a3', 'INSERT', '{"op": "DELETE", "uuid": "a17cbf35-8afe-4032-a911-3347a0e952a3", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '058c79b5-ec57-4eee-bcdf-bc3c1048da1a', 'INSERT', '{"uuid": "058c79b5-ec57-4eee-bcdf-bc3c1048da1a", "assumed": true, "ascendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "descendantuuid": "a17cbf35-8afe-4032-a911-3347a0e952a3", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2eb62461-46f3-4dc6-ac89-f9eef6c3edc2', 'INSERT', '{"uuid": "2eb62461-46f3-4dc6-ac89-f9eef6c3edc2", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '59bd1b2f-c7bd-4fcc-b32b-4704521c7950', 'INSERT', '{"uuid": "59bd1b2f-c7bd-4fcc-b32b-4704521c7950", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "grantedbyroleuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '50593216-70ed-4099-8e53-51f5f95fb14e', 'INSERT', '{"uuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "roletype": "ADMIN", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '03cdd47d-7cd0-4724-a9d8-68b593171031', 'INSERT', '{"op": "UPDATE", "uuid": "03cdd47d-7cd0-4724-a9d8-68b593171031", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b852c762-5f60-4dfc-93d7-ef28ebe44425', 'INSERT', '{"uuid": "b852c762-5f60-4dfc-93d7-ef28ebe44425", "assumed": true, "ascendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "descendantuuid": "03cdd47d-7cd0-4724-a9d8-68b593171031", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a3932edb-bf29-4912-86d0-620493a2623d', 'INSERT', '{"uuid": "a3932edb-bf29-4912-86d0-620493a2623d", "assumed": true, "ascendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "descendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6c5bd6d0-2679-4b89-a125-57e510f4027d', 'INSERT', '{"uuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "roletype": "AGENT", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd3132964-b648-4ec6-bd13-d60f75e066db', 'INSERT', '{"uuid": "d3132964-b648-4ec6-bd13-d60f75e066db", "assumed": true, "ascendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "descendantuuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'be395dff-ff4b-40ae-a537-5c84a2d3a783', 'INSERT', '{"uuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "roletype": "TENANT", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '474dabcd-176b-4283-ad5e-6d7f89e3068c', 'INSERT', '{"op": "SELECT", "uuid": "474dabcd-176b-4283-ad5e-6d7f89e3068c", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', 'INSERT', '{"uuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "roletype": "OWNER", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '77eddc5d-bade-415c-baf3-7519397beb09', 'INSERT', '{"uuid": "77eddc5d-bade-415c-baf3-7519397beb09", "assumed": true, "ascendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "descendantuuid": "474dabcd-176b-4283-ad5e-6d7f89e3068c", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2d438845-8048-4622-9364-79a1bbd92e75', 'INSERT', '{"uuid": "2d438845-8048-4622-9364-79a1bbd92e75", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a5cf1d8a-8995-46e3-bca0-9b526cfbac7d', 'INSERT', '{"uuid": "a5cf1d8a-8995-46e3-bca0-9b526cfbac7d", "assumed": true, "ascendantuuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "descendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '68adb82f-b21a-4c65-b131-92834b1b22b5', 'INSERT', '{"uuid": "68adb82f-b21a-4c65-b131-92834b1b22b5", "assumed": true, "ascendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "descendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ed0ad884-ea57-4ed3-90e3-b5ec8d4a4a92', 'INSERT', '{"uuid": "ed0ad884-ea57-4ed3-90e3-b5ec8d4a4a92", "assumed": true, "ascendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "descendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f71935e4-dc55-4722-89ef-cbbfc827dcf4', 'INSERT', '{"uuid": "f71935e4-dc55-4722-89ef-cbbfc827dcf4", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8bea7cc9-d0f6-4741-9f34-e91ed13631f0', 'INSERT', '{"uuid": "8bea7cc9-d0f6-4741-9f34-e91ed13631f0", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "grantedbyroleuuid": null, "grantedbytriggerof": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d', 'INSERT', '{"op": "INSERT", "uuid": "8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d", "objectuuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1b4783e-0bd9-4b4d-90f8-f54374c6370d', 'INSERT', '{"uuid": "a1b4783e-0bd9-4b4d-90f8-f54374c6370d", "assumed": true, "ascendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "descendantuuid": "8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "version": 0, "anchoruuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "holderuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "contactuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'INSERT', '{"uuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058", "serialid": 53, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c753ef5d-0c69-4807-b43a-4d3e1d500389', 'INSERT', '{"uuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "roletype": "OWNER", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f8324be2-d4c6-411d-8589-889fa46d8ef8', 'INSERT', '{"op": "DELETE", "uuid": "f8324be2-d4c6-411d-8589-889fa46d8ef8", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '97e50808-e62a-47cc-a366-4fd3cccc51fb', 'INSERT', '{"uuid": "97e50808-e62a-47cc-a366-4fd3cccc51fb", "assumed": true, "ascendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "descendantuuid": "f8324be2-d4c6-411d-8589-889fa46d8ef8", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3f143ed6-6a74-40dd-9f9a-2c00e40403ed', 'INSERT', '{"uuid": "3f143ed6-6a74-40dd-9f9a-2c00e40403ed", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aecff356-9ac7-4b19-9469-c2167c20ed48', 'INSERT', '{"uuid": "aecff356-9ac7-4b19-9469-c2167c20ed48", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "grantedbyroleuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'INSERT', '{"uuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "roletype": "ADMIN", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c754a646-c6c7-4ebc-be45-2edcbd6ba501', 'INSERT', '{"op": "UPDATE", "uuid": "c754a646-c6c7-4ebc-be45-2edcbd6ba501", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a541d1c-2075-4322-a5d5-9a4750e8bd99', 'INSERT', '{"uuid": "0a541d1c-2075-4322-a5d5-9a4750e8bd99", "assumed": true, "ascendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "descendantuuid": "c754a646-c6c7-4ebc-be45-2edcbd6ba501", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '27ac92dd-00bf-4f48-b055-2427e813102b', 'INSERT', '{"uuid": "27ac92dd-00bf-4f48-b055-2427e813102b", "assumed": true, "ascendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "descendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c7434ab2-1e19-4777-a38e-14330f4a02a7', 'INSERT', '{"uuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "roletype": "AGENT", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'de68e708-ee2c-483a-8198-de0414d2bfb2', 'INSERT', '{"uuid": "de68e708-ee2c-483a-8198-de0414d2bfb2", "assumed": true, "ascendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "descendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', 'INSERT', '{"uuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "roletype": "TENANT", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2a12b073-dec8-4414-8f79-90d2e54bd7c3', 'INSERT', '{"op": "SELECT", "uuid": "2a12b073-dec8-4414-8f79-90d2e54bd7c3", "objectuuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3094c056-2182-45ad-b328-513a50f7862c', 'INSERT', '{"uuid": "3094c056-2182-45ad-b328-513a50f7862c", "assumed": true, "ascendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "descendantuuid": "2a12b073-dec8-4414-8f79-90d2e54bd7c3", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '60e9d6f3-66bd-4b22-b754-900fe064cc36', 'INSERT', '{"uuid": "60e9d6f3-66bd-4b22-b754-900fe064cc36", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2531a3f6-7533-4a0b-90a9-921c0ed21450', 'INSERT', '{"uuid": "2531a3f6-7533-4a0b-90a9-921c0ed21450", "assumed": true, "ascendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "descendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '42a54d68-d2e2-4d67-aa21-4bbc81a24d28', 'INSERT', '{"uuid": "42a54d68-d2e2-4d67-aa21-4bbc81a24d28", "assumed": true, "ascendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "descendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6ef7a46d-14e8-404f-a193-b7a66fb179f0', 'INSERT', '{"uuid": "6ef7a46d-14e8-404f-a193-b7a66fb179f0", "assumed": true, "ascendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dd4189ae-0145-45a3-ac6b-f77cd5706133', 'INSERT', '{"uuid": "dd4189ae-0145-45a3-ac6b-f77cd5706133", "assumed": true, "ascendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "descendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '33affd96-d666-4e75-ba4c-42b8d53df32f', 'INSERT', '{"uuid": "33affd96-d666-4e75-ba4c-42b8d53df32f", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '12306ffe-1082-4c7e-b676-50e03bdcf37f', 'INSERT', '{"uuid": "12306ffe-1082-4c7e-b676-50e03bdcf37f", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "grantedbyroleuuid": null, "grantedbytriggerof": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "d616957a-e628-498e-b230-be25244d4e30", "contactuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '3c0abfbb-0006-426a-903f-6f435e03276e', 'INSERT', '{"uuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "serialid": 54, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6a17b24d-e8b3-4659-b391-b1f72ef80029', 'INSERT', '{"uuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "roletype": "OWNER", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '87a9fc9a-d148-4558-92d6-4e48a7293edb', 'INSERT', '{"op": "DELETE", "uuid": "87a9fc9a-d148-4558-92d6-4e48a7293edb", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '808fdc60-c60d-488e-9620-184d7c88644a', 'INSERT', '{"uuid": "808fdc60-c60d-488e-9620-184d7c88644a", "assumed": true, "ascendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "descendantuuid": "87a9fc9a-d148-4558-92d6-4e48a7293edb", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fb1e07d1-19fd-423b-a2a2-5dd2521f49d1', 'INSERT', '{"uuid": "fb1e07d1-19fd-423b-a2a2-5dd2521f49d1", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cfdbe2ed-bb0e-4d23-b3de-6cb87d3e9ec5', 'INSERT', '{"uuid": "cfdbe2ed-bb0e-4d23-b3de-6cb87d3e9ec5", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "grantedbyroleuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '79bfede0-cffe-46c4-b27c-0e40846e2447', 'INSERT', '{"uuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "roletype": "ADMIN", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b088226d-f831-4b99-8345-2983c0de543f', 'INSERT', '{"op": "UPDATE", "uuid": "b088226d-f831-4b99-8345-2983c0de543f", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2aefb134-064d-4777-86cb-62484d761b00', 'INSERT', '{"uuid": "2aefb134-064d-4777-86cb-62484d761b00", "assumed": true, "ascendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "descendantuuid": "b088226d-f831-4b99-8345-2983c0de543f", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd0250109-f027-4463-a6a5-f79e509d0605', 'INSERT', '{"uuid": "d0250109-f027-4463-a6a5-f79e509d0605", "assumed": true, "ascendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "descendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2243d1b8-20ff-4556-8185-69dedd3fce8f', 'INSERT', '{"uuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "roletype": "AGENT", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2fbb7a91-bbe4-4e5a-b520-e59afd970a0e', 'INSERT', '{"uuid": "2fbb7a91-bbe4-4e5a-b520-e59afd970a0e", "assumed": true, "ascendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "descendantuuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '4f843b40-95b0-4bfe-af06-2fc65df2ee56', 'INSERT', '{"uuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "roletype": "TENANT", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2e344e61-46bb-4578-be4f-b8906472ebfd', 'INSERT', '{"op": "SELECT", "uuid": "2e344e61-46bb-4578-be4f-b8906472ebfd", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd358addc-b949-4682-9633-4ca72f739662', 'INSERT', '{"uuid": "d358addc-b949-4682-9633-4ca72f739662", "assumed": true, "ascendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "descendantuuid": "2e344e61-46bb-4578-be4f-b8906472ebfd", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8f950684-27c8-40bb-a377-7f74a6b9a5c5', 'INSERT', '{"uuid": "8f950684-27c8-40bb-a377-7f74a6b9a5c5", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '69b779d7-72e8-48cd-96e9-d959db8ceb1f', 'INSERT', '{"uuid": "69b779d7-72e8-48cd-96e9-d959db8ceb1f", "assumed": true, "ascendantuuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "descendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fc048e2a-fe92-48e7-8668-e7589ad42cdb', 'INSERT', '{"uuid": "fc048e2a-fe92-48e7-8668-e7589ad42cdb", "assumed": true, "ascendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "descendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b0c00580-04e7-4e9a-8c3e-fce24265d137', 'INSERT', '{"uuid": "b0c00580-04e7-4e9a-8c3e-fce24265d137", "assumed": true, "ascendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "descendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '152d0258-ec5f-4fbf-affc-432a3ea85d2a', 'INSERT', '{"uuid": "152d0258-ec5f-4fbf-affc-432a3ea85d2a", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e51decc2-efdb-4e87-b33d-d8a5f640d8a2', 'INSERT', '{"op": "DELETE", "uuid": "e51decc2-efdb-4e87-b33d-d8a5f640d8a2", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9bfa9381-5952-4044-8b3a-868eb99ca992', 'INSERT', '{"uuid": "9bfa9381-5952-4044-8b3a-868eb99ca992", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "grantedbyroleuuid": null, "grantedbytriggerof": "3c0abfbb-0006-426a-903f-6f435e03276e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e1a47825-87b7-4108-9f38-ab5f0238f3f7', 'INSERT', '{"op": "INSERT", "uuid": "e1a47825-87b7-4108-9f38-ab5f0238f3f7", "objectuuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "optablename": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '70451390-a550-4b5f-8b9e-8a04005de165', 'INSERT', '{"uuid": "70451390-a550-4b5f-8b9e-8a04005de165", "assumed": true, "ascendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "descendantuuid": "e1a47825-87b7-4108-9f38-ab5f0238f3f7", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '3c0abfbb-0006-426a-903f-6f435e03276e', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "version": 0, "anchoruuid": "d616957a-e628-498e-b230-be25244d4e30", "holderuuid": "d616957a-e628-498e-b230-be25244d4e30", "contactuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'INSERT', '{"uuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2", "serialid": 55, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f2ab3bc0-b751-4564-8161-779ed29b1777', 'INSERT', '{"uuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "roletype": "OWNER", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd7b02d95-b66d-4ccd-87aa-9fafd3a1971f', 'INSERT', '{"op": "DELETE", "uuid": "d7b02d95-b66d-4ccd-87aa-9fafd3a1971f", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7f9539e6-842f-47f2-8910-27cb4867f5bd', 'INSERT', '{"uuid": "7f9539e6-842f-47f2-8910-27cb4867f5bd", "assumed": true, "ascendantuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "descendantuuid": "d7b02d95-b66d-4ccd-87aa-9fafd3a1971f", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2011a4b5-5ba5-47b9-a98d-ce96ed7cd794', 'INSERT', '{"uuid": "2011a4b5-5ba5-47b9-a98d-ce96ed7cd794", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f1ba61fd-a8ea-4f37-9397-ca57484c0056', 'INSERT', '{"uuid": "f1ba61fd-a8ea-4f37-9397-ca57484c0056", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "grantedbyroleuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '93f2adce-e4f2-4f16-ae97-3763f6384d3d', 'INSERT', '{"uuid": "93f2adce-e4f2-4f16-ae97-3763f6384d3d", "roletype": "ADMIN", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b17548d7-be60-485c-8a6c-be5f30151f86', 'INSERT', '{"op": "UPDATE", "uuid": "b17548d7-be60-485c-8a6c-be5f30151f86", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5bb4ea0b-d680-49f3-aefe-6111aad5c7a1', 'INSERT', '{"uuid": "5bb4ea0b-d680-49f3-aefe-6111aad5c7a1", "assumed": true, "ascendantuuid": "93f2adce-e4f2-4f16-ae97-3763f6384d3d", "descendantuuid": "b17548d7-be60-485c-8a6c-be5f30151f86", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '13f25f35-812a-4e30-9d3d-61e708da4626', 'INSERT', '{"uuid": "13f25f35-812a-4e30-9d3d-61e708da4626", "assumed": true, "ascendantuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "descendantuuid": "93f2adce-e4f2-4f16-ae97-3763f6384d3d", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '63240dc7-30b8-4562-8648-d84689be5460', 'INSERT', '{"uuid": "63240dc7-30b8-4562-8648-d84689be5460", "roletype": "AGENT", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '912fcb9d-10d5-497b-8191-43ad7a188f13', 'INSERT', '{"uuid": "912fcb9d-10d5-497b-8191-43ad7a188f13", "assumed": true, "ascendantuuid": "93f2adce-e4f2-4f16-ae97-3763f6384d3d", "descendantuuid": "63240dc7-30b8-4562-8648-d84689be5460", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2a7ce36c-2e39-4286-ade4-d3df16838700', 'INSERT', '{"uuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "roletype": "TENANT", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362', 'INSERT', '{"op": "SELECT", "uuid": "a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362", "objectuuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '041979b3-ccce-4f35-88fe-c09ea8d50223', 'INSERT', '{"uuid": "041979b3-ccce-4f35-88fe-c09ea8d50223", "assumed": true, "ascendantuuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "descendantuuid": "a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4bb86e32-5bb9-4673-a1db-b5615de35e79', 'INSERT', '{"uuid": "4bb86e32-5bb9-4673-a1db-b5615de35e79", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '14f8082c-8b69-4620-a903-93c02446d3dc', 'INSERT', '{"uuid": "14f8082c-8b69-4620-a903-93c02446d3dc", "assumed": true, "ascendantuuid": "63240dc7-30b8-4562-8648-d84689be5460", "descendantuuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '94fa702e-0fad-4e34-b0c6-d81193c61daf', 'INSERT', '{"uuid": "94fa702e-0fad-4e34-b0c6-d81193c61daf", "assumed": true, "ascendantuuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "descendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c245bbef-554b-42d9-a92f-8f9943a4b461', 'INSERT', '{"uuid": "c245bbef-554b-42d9-a92f-8f9943a4b461", "assumed": true, "ascendantuuid": "2a7ce36c-2e39-4286-ade4-d3df16838700", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1120eef-6792-4d43-9f06-231435312ddd', 'INSERT', '{"uuid": "a1120eef-6792-4d43-9f06-231435312ddd", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "63240dc7-30b8-4562-8648-d84689be5460", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '62b7ea8c-17af-4fb1-8189-652f42334a6b', 'INSERT', '{"uuid": "62b7ea8c-17af-4fb1-8189-652f42334a6b", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "f2ab3bc0-b751-4564-8161-779ed29b1777", "grantedbyroleuuid": null, "grantedbytriggerof": "76c70bb8-38cc-404e-ae2b-710f94e708a2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "76c70bb8-38cc-404e-ae2b-710f94e708a2", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "contactuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'INSERT', '{"uuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba", "serialid": 56, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9692a213-62d4-42b7-b261-05cb280cf6e8', 'INSERT', '{"uuid": "9692a213-62d4-42b7-b261-05cb280cf6e8", "assumed": true, "ascendantuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "descendantuuid": "e51decc2-efdb-4e87-b33d-d8a5f640d8a2", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e1663122-76d5-46bf-9324-9b08fd2ad118', 'INSERT', '{"uuid": "e1663122-76d5-46bf-9324-9b08fd2ad118", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f8e553bb-5f07-422b-85a4-a7c40084dafc', 'INSERT', '{"uuid": "f8e553bb-5f07-422b-85a4-a7c40084dafc", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "grantedbyroleuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fd65d7c5-416f-46f9-b01e-218f58575f54', 'INSERT', '{"uuid": "fd65d7c5-416f-46f9-b01e-218f58575f54", "roletype": "ADMIN", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc', 'INSERT', '{"op": "UPDATE", "uuid": "c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '42bae39b-cfb1-490f-a2b4-61a50339f970', 'INSERT', '{"uuid": "42bae39b-cfb1-490f-a2b4-61a50339f970", "assumed": true, "ascendantuuid": "fd65d7c5-416f-46f9-b01e-218f58575f54", "descendantuuid": "c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3b0dc299-17f0-4cf3-a946-57823f3bc7d8', 'INSERT', '{"uuid": "3b0dc299-17f0-4cf3-a946-57823f3bc7d8", "assumed": true, "ascendantuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "descendantuuid": "fd65d7c5-416f-46f9-b01e-218f58575f54", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '39643e22-f10f-43c4-b6a2-dff5e6fce870', 'INSERT', '{"uuid": "39643e22-f10f-43c4-b6a2-dff5e6fce870", "roletype": "AGENT", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2e941524-44fb-419f-97ac-2861c7a90ae0', 'INSERT', '{"uuid": "2e941524-44fb-419f-97ac-2861c7a90ae0", "assumed": true, "ascendantuuid": "fd65d7c5-416f-46f9-b01e-218f58575f54", "descendantuuid": "39643e22-f10f-43c4-b6a2-dff5e6fce870", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', 'INSERT', '{"uuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "roletype": "TENANT", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7573789d-0551-4e43-9909-b8f9687bfc96', 'INSERT', '{"op": "SELECT", "uuid": "7573789d-0551-4e43-9909-b8f9687bfc96", "objectuuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4d7dfccb-6c5e-4a5f-86f3-b5737bfdb923', 'INSERT', '{"uuid": "4d7dfccb-6c5e-4a5f-86f3-b5737bfdb923", "assumed": true, "ascendantuuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "descendantuuid": "7573789d-0551-4e43-9909-b8f9687bfc96", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9befabee-ca2c-4bef-81c2-6dc02ef4609c', 'INSERT', '{"uuid": "9befabee-ca2c-4bef-81c2-6dc02ef4609c", "assumed": true, "ascendantuuid": "d3f6b0be-2fc2-4b3b-98d8-e72db656be65", "descendantuuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '94514e33-07f2-4c10-ad5a-c2e871b6740c', 'INSERT', '{"uuid": "94514e33-07f2-4c10-ad5a-c2e871b6740c", "assumed": true, "ascendantuuid": "39643e22-f10f-43c4-b6a2-dff5e6fce870", "descendantuuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a9dc1e39-858e-4409-899e-0525ee426fd4', 'INSERT', '{"uuid": "a9dc1e39-858e-4409-899e-0525ee426fd4", "assumed": true, "ascendantuuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "descendantuuid": "644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '71fc6250-04c0-4b56-97ed-36961fb97c92', 'INSERT', '{"uuid": "71fc6250-04c0-4b56-97ed-36961fb97c92", "assumed": true, "ascendantuuid": "ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f", "descendantuuid": "1ab576b5-1092-44bc-81f2-5f21f24810ee", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e5d851a7-29a5-44de-a2b7-d377be56a1c0', 'INSERT', '{"uuid": "e5d851a7-29a5-44de-a2b7-d377be56a1c0", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "39643e22-f10f-43c4-b6a2-dff5e6fce870", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1d690d97-6057-4667-8949-3dd43407e2f4', 'INSERT', '{"uuid": "1d690d97-6057-4667-8949-3dd43407e2f4", "assumed": true, "ascendantuuid": "29338455-e154-4447-9c36-9eb49cd398bd", "descendantuuid": "eafdf04b-58f7-46a4-aca7-4beba0fd977a", "grantedbyroleuuid": null, "grantedbytriggerof": "6ff8b863-15dd-4646-96bc-fdec9d271aba"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "6ff8b863-15dd-4646-96bc-fdec9d271aba", "version": 0, "anchoruuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "holderuuid": "ed1ea73e-5097-42c1-ba31-fe11480f3089", "contactuuid": "441d53f1-af50-4e73-9b53-48468700d257"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'INSERT', '{"uuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77", "serialid": 57, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '520a7251-6e8c-4344-9103-3dcd1445235d', 'INSERT', '{"uuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "roletype": "OWNER", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5098f6b2-1557-447c-bb45-ca0f6f191a82', 'INSERT', '{"op": "DELETE", "uuid": "5098f6b2-1557-447c-bb45-ca0f6f191a82", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c1039372-cd01-4698-b533-c4acee5678bb', 'INSERT', '{"uuid": "c1039372-cd01-4698-b533-c4acee5678bb", "assumed": true, "ascendantuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "descendantuuid": "5098f6b2-1557-447c-bb45-ca0f6f191a82", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '85dd0fb8-b18d-4601-bc2c-122e192468af', 'INSERT', '{"uuid": "85dd0fb8-b18d-4601-bc2c-122e192468af", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4cba2ae4-c499-4503-8145-fb2b480cb8a7', 'INSERT', '{"uuid": "4cba2ae4-c499-4503-8145-fb2b480cb8a7", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "grantedbyroleuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '63aa3fef-05bb-4217-9c0c-3b71d2567a8e', 'INSERT', '{"uuid": "63aa3fef-05bb-4217-9c0c-3b71d2567a8e", "roletype": "ADMIN", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '927e1abe-a622-4cc7-838f-2b36281e2bab', 'INSERT', '{"op": "UPDATE", "uuid": "927e1abe-a622-4cc7-838f-2b36281e2bab", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '60bf5ce5-39c5-4b53-9cad-7ed65460e0c2', 'INSERT', '{"uuid": "60bf5ce5-39c5-4b53-9cad-7ed65460e0c2", "assumed": true, "ascendantuuid": "63aa3fef-05bb-4217-9c0c-3b71d2567a8e", "descendantuuid": "927e1abe-a622-4cc7-838f-2b36281e2bab", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '533fe4cb-bf34-43f3-bc02-64022cd4ee96', 'INSERT', '{"uuid": "533fe4cb-bf34-43f3-bc02-64022cd4ee96", "assumed": true, "ascendantuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "descendantuuid": "63aa3fef-05bb-4217-9c0c-3b71d2567a8e", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '861927b0-a03c-4d7d-9dfc-e5248240e9ef', 'INSERT', '{"uuid": "861927b0-a03c-4d7d-9dfc-e5248240e9ef", "roletype": "AGENT", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1ae0232e-055e-4833-ba10-8b0a3eaf3596', 'INSERT', '{"uuid": "1ae0232e-055e-4833-ba10-8b0a3eaf3596", "assumed": true, "ascendantuuid": "63aa3fef-05bb-4217-9c0c-3b71d2567a8e", "descendantuuid": "861927b0-a03c-4d7d-9dfc-e5248240e9ef", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', 'INSERT', '{"uuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "roletype": "TENANT", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '6533454f-8b7d-4bcd-a7f2-5f9173220dc4', 'INSERT', '{"op": "SELECT", "uuid": "6533454f-8b7d-4bcd-a7f2-5f9173220dc4", "objectuuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd22f0873-cff9-449b-9ffe-a38182a69e7d', 'INSERT', '{"uuid": "d22f0873-cff9-449b-9ffe-a38182a69e7d", "assumed": true, "ascendantuuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "descendantuuid": "6533454f-8b7d-4bcd-a7f2-5f9173220dc4", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0cdf1b50-d0aa-47b3-ad6e-331e0955fad7', 'INSERT', '{"uuid": "0cdf1b50-d0aa-47b3-ad6e-331e0955fad7", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd8be7ae7-e432-4f71-a418-8af953e69cea', 'INSERT', '{"uuid": "d8be7ae7-e432-4f71-a418-8af953e69cea", "assumed": true, "ascendantuuid": "861927b0-a03c-4d7d-9dfc-e5248240e9ef", "descendantuuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1c3840ef-c378-42fd-ba39-55c8c50a6172', 'INSERT', '{"uuid": "1c3840ef-c378-42fd-ba39-55c8c50a6172", "assumed": true, "ascendantuuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cd3ec818-fd2e-4766-8acb-13b05ae673f2', 'INSERT', '{"uuid": "cd3ec818-fd2e-4766-8acb-13b05ae673f2", "assumed": true, "ascendantuuid": "c76214e6-d6c0-4fec-a919-3f0f579e65d1", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b0839b4-514c-4253-b536-967ca8e7aec9', 'INSERT', '{"uuid": "5b0839b4-514c-4253-b536-967ca8e7aec9", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "861927b0-a03c-4d7d-9dfc-e5248240e9ef", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '82c7c4ed-de70-422c-9a0d-dbd482c0a31f', 'INSERT', '{"uuid": "82c7c4ed-de70-422c-9a0d-dbd482c0a31f", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "520a7251-6e8c-4344-9103-3dcd1445235d", "grantedbyroleuuid": null, "grantedbytriggerof": "8c9e386f-d331-4e54-8d7d-ab768a575c77"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "8c9e386f-d331-4e54-8d7d-ab768a575c77", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'INSERT', '{"uuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b", "serialid": 58, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b392990f-d44f-4754-8059-f5fa9114b643', 'INSERT', '{"uuid": "b392990f-d44f-4754-8059-f5fa9114b643", "roletype": "OWNER", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2cb19228-dfd0-42b2-bf8d-1ce2ccf77067', 'INSERT', '{"op": "DELETE", "uuid": "2cb19228-dfd0-42b2-bf8d-1ce2ccf77067", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e2eb38ae-7861-4727-b15e-7b6ae2e5688a', 'INSERT', '{"uuid": "e2eb38ae-7861-4727-b15e-7b6ae2e5688a", "assumed": true, "ascendantuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "descendantuuid": "2cb19228-dfd0-42b2-bf8d-1ce2ccf77067", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9b455908-ff2b-4cb4-abc2-710fb94b4fb5', 'INSERT', '{"uuid": "9b455908-ff2b-4cb4-abc2-710fb94b4fb5", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0aabd4e0-b7e6-4d91-9292-eef1b8504884', 'INSERT', '{"uuid": "0aabd4e0-b7e6-4d91-9292-eef1b8504884", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "grantedbyroleuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6eba0739-280d-448d-9837-a68d57138524', 'INSERT', '{"uuid": "6eba0739-280d-448d-9837-a68d57138524", "roletype": "ADMIN", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'fea082ef-9069-4c01-adb7-073fc1f46bbc', 'INSERT', '{"op": "UPDATE", "uuid": "fea082ef-9069-4c01-adb7-073fc1f46bbc", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ba5e97ab-02fe-4870-92d2-34398cecabe6', 'INSERT', '{"uuid": "ba5e97ab-02fe-4870-92d2-34398cecabe6", "assumed": true, "ascendantuuid": "6eba0739-280d-448d-9837-a68d57138524", "descendantuuid": "fea082ef-9069-4c01-adb7-073fc1f46bbc", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7951ff94-759f-4987-9169-d4b2d6d96c23', 'INSERT', '{"uuid": "7951ff94-759f-4987-9169-d4b2d6d96c23", "assumed": true, "ascendantuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "descendantuuid": "6eba0739-280d-448d-9837-a68d57138524", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', 'INSERT', '{"uuid": "14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85", "roletype": "AGENT", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e953c2d5-40a7-4606-af51-3a4b89618fab', 'INSERT', '{"uuid": "e953c2d5-40a7-4606-af51-3a4b89618fab", "assumed": true, "ascendantuuid": "6eba0739-280d-448d-9837-a68d57138524", "descendantuuid": "14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'db577236-d0d2-4c2f-bbd6-246a46c70278', 'INSERT', '{"uuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "roletype": "TENANT", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e9c0574f-f838-48d5-a332-4085895be3c9', 'INSERT', '{"op": "SELECT", "uuid": "e9c0574f-f838-48d5-a332-4085895be3c9", "objectuuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a97a156d-55a7-448b-aa68-8b2073321136', 'INSERT', '{"uuid": "a97a156d-55a7-448b-aa68-8b2073321136", "assumed": true, "ascendantuuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "descendantuuid": "e9c0574f-f838-48d5-a332-4085895be3c9", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '90a1cdb2-e90b-48f6-9ec9-011512e6d275', 'INSERT', '{"uuid": "90a1cdb2-e90b-48f6-9ec9-011512e6d275", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f25ad03b-ddf9-4df6-85fa-07bea8b48345', 'INSERT', '{"uuid": "f25ad03b-ddf9-4df6-85fa-07bea8b48345", "assumed": true, "ascendantuuid": "14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85", "descendantuuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3c1792b1-22ee-455b-83cd-af455b1253bb', 'INSERT', '{"uuid": "3c1792b1-22ee-455b-83cd-af455b1253bb", "assumed": true, "ascendantuuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd5813e3b-50b4-4e8c-9be3-190ba23148e6', 'INSERT', '{"uuid": "d5813e3b-50b4-4e8c-9be3-190ba23148e6", "assumed": true, "ascendantuuid": "db577236-d0d2-4c2f-bbd6-246a46c70278", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '865022bc-58ec-4992-8cdb-04e3c63cffde', 'INSERT', '{"uuid": "865022bc-58ec-4992-8cdb-04e3c63cffde", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7d1f820e-e1c9-41e1-8cb6-bb1b36c3bad6', 'INSERT', '{"uuid": "7d1f820e-e1c9-41e1-8cb6-bb1b36c3bad6", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "b392990f-d44f-4754-8059-f5fa9114b643", "grantedbyroleuuid": null, "grantedbytriggerof": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "aae8aaab-ffd1-4254-a702-43e4a4a3c79b", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'INSERT', '{"uuid": "14ca6db0-b2db-403a-98f7-09a4aece479e", "serialid": 59, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', 'INSERT', '{"uuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "roletype": "OWNER", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '56a257dc-7f7f-4a89-85be-fee322b1f32b', 'INSERT', '{"op": "DELETE", "uuid": "56a257dc-7f7f-4a89-85be-fee322b1f32b", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5c6fd094-8811-4ce7-93f2-676706bc9fc9', 'INSERT', '{"uuid": "5c6fd094-8811-4ce7-93f2-676706bc9fc9", "assumed": true, "ascendantuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "descendantuuid": "56a257dc-7f7f-4a89-85be-fee322b1f32b", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4a60b7f7-86ab-44aa-8ed1-93a740d981cd', 'INSERT', '{"uuid": "4a60b7f7-86ab-44aa-8ed1-93a740d981cd", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7f0caf10-a671-48ea-ade1-bfd5bb25e859', 'INSERT', '{"uuid": "7f0caf10-a671-48ea-ade1-bfd5bb25e859", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "grantedbyroleuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '07d6b629-0619-408f-92e4-dc57b25e341e', 'INSERT', '{"uuid": "07d6b629-0619-408f-92e4-dc57b25e341e", "roletype": "ADMIN", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '6c7dbe37-0ade-4739-851b-1413efc4010f', 'INSERT', '{"op": "UPDATE", "uuid": "6c7dbe37-0ade-4739-851b-1413efc4010f", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c4e2f4a1-9df2-4fdf-aba3-82dccbbd43c3', 'INSERT', '{"uuid": "c4e2f4a1-9df2-4fdf-aba3-82dccbbd43c3", "assumed": true, "ascendantuuid": "07d6b629-0619-408f-92e4-dc57b25e341e", "descendantuuid": "6c7dbe37-0ade-4739-851b-1413efc4010f", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'de5b6c29-a88b-4aeb-ba26-2dcf39c872b4', 'INSERT', '{"uuid": "de5b6c29-a88b-4aeb-ba26-2dcf39c872b4", "assumed": true, "ascendantuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "descendantuuid": "07d6b629-0619-408f-92e4-dc57b25e341e", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '33960cd8-c35e-4e12-93d4-a03f9ee56f11', 'INSERT', '{"uuid": "33960cd8-c35e-4e12-93d4-a03f9ee56f11", "roletype": "AGENT", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0e5abb5c-c136-47f2-8d46-02191c73a521', 'INSERT', '{"uuid": "0e5abb5c-c136-47f2-8d46-02191c73a521", "assumed": true, "ascendantuuid": "07d6b629-0619-408f-92e4-dc57b25e341e", "descendantuuid": "33960cd8-c35e-4e12-93d4-a03f9ee56f11", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '11cb2800-b7bd-4b53-8f6b-9a3398de8834', 'INSERT', '{"uuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "roletype": "TENANT", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'df9dad24-c7f5-4429-88fe-4ece8d9865be', 'INSERT', '{"op": "SELECT", "uuid": "df9dad24-c7f5-4429-88fe-4ece8d9865be", "objectuuid": "14ca6db0-b2db-403a-98f7-09a4aece479e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1b1fb5c4-1915-4603-83b3-47f276bb872a', 'INSERT', '{"uuid": "1b1fb5c4-1915-4603-83b3-47f276bb872a", "assumed": true, "ascendantuuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "descendantuuid": "df9dad24-c7f5-4429-88fe-4ece8d9865be", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a1495de-75d9-48ff-9fe0-500c0ba0c02e', 'INSERT', '{"uuid": "0a1495de-75d9-48ff-9fe0-500c0ba0c02e", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b7d6c36-552d-4fca-a1be-98d9216b377f', 'INSERT', '{"uuid": "5b7d6c36-552d-4fca-a1be-98d9216b377f", "assumed": true, "ascendantuuid": "33960cd8-c35e-4e12-93d4-a03f9ee56f11", "descendantuuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7a99c625-5c14-4e43-810c-c7ab8d8ee240', 'INSERT', '{"uuid": "7a99c625-5c14-4e43-810c-c7ab8d8ee240", "assumed": true, "ascendantuuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e655b28a-3a03-435f-a073-98cbf50c2afd', 'INSERT', '{"uuid": "e655b28a-3a03-435f-a073-98cbf50c2afd", "assumed": true, "ascendantuuid": "11cb2800-b7bd-4b53-8f6b-9a3398de8834", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fe62389f-ac27-4a7e-b858-12fec3f19107', 'INSERT', '{"uuid": "fe62389f-ac27-4a7e-b858-12fec3f19107", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "33960cd8-c35e-4e12-93d4-a03f9ee56f11", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '60eb88d0-fc57-4b39-954a-51fdeca95abc', 'INSERT', '{"uuid": "60eb88d0-fc57-4b39-954a-51fdeca95abc", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "e88ba159-11c9-42fa-899a-e58cf9acb9b7", "grantedbyroleuuid": null, "grantedbytriggerof": "14ca6db0-b2db-403a-98f7-09a4aece479e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "14ca6db0-b2db-403a-98f7-09a4aece479e", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'INSERT', '{"uuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511", "serialid": 60, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '98cab550-aa9b-423f-8687-063fdafe09b2', 'INSERT', '{"uuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "roletype": "OWNER", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc', 'INSERT', '{"op": "DELETE", "uuid": "fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aecfdfd7-7bcd-44f0-a497-aacafb8968b8', 'INSERT', '{"uuid": "aecfdfd7-7bcd-44f0-a497-aacafb8968b8", "assumed": true, "ascendantuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "descendantuuid": "fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a0934fc6-6e85-4262-9532-ac464190d708', 'INSERT', '{"uuid": "a0934fc6-6e85-4262-9532-ac464190d708", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f6140cc1-5790-40a9-bbee-7a2b51c04ca1', 'INSERT', '{"uuid": "f6140cc1-5790-40a9-bbee-7a2b51c04ca1", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "grantedbyroleuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', 'INSERT', '{"uuid": "6bfe76a6-1377-429d-8eb7-b3ba3cdf0414", "roletype": "ADMIN", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2ab5ae81-f05a-4105-923f-97229e5f1c75', 'INSERT', '{"op": "UPDATE", "uuid": "2ab5ae81-f05a-4105-923f-97229e5f1c75", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '726b40d0-f45c-4b62-a847-819afa8bcd5d', 'INSERT', '{"uuid": "726b40d0-f45c-4b62-a847-819afa8bcd5d", "assumed": true, "ascendantuuid": "6bfe76a6-1377-429d-8eb7-b3ba3cdf0414", "descendantuuid": "2ab5ae81-f05a-4105-923f-97229e5f1c75", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8897b33a-f2d7-460f-aa59-7d810fb27ebc', 'INSERT', '{"uuid": "8897b33a-f2d7-460f-aa59-7d810fb27ebc", "assumed": true, "ascendantuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "descendantuuid": "6bfe76a6-1377-429d-8eb7-b3ba3cdf0414", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2af247be-533e-4e76-841e-46f8758be2a1', 'INSERT', '{"uuid": "2af247be-533e-4e76-841e-46f8758be2a1", "roletype": "AGENT", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ac90874b-6cf2-4af8-80af-de18692fe557', 'INSERT', '{"uuid": "ac90874b-6cf2-4af8-80af-de18692fe557", "assumed": true, "ascendantuuid": "6bfe76a6-1377-429d-8eb7-b3ba3cdf0414", "descendantuuid": "2af247be-533e-4e76-841e-46f8758be2a1", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'INSERT', '{"uuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "roletype": "TENANT", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'dbe4bafd-5930-48c1-934b-dc9859824a00', 'INSERT', '{"op": "SELECT", "uuid": "dbe4bafd-5930-48c1-934b-dc9859824a00", "objectuuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a4b24d9a-1ce9-4574-b3e5-5e1ba21129d3', 'INSERT', '{"uuid": "a4b24d9a-1ce9-4574-b3e5-5e1ba21129d3", "assumed": true, "ascendantuuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "descendantuuid": "dbe4bafd-5930-48c1-934b-dc9859824a00", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '630cf81b-ab66-456c-b7af-9eabd1c3d766', 'INSERT', '{"uuid": "630cf81b-ab66-456c-b7af-9eabd1c3d766", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a66951cd-8403-486b-b068-72baa266304b', 'INSERT', '{"uuid": "a66951cd-8403-486b-b068-72baa266304b", "assumed": true, "ascendantuuid": "2af247be-533e-4e76-841e-46f8758be2a1", "descendantuuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4aa0a25f-07fa-4d7a-bf8c-e88175500837', 'INSERT', '{"uuid": "4aa0a25f-07fa-4d7a-bf8c-e88175500837", "assumed": true, "ascendantuuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3b25328d-7b89-404d-b5f7-d4dcebf65688', 'INSERT', '{"uuid": "3b25328d-7b89-404d-b5f7-d4dcebf65688", "assumed": true, "ascendantuuid": "c23d778c-25ee-45d3-b65a-877bcf1fcfff", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd92aa656-2b90-4668-a168-acbefad6c8bb', 'INSERT', '{"uuid": "d92aa656-2b90-4668-a168-acbefad6c8bb", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "2af247be-533e-4e76-841e-46f8758be2a1", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8d14e83f-35d6-47f8-a0df-13cc164439f8', 'INSERT', '{"uuid": "8d14e83f-35d6-47f8-a0df-13cc164439f8", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "98cab550-aa9b-423f-8687-063fdafe09b2", "grantedbyroleuuid": null, "grantedbytriggerof": "e9507d52-a4ed-46c4-a761-c3a01fb42511"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "e9507d52-a4ed-46c4-a761-c3a01fb42511", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c0721ca2-ebb9-4efb-9170-85983c08c7be', 'INSERT', '{"uuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "roletype": "OWNER", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '15067268-30b0-477a-8357-2156707e3e0e', 'INSERT', '{"op": "DELETE", "uuid": "15067268-30b0-477a-8357-2156707e3e0e", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '31d938c5-5ba5-4411-b120-83317018c51f', 'INSERT', '{"uuid": "31d938c5-5ba5-4411-b120-83317018c51f", "assumed": true, "ascendantuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "descendantuuid": "15067268-30b0-477a-8357-2156707e3e0e", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2558d0de-9a64-4649-9341-a51eb093d7de', 'INSERT', '{"uuid": "2558d0de-9a64-4649-9341-a51eb093d7de", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '707d876e-0973-4c09-b085-7a78c22638a5', 'INSERT', '{"uuid": "707d876e-0973-4c09-b085-7a78c22638a5", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "grantedbyroleuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3e7064c2-0b1d-4978-b8c8-df23f1342163', 'INSERT', '{"uuid": "3e7064c2-0b1d-4978-b8c8-df23f1342163", "roletype": "ADMIN", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b832f921-ab33-46b5-a634-489e62adfe19', 'INSERT', '{"op": "UPDATE", "uuid": "b832f921-ab33-46b5-a634-489e62adfe19", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '193e4bcc-54e3-4390-995a-8e91f4a71e02', 'INSERT', '{"uuid": "193e4bcc-54e3-4390-995a-8e91f4a71e02", "assumed": true, "ascendantuuid": "3e7064c2-0b1d-4978-b8c8-df23f1342163", "descendantuuid": "b832f921-ab33-46b5-a634-489e62adfe19", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '75952978-bf0a-4cf3-a958-8ed5bc878303', 'INSERT', '{"uuid": "75952978-bf0a-4cf3-a958-8ed5bc878303", "assumed": true, "ascendantuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "descendantuuid": "3e7064c2-0b1d-4978-b8c8-df23f1342163", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ca5cbee3-107f-4ffa-b2de-777efffc27c5', 'INSERT', '{"uuid": "ca5cbee3-107f-4ffa-b2de-777efffc27c5", "roletype": "AGENT", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4803cb03-076c-4ee2-8278-8a19d5cc0a00', 'INSERT', '{"uuid": "4803cb03-076c-4ee2-8278-8a19d5cc0a00", "assumed": true, "ascendantuuid": "3e7064c2-0b1d-4978-b8c8-df23f1342163", "descendantuuid": "ca5cbee3-107f-4ffa-b2de-777efffc27c5", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', 'INSERT', '{"uuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "roletype": "TENANT", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'efd9fee1-14a2-45c0-9af7-69572a229421', 'INSERT', '{"op": "SELECT", "uuid": "efd9fee1-14a2-45c0-9af7-69572a229421", "objectuuid": "82771891-737c-4c22-8321-c2542f973dbe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd5d97771-f65b-44bb-b440-5e16bc74df36', 'INSERT', '{"uuid": "d5d97771-f65b-44bb-b440-5e16bc74df36", "assumed": true, "ascendantuuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "descendantuuid": "efd9fee1-14a2-45c0-9af7-69572a229421", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1dcd10d4-fbda-4654-9e91-43930d682d1d', 'INSERT', '{"uuid": "1dcd10d4-fbda-4654-9e91-43930d682d1d", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '86d7eb0f-68ee-49c7-81e0-4941bdc8c176', 'INSERT', '{"uuid": "86d7eb0f-68ee-49c7-81e0-4941bdc8c176", "assumed": true, "ascendantuuid": "ca5cbee3-107f-4ffa-b2de-777efffc27c5", "descendantuuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b6d6f752-f980-4307-92a4-5e9d571fc3c6', 'INSERT', '{"uuid": "b6d6f752-f980-4307-92a4-5e9d571fc3c6", "assumed": true, "ascendantuuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b722f16e-9901-4c6a-9bd9-66f934517aff', 'INSERT', '{"uuid": "b722f16e-9901-4c6a-9bd9-66f934517aff", "assumed": true, "ascendantuuid": "6d7dc53a-3f6c-4acd-ad65-2aad626af0ae", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f4090a1b-f22d-4bc6-9515-899ebf5fb503', 'INSERT', '{"uuid": "f4090a1b-f22d-4bc6-9515-899ebf5fb503", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "ca5cbee3-107f-4ffa-b2de-777efffc27c5", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c6852e44-50cd-4bb5-be4a-69cf3616b4f8', 'INSERT', '{"uuid": "c6852e44-50cd-4bb5-be4a-69cf3616b4f8", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "c0721ca2-ebb9-4efb-9170-85983c08c7be", "grantedbyroleuuid": null, "grantedbytriggerof": "82771891-737c-4c22-8321-c2542f973dbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '82771891-737c-4c22-8321-c2542f973dbe', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "82771891-737c-4c22-8321-c2542f973dbe", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'INSERT', '{"uuid": "5460e6bc-ff8c-4137-b262-9587833fd26e", "serialid": 62, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fb497976-84ec-4688-bbbf-cb7b788cf927', 'INSERT', '{"uuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "roletype": "OWNER", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5c3b96b4-e376-4600-8361-1bb7946966f1', 'INSERT', '{"op": "DELETE", "uuid": "5c3b96b4-e376-4600-8361-1bb7946966f1", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cfec3767-e862-4c8a-8c42-87c28ffe2467', 'INSERT', '{"uuid": "cfec3767-e862-4c8a-8c42-87c28ffe2467", "assumed": true, "ascendantuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "descendantuuid": "5c3b96b4-e376-4600-8361-1bb7946966f1", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2b46c19c-ad58-40c1-83d3-6900944ccdea', 'INSERT', '{"uuid": "2b46c19c-ad58-40c1-83d3-6900944ccdea", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '95481264-572a-4f4a-893f-88e9bc8f2002', 'INSERT', '{"uuid": "95481264-572a-4f4a-893f-88e9bc8f2002", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "grantedbyroleuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3299ec7e-0a6e-45ca-a6af-2f253dae41a0', 'INSERT', '{"uuid": "3299ec7e-0a6e-45ca-a6af-2f253dae41a0", "roletype": "ADMIN", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '099c8bf4-bb2f-4bec-ba3d-10f2de503dbc', 'INSERT', '{"op": "UPDATE", "uuid": "099c8bf4-bb2f-4bec-ba3d-10f2de503dbc", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '008ba08a-bf40-4464-aa03-2bc479801c68', 'INSERT', '{"uuid": "008ba08a-bf40-4464-aa03-2bc479801c68", "assumed": true, "ascendantuuid": "3299ec7e-0a6e-45ca-a6af-2f253dae41a0", "descendantuuid": "099c8bf4-bb2f-4bec-ba3d-10f2de503dbc", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6e23ce22-64e0-43ea-a59f-7ccac4946a23', 'INSERT', '{"uuid": "6e23ce22-64e0-43ea-a59f-7ccac4946a23", "assumed": true, "ascendantuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "descendantuuid": "3299ec7e-0a6e-45ca-a6af-2f253dae41a0", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1c07acdc-fdbe-4439-8e64-739b970501b9', 'INSERT', '{"uuid": "1c07acdc-fdbe-4439-8e64-739b970501b9", "roletype": "AGENT", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '39039b3c-1f7a-4307-869e-56b0a6f5bcf2', 'INSERT', '{"uuid": "39039b3c-1f7a-4307-869e-56b0a6f5bcf2", "assumed": true, "ascendantuuid": "3299ec7e-0a6e-45ca-a6af-2f253dae41a0", "descendantuuid": "1c07acdc-fdbe-4439-8e64-739b970501b9", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9c5c0e45-2026-46b8-8f49-1b665aa804a4', 'INSERT', '{"uuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "roletype": "TENANT", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'de2757da-bcaf-419c-a5ed-ee1f2159eda1', 'INSERT', '{"op": "SELECT", "uuid": "de2757da-bcaf-419c-a5ed-ee1f2159eda1", "objectuuid": "5460e6bc-ff8c-4137-b262-9587833fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cf7ae017-a16a-47cb-b362-2eea11224663', 'INSERT', '{"uuid": "cf7ae017-a16a-47cb-b362-2eea11224663", "assumed": true, "ascendantuuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "descendantuuid": "de2757da-bcaf-419c-a5ed-ee1f2159eda1", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7d91f120-5a3c-4ef4-adc0-19e841c67000', 'INSERT', '{"uuid": "7d91f120-5a3c-4ef4-adc0-19e841c67000", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e4689854-27a8-4374-b3c6-80339c3cd056', 'INSERT', '{"uuid": "e4689854-27a8-4374-b3c6-80339c3cd056", "assumed": true, "ascendantuuid": "1c07acdc-fdbe-4439-8e64-739b970501b9", "descendantuuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '758608f1-8b5e-4afe-8ea3-1cc418b9c51e', 'INSERT', '{"uuid": "758608f1-8b5e-4afe-8ea3-1cc418b9c51e", "assumed": true, "ascendantuuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '71afc3d0-bb5e-4b48-9b34-09001330aaa7', 'INSERT', '{"uuid": "71afc3d0-bb5e-4b48-9b34-09001330aaa7", "assumed": true, "ascendantuuid": "9c5c0e45-2026-46b8-8f49-1b665aa804a4", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4a6bfc5e-7bd8-4300-afd8-52aebf898748', 'INSERT', '{"uuid": "4a6bfc5e-7bd8-4300-afd8-52aebf898748", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "1c07acdc-fdbe-4439-8e64-739b970501b9", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0ad978dc-39a3-4bf4-a27d-da4689d5fc7a', 'INSERT', '{"uuid": "0ad978dc-39a3-4bf4-a27d-da4689d5fc7a", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "fb497976-84ec-4688-bbbf-cb7b788cf927", "grantedbyroleuuid": null, "grantedbytriggerof": "5460e6bc-ff8c-4137-b262-9587833fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "5460e6bc-ff8c-4137-b262-9587833fd26e", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'INSERT', '{"uuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b", "serialid": 63, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'db639259-14d3-4037-a775-0aecc5b28e49', 'INSERT', '{"uuid": "db639259-14d3-4037-a775-0aecc5b28e49", "roletype": "OWNER", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '81368b61-8a6d-4da0-8d4a-bbdace102d16', 'INSERT', '{"op": "DELETE", "uuid": "81368b61-8a6d-4da0-8d4a-bbdace102d16", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '15ce8db3-c2df-4df2-82b0-485bc10f2d78', 'INSERT', '{"uuid": "15ce8db3-c2df-4df2-82b0-485bc10f2d78", "assumed": true, "ascendantuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "descendantuuid": "81368b61-8a6d-4da0-8d4a-bbdace102d16", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5f4335bf-1fca-42d6-9e45-a741f8250945', 'INSERT', '{"uuid": "5f4335bf-1fca-42d6-9e45-a741f8250945", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bde83596-76b0-4c0b-aba7-4ac40bccd746', 'INSERT', '{"uuid": "bde83596-76b0-4c0b-aba7-4ac40bccd746", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "grantedbyroleuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2009013f-80e4-4f14-9d59-9f5027ac0307', 'INSERT', '{"uuid": "2009013f-80e4-4f14-9d59-9f5027ac0307", "roletype": "ADMIN", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0fe977bb-8402-49a4-ad22-1fc63ebefeb7', 'INSERT', '{"op": "UPDATE", "uuid": "0fe977bb-8402-49a4-ad22-1fc63ebefeb7", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd9d0976c-eedb-4916-b78c-7577161c1aac', 'INSERT', '{"uuid": "d9d0976c-eedb-4916-b78c-7577161c1aac", "assumed": true, "ascendantuuid": "2009013f-80e4-4f14-9d59-9f5027ac0307", "descendantuuid": "0fe977bb-8402-49a4-ad22-1fc63ebefeb7", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'edf0593e-a2ef-4b68-84cb-4d8a98a8e254', 'INSERT', '{"uuid": "edf0593e-a2ef-4b68-84cb-4d8a98a8e254", "assumed": true, "ascendantuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "descendantuuid": "2009013f-80e4-4f14-9d59-9f5027ac0307", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0fe07503-4b4b-4eb6-9080-081671416888', 'INSERT', '{"uuid": "0fe07503-4b4b-4eb6-9080-081671416888", "roletype": "AGENT", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1ca60104-96c2-46f7-bf36-e5acc579f3e9', 'INSERT', '{"uuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "roletype": "TENANT", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '77cb9705-7219-426f-a6ea-5a11d66c1178', 'INSERT', '{"uuid": "77cb9705-7219-426f-a6ea-5a11d66c1178", "assumed": true, "ascendantuuid": "2009013f-80e4-4f14-9d59-9f5027ac0307", "descendantuuid": "0fe07503-4b4b-4eb6-9080-081671416888", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'db545d05-0872-4c73-b09a-c9bec5f63bf8', 'INSERT', '{"uuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "roletype": "TENANT", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5f91f0c6-6f77-4d31-85d0-2d2601965f4a', 'INSERT', '{"op": "SELECT", "uuid": "5f91f0c6-6f77-4d31-85d0-2d2601965f4a", "objectuuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e0a49188-dff4-40e9-8033-f4177bc2e361', 'INSERT', '{"uuid": "e0a49188-dff4-40e9-8033-f4177bc2e361", "assumed": true, "ascendantuuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "descendantuuid": "5f91f0c6-6f77-4d31-85d0-2d2601965f4a", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '33a855e6-aea3-4af9-96ab-b241e00f74a5', 'INSERT', '{"uuid": "33a855e6-aea3-4af9-96ab-b241e00f74a5", "assumed": true, "ascendantuuid": "94724e79-a840-4218-a5d6-e669c73ba53d", "descendantuuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a5153a95-ba4a-4de7-b5eb-b9dbb88337f7', 'INSERT', '{"uuid": "a5153a95-ba4a-4de7-b5eb-b9dbb88337f7", "assumed": true, "ascendantuuid": "0fe07503-4b4b-4eb6-9080-081671416888", "descendantuuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '376fb9c8-e353-46b1-ad78-178f13c1f81c', 'INSERT', '{"uuid": "376fb9c8-e353-46b1-ad78-178f13c1f81c", "assumed": true, "ascendantuuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "descendantuuid": "d366868e-1c5f-40d8-90b6-9159123762fb", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '20350b29-679f-4d09-b361-41a1015c0994', 'INSERT', '{"uuid": "20350b29-679f-4d09-b361-41a1015c0994", "assumed": true, "ascendantuuid": "db545d05-0872-4c73-b09a-c9bec5f63bf8", "descendantuuid": "c6f4fd85-d5b4-444b-99ac-3133eabf4534", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f5cd2357-3802-409b-b349-56e3e28e860b', 'INSERT', '{"uuid": "f5cd2357-3802-409b-b349-56e3e28e860b", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "0fe07503-4b4b-4eb6-9080-081671416888", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '11a5176e-ebd0-49fe-875e-ae0bc8694935', 'INSERT', '{"uuid": "11a5176e-ebd0-49fe-875e-ae0bc8694935", "assumed": true, "ascendantuuid": "31909570-3577-492f-a7a8-c7345f213bc8", "descendantuuid": "db639259-14d3-4037-a775-0aecc5b28e49", "grantedbyroleuuid": null, "grantedbytriggerof": "bd58eafc-8b10-44fc-9877-fa823ec2168b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "bd58eafc-8b10-44fc-9877-fa823ec2168b", "version": 0, "anchoruuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "holderuuid": "caf3808d-21ec-4391-a57b-ea59eafe2c75", "contactuuid": "1c52fc2c-6390-425b-993a-788365e85d05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'INSERT', '{"uuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0", "serialid": 64, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '71e27e16-50cc-459b-96fb-4b8c1201082b', 'INSERT', '{"uuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "roletype": "OWNER", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6', 'INSERT', '{"op": "DELETE", "uuid": "3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '09255768-27ec-4895-8f8a-9007e7df5e2b', 'INSERT', '{"uuid": "09255768-27ec-4895-8f8a-9007e7df5e2b", "assumed": true, "ascendantuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "descendantuuid": "3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0ca241ab-c58b-4b43-8062-8e071b9a1a95', 'INSERT', '{"uuid": "0ca241ab-c58b-4b43-8062-8e071b9a1a95", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4f964a42-def8-4885-8175-2aa0ca8bfebd', 'INSERT', '{"uuid": "4f964a42-def8-4885-8175-2aa0ca8bfebd", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "grantedbyroleuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'da7719db-1c60-48df-b3cc-ffe7ca5df0f5', 'INSERT', '{"uuid": "da7719db-1c60-48df-b3cc-ffe7ca5df0f5", "roletype": "ADMIN", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '90c8d2a1-5736-4ad1-a296-aef671392523', 'INSERT', '{"op": "UPDATE", "uuid": "90c8d2a1-5736-4ad1-a296-aef671392523", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '35ae10fc-6ccf-45a0-856b-73d7009ad1b4', 'INSERT', '{"uuid": "35ae10fc-6ccf-45a0-856b-73d7009ad1b4", "assumed": true, "ascendantuuid": "da7719db-1c60-48df-b3cc-ffe7ca5df0f5", "descendantuuid": "90c8d2a1-5736-4ad1-a296-aef671392523", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '51ad17a9-ae7a-421d-97bd-ec8cabba61f9', 'INSERT', '{"uuid": "51ad17a9-ae7a-421d-97bd-ec8cabba61f9", "assumed": true, "ascendantuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "descendantuuid": "da7719db-1c60-48df-b3cc-ffe7ca5df0f5", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', 'INSERT', '{"uuid": "8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2", "roletype": "AGENT", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '060673fd-9f24-4060-937f-ee18c0ecee1f', 'INSERT', '{"uuid": "060673fd-9f24-4060-937f-ee18c0ecee1f", "assumed": true, "ascendantuuid": "da7719db-1c60-48df-b3cc-ffe7ca5df0f5", "descendantuuid": "8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', 'INSERT', '{"uuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "roletype": "TENANT", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '9d4f8cd8-7565-4eb4-a20e-b2b439946662', 'INSERT', '{"op": "SELECT", "uuid": "9d4f8cd8-7565-4eb4-a20e-b2b439946662", "objectuuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8bdb3fad-bbb9-4f73-86dc-747f678d822d', 'INSERT', '{"uuid": "8bdb3fad-bbb9-4f73-86dc-747f678d822d", "assumed": true, "ascendantuuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "descendantuuid": "9d4f8cd8-7565-4eb4-a20e-b2b439946662", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ed1111b6-605f-42af-9b21-ea532170785d', 'INSERT', '{"uuid": "ed1111b6-605f-42af-9b21-ea532170785d", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd31d08a4-b0c3-41ac-ba78-ec766fd4baf5', 'INSERT', '{"uuid": "d31d08a4-b0c3-41ac-ba78-ec766fd4baf5", "assumed": true, "ascendantuuid": "8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2", "descendantuuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0c6f0b75-b6bd-48f1-aba4-5e4a027a115d', 'INSERT', '{"uuid": "0c6f0b75-b6bd-48f1-aba4-5e4a027a115d", "assumed": true, "ascendantuuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '27aa2e3f-2ccf-42dc-b55d-fcc7a9947c0e', 'INSERT', '{"uuid": "27aa2e3f-2ccf-42dc-b55d-fcc7a9947c0e", "assumed": true, "ascendantuuid": "d9d12b27-ae58-4ae5-b109-9a873ca8fea7", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ce9956e3-f5db-4e44-870b-49d7b5a0da7d', 'INSERT', '{"uuid": "ce9956e3-f5db-4e44-870b-49d7b5a0da7d", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'de3da58f-905c-4215-b1e5-1168232f0ef8', 'INSERT', '{"uuid": "de3da58f-905c-4215-b1e5-1168232f0ef8", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "71e27e16-50cc-459b-96fb-4b8c1201082b", "grantedbyroleuuid": null, "grantedbytriggerof": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "28f9bd77-e35d-45ce-b7ae-5e49a961caf0", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'INSERT', '{"uuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7", "serialid": 65, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', 'INSERT', '{"uuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "roletype": "OWNER", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3', 'INSERT', '{"op": "DELETE", "uuid": "bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b65cce5a-5190-4ce8-998e-ac5a9c86c0de', 'INSERT', '{"uuid": "b65cce5a-5190-4ce8-998e-ac5a9c86c0de", "assumed": true, "ascendantuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "descendantuuid": "bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1aa35c5a-0679-49d0-85dc-1a4fd1fc6324', 'INSERT', '{"uuid": "1aa35c5a-0679-49d0-85dc-1a4fd1fc6324", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd69f895c-ca81-404d-a1be-f576d582cd2a', 'INSERT', '{"uuid": "d69f895c-ca81-404d-a1be-f576d582cd2a", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "grantedbyroleuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '84596d4a-c803-408d-87e0-2edccbf46866', 'INSERT', '{"uuid": "84596d4a-c803-408d-87e0-2edccbf46866", "roletype": "ADMIN", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2616db57-66e1-4592-bc4d-d00f359cb35f', 'INSERT', '{"op": "UPDATE", "uuid": "2616db57-66e1-4592-bc4d-d00f359cb35f", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bd7f6a8f-2962-433a-a4fb-b372ed475123', 'INSERT', '{"uuid": "bd7f6a8f-2962-433a-a4fb-b372ed475123", "assumed": true, "ascendantuuid": "84596d4a-c803-408d-87e0-2edccbf46866", "descendantuuid": "2616db57-66e1-4592-bc4d-d00f359cb35f", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '22be8999-7121-4f0a-9238-967efcf7cfc1', 'INSERT', '{"uuid": "22be8999-7121-4f0a-9238-967efcf7cfc1", "assumed": true, "ascendantuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "descendantuuid": "84596d4a-c803-408d-87e0-2edccbf46866", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '22f39ffa-2f6b-499a-ad1e-6392e380f4e9', 'INSERT', '{"uuid": "22f39ffa-2f6b-499a-ad1e-6392e380f4e9", "roletype": "AGENT", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b829812-2f65-4364-8375-1bad199bf262', 'INSERT', '{"uuid": "5b829812-2f65-4364-8375-1bad199bf262", "assumed": true, "ascendantuuid": "84596d4a-c803-408d-87e0-2edccbf46866", "descendantuuid": "22f39ffa-2f6b-499a-ad1e-6392e380f4e9", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6b6b95c2-45c2-4803-b595-e1d4e62912d4', 'INSERT', '{"uuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "roletype": "TENANT", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0c317278-ff35-4c8c-b488-37bd55814b2a', 'INSERT', '{"op": "SELECT", "uuid": "0c317278-ff35-4c8c-b488-37bd55814b2a", "objectuuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '774e179c-0350-4c95-9973-9f31ad19d6d5', 'INSERT', '{"uuid": "774e179c-0350-4c95-9973-9f31ad19d6d5", "assumed": true, "ascendantuuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "descendantuuid": "0c317278-ff35-4c8c-b488-37bd55814b2a", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7a61dfb8-792e-4c0f-afa7-fa08333e7da7', 'INSERT', '{"uuid": "7a61dfb8-792e-4c0f-afa7-fa08333e7da7", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aafad911-362c-42eb-88c2-b24f1a0772e9', 'INSERT', '{"uuid": "aafad911-362c-42eb-88c2-b24f1a0772e9", "assumed": true, "ascendantuuid": "22f39ffa-2f6b-499a-ad1e-6392e380f4e9", "descendantuuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6606fa4b-07a6-4c7e-b91c-d3204a57e555', 'INSERT', '{"uuid": "6606fa4b-07a6-4c7e-b91c-d3204a57e555", "assumed": true, "ascendantuuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4783fc76-b0a5-464e-b2b4-a3aaa2f38aec', 'INSERT', '{"uuid": "4783fc76-b0a5-464e-b2b4-a3aaa2f38aec", "assumed": true, "ascendantuuid": "6b6b95c2-45c2-4803-b595-e1d4e62912d4", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c09ec4ad-618c-48b3-9647-ff0b419b25c0', 'INSERT', '{"uuid": "c09ec4ad-618c-48b3-9647-ff0b419b25c0", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "22f39ffa-2f6b-499a-ad1e-6392e380f4e9", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '3162b2b5-9fda-476a-94e8-4e0265758d31', 'INSERT', '{"uuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "serialid": 122, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd40a477f-8ee6-47c7-a105-12d27cd84fc6', 'INSERT', '{"uuid": "d40a477f-8ee6-47c7-a105-12d27cd84fc6", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "ec5fd55f-6c3c-48f9-bf25-d6937f731633", "grantedbyroleuuid": null, "grantedbytriggerof": "1586854a-cd2a-4378-ba84-fd371c8d06c7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "1586854a-cd2a-4378-ba84-fd371c8d06c7", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'INSERT', '{"uuid": "29759ed5-a529-4555-b0f8-77b722d5cf48", "serialid": 66, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', 'INSERT', '{"uuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "roletype": "OWNER", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01', 'INSERT', '{"op": "DELETE", "uuid": "ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '050a8500-3ed1-4171-9f00-c1bb306dea63', 'INSERT', '{"uuid": "050a8500-3ed1-4171-9f00-c1bb306dea63", "assumed": true, "ascendantuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "descendantuuid": "ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '098773e4-54a1-4e38-801f-05db39de3aac', 'INSERT', '{"uuid": "098773e4-54a1-4e38-801f-05db39de3aac", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f164a7bc-c945-4299-9156-0cecbeb694af', 'INSERT', '{"uuid": "f164a7bc-c945-4299-9156-0cecbeb694af", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "grantedbyroleuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a028c0ce-a639-4431-bd4b-7f4339986e12', 'INSERT', '{"uuid": "a028c0ce-a639-4431-bd4b-7f4339986e12", "roletype": "ADMIN", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c64b5ede-af6e-4878-b23f-606b87a02cdc', 'INSERT', '{"op": "UPDATE", "uuid": "c64b5ede-af6e-4878-b23f-606b87a02cdc", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '98a05de3-f48e-455f-9da7-50886ad2234c', 'INSERT', '{"uuid": "98a05de3-f48e-455f-9da7-50886ad2234c", "assumed": true, "ascendantuuid": "a028c0ce-a639-4431-bd4b-7f4339986e12", "descendantuuid": "c64b5ede-af6e-4878-b23f-606b87a02cdc", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8edd07d1-06c0-4912-b028-4e8d330959b1', 'INSERT', '{"uuid": "8edd07d1-06c0-4912-b028-4e8d330959b1", "assumed": true, "ascendantuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "descendantuuid": "a028c0ce-a639-4431-bd4b-7f4339986e12", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2f620914-54a4-404f-8297-c209a1b666bc', 'INSERT', '{"uuid": "2f620914-54a4-404f-8297-c209a1b666bc", "roletype": "AGENT", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5deb90a9-e292-4193-8dc6-573d623fa6bb', 'INSERT', '{"uuid": "5deb90a9-e292-4193-8dc6-573d623fa6bb", "assumed": true, "ascendantuuid": "a028c0ce-a639-4431-bd4b-7f4339986e12", "descendantuuid": "2f620914-54a4-404f-8297-c209a1b666bc", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '31037a84-6031-4aea-8702-9ae134616972', 'INSERT', '{"uuid": "31037a84-6031-4aea-8702-9ae134616972", "roletype": "TENANT", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e42af770-6fe9-492e-a97e-745d3fc6d532', 'INSERT', '{"op": "SELECT", "uuid": "e42af770-6fe9-492e-a97e-745d3fc6d532", "objectuuid": "29759ed5-a529-4555-b0f8-77b722d5cf48", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '27402a0e-6d04-43bc-894d-2f30d655e49e', 'INSERT', '{"uuid": "27402a0e-6d04-43bc-894d-2f30d655e49e", "assumed": true, "ascendantuuid": "31037a84-6031-4aea-8702-9ae134616972", "descendantuuid": "e42af770-6fe9-492e-a97e-745d3fc6d532", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f7791169-ea15-44f8-9904-aabdc7765307', 'INSERT', '{"uuid": "f7791169-ea15-44f8-9904-aabdc7765307", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "31037a84-6031-4aea-8702-9ae134616972", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1608b49d-d482-49f4-811c-eff035b36c02', 'INSERT', '{"uuid": "1608b49d-d482-49f4-811c-eff035b36c02", "assumed": true, "ascendantuuid": "2f620914-54a4-404f-8297-c209a1b666bc", "descendantuuid": "31037a84-6031-4aea-8702-9ae134616972", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3b083847-7443-420f-91d6-7e255f76f646', 'INSERT', '{"uuid": "3b083847-7443-420f-91d6-7e255f76f646", "assumed": true, "ascendantuuid": "31037a84-6031-4aea-8702-9ae134616972", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5fa19e40-2242-4830-9fa9-8dae43121d38', 'INSERT', '{"uuid": "5fa19e40-2242-4830-9fa9-8dae43121d38", "assumed": true, "ascendantuuid": "31037a84-6031-4aea-8702-9ae134616972", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9d5988ae-f9ca-4389-af8f-bf6fcb14ad95', 'INSERT', '{"uuid": "9d5988ae-f9ca-4389-af8f-bf6fcb14ad95", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "2f620914-54a4-404f-8297-c209a1b666bc", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '187320b2-8ffd-4d4d-959e-216df40ad113', 'INSERT', '{"uuid": "187320b2-8ffd-4d4d-959e-216df40ad113", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "e47a8edf-53fb-4ee3-a9ef-b7306f3ce489", "grantedbyroleuuid": null, "grantedbytriggerof": "29759ed5-a529-4555-b0f8-77b722d5cf48"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "29759ed5-a529-4555-b0f8-77b722d5cf48", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'INSERT', '{"uuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb", "serialid": 67, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fc26785f-19fa-476c-93a1-d751511c8cc6', 'INSERT', '{"uuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "roletype": "OWNER", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3903d9ce-0bec-4991-86ca-38b17ec769ad', 'INSERT', '{"op": "DELETE", "uuid": "3903d9ce-0bec-4991-86ca-38b17ec769ad", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '57537970-872a-40b4-8ca4-2fdfbf1e391c', 'INSERT', '{"op": "SELECT", "uuid": "57537970-872a-40b4-8ca4-2fdfbf1e391c", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eb0e2400-a008-44b3-b234-3fb621c65fe7', 'INSERT', '{"uuid": "eb0e2400-a008-44b3-b234-3fb621c65fe7", "assumed": true, "ascendantuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "descendantuuid": "3903d9ce-0bec-4991-86ca-38b17ec769ad", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c8ba2163-2f95-43c4-b349-003b03bf3039', 'INSERT', '{"uuid": "c8ba2163-2f95-43c4-b349-003b03bf3039", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '97daa636-de2d-49fa-be4d-0cd3e57a6917', 'INSERT', '{"uuid": "97daa636-de2d-49fa-be4d-0cd3e57a6917", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "grantedbyroleuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '645901d5-e40f-4c62-aefb-a465db8e329c', 'INSERT', '{"uuid": "645901d5-e40f-4c62-aefb-a465db8e329c", "roletype": "ADMIN", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'ac3fdf8a-f87b-4cff-8146-272273b0830e', 'INSERT', '{"op": "UPDATE", "uuid": "ac3fdf8a-f87b-4cff-8146-272273b0830e", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '61941e43-935f-4bcb-8ae8-0ff799b1c329', 'INSERT', '{"uuid": "61941e43-935f-4bcb-8ae8-0ff799b1c329", "assumed": true, "ascendantuuid": "645901d5-e40f-4c62-aefb-a465db8e329c", "descendantuuid": "ac3fdf8a-f87b-4cff-8146-272273b0830e", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fffa7228-7b59-4100-b0c3-5c4688bb47b0', 'INSERT', '{"uuid": "fffa7228-7b59-4100-b0c3-5c4688bb47b0", "assumed": true, "ascendantuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "descendantuuid": "645901d5-e40f-4c62-aefb-a465db8e329c", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5fe85149-78e6-4735-960e-353a088d355b', 'INSERT', '{"uuid": "5fe85149-78e6-4735-960e-353a088d355b", "roletype": "AGENT", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9b6906a3-2fc5-4e82-b7a9-d082b6b8866f', 'INSERT', '{"uuid": "9b6906a3-2fc5-4e82-b7a9-d082b6b8866f", "assumed": true, "ascendantuuid": "645901d5-e40f-4c62-aefb-a465db8e329c", "descendantuuid": "5fe85149-78e6-4735-960e-353a088d355b", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '14db4fed-0e39-4912-8616-cd4bb2335a4c', 'INSERT', '{"uuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "roletype": "TENANT", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3e146f1f-790c-425e-bac5-1e215599ee33', 'INSERT', '{"op": "SELECT", "uuid": "3e146f1f-790c-425e-bac5-1e215599ee33", "objectuuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ac1250ba-e659-43a3-bb8f-dc64e907a3ca', 'INSERT', '{"uuid": "ac1250ba-e659-43a3-bb8f-dc64e907a3ca", "assumed": true, "ascendantuuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "descendantuuid": "3e146f1f-790c-425e-bac5-1e215599ee33", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c38088ef-0945-4b29-923a-630a743fca9e', 'INSERT', '{"uuid": "c38088ef-0945-4b29-923a-630a743fca9e", "assumed": true, "ascendantuuid": "5228a4f7-f78c-4841-a40d-52d994d21a29", "descendantuuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a023b3e1-0aa8-4b7f-9e8d-6fd44fdffff4', 'INSERT', '{"uuid": "a023b3e1-0aa8-4b7f-9e8d-6fd44fdffff4", "assumed": true, "ascendantuuid": "5fe85149-78e6-4735-960e-353a088d355b", "descendantuuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7623266f-75e6-40a3-8a43-f0d188d0ed02', 'INSERT', '{"uuid": "7623266f-75e6-40a3-8a43-f0d188d0ed02", "assumed": true, "ascendantuuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "descendantuuid": "a22f7977-6575-4c54-8b20-3ae24ce14df6", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9dbbd0d7-fcf2-4b61-b5bd-28e756b801fc', 'INSERT', '{"uuid": "9dbbd0d7-fcf2-4b61-b5bd-28e756b801fc", "assumed": true, "ascendantuuid": "14db4fed-0e39-4912-8616-cd4bb2335a4c", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '821c6eb1-b40f-4129-8499-2da2b6a7a734', 'INSERT', '{"uuid": "821c6eb1-b40f-4129-8499-2da2b6a7a734", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "5fe85149-78e6-4735-960e-353a088d355b", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '42f9ef96-37d3-496a-b5fd-62acd359184f', 'INSERT', '{"uuid": "42f9ef96-37d3-496a-b5fd-62acd359184f", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "fc26785f-19fa-476c-93a1-d751511c8cc6", "grantedbyroleuuid": null, "grantedbytriggerof": "568eff85-93e4-43fd-9e46-bf46ccbd76bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "568eff85-93e4-43fd-9e46-bf46ccbd76bb", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "contactuuid": "53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'INSERT', '{"uuid": "68821d28-1f12-40fb-93cd-c979ab75c04e", "serialid": 68, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '102e1ab3-76f6-4812-b627-9becd51c2657', 'INSERT', '{"uuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "roletype": "OWNER", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '54ea8431-71a0-4eb7-97ed-8a8801df59f4', 'INSERT', '{"op": "DELETE", "uuid": "54ea8431-71a0-4eb7-97ed-8a8801df59f4", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '19b1bcea-f1e3-448f-810d-972d94d77221', 'INSERT', '{"uuid": "19b1bcea-f1e3-448f-810d-972d94d77221", "assumed": true, "ascendantuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "descendantuuid": "54ea8431-71a0-4eb7-97ed-8a8801df59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '91dfebe2-8531-461c-8157-15abad68dfee', 'INSERT', '{"uuid": "91dfebe2-8531-461c-8157-15abad68dfee", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ce8b4651-5e9a-4e27-9004-2bc09011c7d3', 'INSERT', '{"uuid": "ce8b4651-5e9a-4e27-9004-2bc09011c7d3", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "grantedbyroleuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5a4982c6-bec1-4cbe-958b-89dbc24e013b', 'INSERT', '{"uuid": "5a4982c6-bec1-4cbe-958b-89dbc24e013b", "roletype": "ADMIN", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1fe5cc8f-0891-4359-9d7f-d45cf5d82108', 'INSERT', '{"op": "UPDATE", "uuid": "1fe5cc8f-0891-4359-9d7f-d45cf5d82108", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '01b65471-6423-4e2a-bf6c-8cf082be6709', 'INSERT', '{"uuid": "01b65471-6423-4e2a-bf6c-8cf082be6709", "assumed": true, "ascendantuuid": "5a4982c6-bec1-4cbe-958b-89dbc24e013b", "descendantuuid": "1fe5cc8f-0891-4359-9d7f-d45cf5d82108", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7735fa8b-c34f-4184-bdad-119ebdffdf2a', 'INSERT', '{"uuid": "7735fa8b-c34f-4184-bdad-119ebdffdf2a", "assumed": true, "ascendantuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "descendantuuid": "5a4982c6-bec1-4cbe-958b-89dbc24e013b", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', 'INSERT', '{"uuid": "37f9dd35-f71d-41b5-971d-dfd9c6ccccc5", "roletype": "AGENT", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd4c18059-db2e-43ed-992e-b22d02bfa8ef', 'INSERT', '{"uuid": "d4c18059-db2e-43ed-992e-b22d02bfa8ef", "assumed": true, "ascendantuuid": "5a4982c6-bec1-4cbe-958b-89dbc24e013b", "descendantuuid": "37f9dd35-f71d-41b5-971d-dfd9c6ccccc5", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', 'INSERT', '{"uuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "roletype": "TENANT", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef', 'INSERT', '{"op": "SELECT", "uuid": "a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef", "objectuuid": "68821d28-1f12-40fb-93cd-c979ab75c04e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1369fe69-93b7-4083-995d-96ad5849f739', 'INSERT', '{"uuid": "1369fe69-93b7-4083-995d-96ad5849f739", "assumed": true, "ascendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "descendantuuid": "a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4f74bc0c-dff4-4297-a22f-00f5ac0f830d', 'INSERT', '{"uuid": "4f74bc0c-dff4-4297-a22f-00f5ac0f830d", "assumed": true, "ascendantuuid": "d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad", "descendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fa0ece53-26fe-4c48-9acc-39018b189a91', 'INSERT', '{"uuid": "fa0ece53-26fe-4c48-9acc-39018b189a91", "assumed": true, "ascendantuuid": "37f9dd35-f71d-41b5-971d-dfd9c6ccccc5", "descendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b219db13-2204-4bca-a8ea-b69945155165', 'INSERT', '{"uuid": "b219db13-2204-4bca-a8ea-b69945155165", "assumed": true, "ascendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "descendantuuid": "c767e22f-f90f-455b-8733-7e58ca5ffba7", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '648b445f-9ef1-41d9-a26c-f890b4685ffb', 'INSERT', '{"uuid": "648b445f-9ef1-41d9-a26c-f890b4685ffb", "assumed": true, "ascendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c3f6d631-9ca8-4837-b4df-6311b24be4ca', 'INSERT', '{"uuid": "c3f6d631-9ca8-4837-b4df-6311b24be4ca", "assumed": true, "ascendantuuid": "cdd5c1ec-2338-4784-b430-01dffcdcd53a", "descendantuuid": "6cc9abee-77f2-4e9b-ac65-f9cc57f00825", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7287e731-282a-473d-886b-185ff8becbf3', 'INSERT', '{"uuid": "7287e731-282a-473d-886b-185ff8becbf3", "assumed": true, "ascendantuuid": "568bfaa3-d857-432d-accf-ff32377587c9", "descendantuuid": "37f9dd35-f71d-41b5-971d-dfd9c6ccccc5", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'af9b31f1-9c7a-4f0d-8863-14680f2423f5', 'INSERT', '{"uuid": "af9b31f1-9c7a-4f0d-8863-14680f2423f5", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "102e1ab3-76f6-4812-b627-9becd51c2657", "grantedbyroleuuid": null, "grantedbytriggerof": "68821d28-1f12-40fb-93cd-c979ab75c04e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'INSERT', '{"mark": null, "type": "EX_PARTNER", "uuid": "68821d28-1f12-40fb-93cd-c979ab75c04e", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "ea4932ab-63b1-4e5a-9965-6f8604a14923", "contactuuid": "483c5cf4-8c5e-405c-8f98-8139e80a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'INSERT', '{"uuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b", "serialid": 69, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '903ede93-27b9-4273-8ec6-2af94a38cd60', 'INSERT', '{"uuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "roletype": "OWNER", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5f0ce84a-beaf-4824-938b-16b1a746dbc6', 'INSERT', '{"op": "DELETE", "uuid": "5f0ce84a-beaf-4824-938b-16b1a746dbc6", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b2987f6f-b263-4f03-be4b-b7271f0ad6e3', 'INSERT', '{"uuid": "b2987f6f-b263-4f03-be4b-b7271f0ad6e3", "assumed": true, "ascendantuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "descendantuuid": "5f0ce84a-beaf-4824-938b-16b1a746dbc6", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ceda29c5-a454-408a-b960-680d56000384', 'INSERT', '{"uuid": "ceda29c5-a454-408a-b960-680d56000384", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5dc51995-a916-44b2-aee4-34cb94bc0c10', 'INSERT', '{"uuid": "5dc51995-a916-44b2-aee4-34cb94bc0c10", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "grantedbyroleuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a4bff7bc-e032-4606-8e6f-cb48b8dc5846', 'INSERT', '{"uuid": "a4bff7bc-e032-4606-8e6f-cb48b8dc5846", "roletype": "ADMIN", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '985cf74a-9707-4819-a118-dfc415527515', 'INSERT', '{"op": "UPDATE", "uuid": "985cf74a-9707-4819-a118-dfc415527515", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0d464825-0aef-4840-9e2c-3d352903da91', 'INSERT', '{"uuid": "0d464825-0aef-4840-9e2c-3d352903da91", "assumed": true, "ascendantuuid": "a4bff7bc-e032-4606-8e6f-cb48b8dc5846", "descendantuuid": "985cf74a-9707-4819-a118-dfc415527515", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '31b7747d-efef-4594-b5cc-43bbd17b9bfd', 'INSERT', '{"uuid": "31b7747d-efef-4594-b5cc-43bbd17b9bfd", "assumed": true, "ascendantuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "descendantuuid": "a4bff7bc-e032-4606-8e6f-cb48b8dc5846", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '435b9cdc-5cfe-4d35-89d4-85bc68ee6967', 'INSERT', '{"uuid": "435b9cdc-5cfe-4d35-89d4-85bc68ee6967", "roletype": "AGENT", "objectuuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '406fc753-d3ea-42db-a28f-9bda1d0dea3d', 'INSERT', '{"uuid": "406fc753-d3ea-42db-a28f-9bda1d0dea3d", "assumed": true, "ascendantuuid": "a4bff7bc-e032-4606-8e6f-cb48b8dc5846", "descendantuuid": "435b9cdc-5cfe-4d35-89d4-85bc68ee6967", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '899b26c2-a982-46b1-9f78-54509efe2aca', 'INSERT', '{"uuid": "899b26c2-a982-46b1-9f78-54509efe2aca", "assumed": true, "ascendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "descendantuuid": "57537970-872a-40b4-8ca4-2fdfbf1e391c", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3e07fe55-469b-4958-9bc1-93a3f6fa4c55', 'INSERT', '{"uuid": "3e07fe55-469b-4958-9bc1-93a3f6fa4c55", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5d86f973-d0e3-49d2-9c2b-9b22613768c3', 'INSERT', '{"uuid": "5d86f973-d0e3-49d2-9c2b-9b22613768c3", "assumed": true, "ascendantuuid": "435b9cdc-5cfe-4d35-89d4-85bc68ee6967", "descendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '45b98512-e5aa-451a-9af2-749510177ba8', 'INSERT', '{"uuid": "45b98512-e5aa-451a-9af2-749510177ba8", "assumed": true, "ascendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "descendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '21bbeb68-29ab-4733-9e86-d82cde3f5308', 'INSERT', '{"uuid": "21bbeb68-29ab-4733-9e86-d82cde3f5308", "assumed": true, "ascendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '57bb4bf1-b64e-43e0-9760-0cb397ccf85b', 'INSERT', '{"uuid": "57bb4bf1-b64e-43e0-9760-0cb397ccf85b", "assumed": true, "ascendantuuid": "1ca60104-96c2-46f7-bf36-e5acc579f3e9", "descendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7323cd05-224a-47be-9b2f-3f37c6044804', 'INSERT', '{"uuid": "7323cd05-224a-47be-9b2f-3f37c6044804", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "435b9cdc-5cfe-4d35-89d4-85bc68ee6967", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fffb32a4-ce06-4adb-ae86-df290f307e78', 'INSERT', '{"uuid": "fffb32a4-ce06-4adb-ae86-df290f307e78", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "903ede93-27b9-4273-8ec6-2af94a38cd60", "grantedbyroleuuid": null, "grantedbytriggerof": "bd150cec-ea90-4cbe-bd1b-872330452c1b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "bd150cec-ea90-4cbe-bd1b-872330452c1b", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "contactuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'INSERT', '{"uuid": "ef673d13-b575-4c2a-84e7-849432e0213c", "serialid": 70, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'eb429a65-504e-43c1-a194-a58f3aa21da8', 'INSERT', '{"uuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "roletype": "OWNER", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a864fe09-bd67-409d-a4b9-da2384846ee1', 'INSERT', '{"op": "DELETE", "uuid": "a864fe09-bd67-409d-a4b9-da2384846ee1", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '691e7189-1ff0-458e-981b-35de85986d6e', 'INSERT', '{"uuid": "691e7189-1ff0-458e-981b-35de85986d6e", "assumed": true, "ascendantuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "descendantuuid": "a864fe09-bd67-409d-a4b9-da2384846ee1", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5dc62c41-9196-4373-958c-8f7e12198915', 'INSERT', '{"uuid": "5dc62c41-9196-4373-958c-8f7e12198915", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eabba1d9-45e2-46fa-af3b-a2d4a78a153f', 'INSERT', '{"uuid": "eabba1d9-45e2-46fa-af3b-a2d4a78a153f", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "grantedbyroleuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f5596859-966a-4d5f-9e34-cd255fa2452e', 'INSERT', '{"uuid": "f5596859-966a-4d5f-9e34-cd255fa2452e", "roletype": "ADMIN", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e3b21d04-931b-455f-948c-5cc9c0ae03a7', 'INSERT', '{"op": "UPDATE", "uuid": "e3b21d04-931b-455f-948c-5cc9c0ae03a7", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6af99cb2-45cd-4b3f-9b83-bb9e31b84100', 'INSERT', '{"uuid": "6af99cb2-45cd-4b3f-9b83-bb9e31b84100", "assumed": true, "ascendantuuid": "f5596859-966a-4d5f-9e34-cd255fa2452e", "descendantuuid": "e3b21d04-931b-455f-948c-5cc9c0ae03a7", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6ae54b29-d3f9-416f-bb26-f1a528535a86', 'INSERT', '{"uuid": "6ae54b29-d3f9-416f-bb26-f1a528535a86", "assumed": true, "ascendantuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "descendantuuid": "f5596859-966a-4d5f-9e34-cd255fa2452e", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '12901c4c-0376-47a9-a9f3-f73acba2905d', 'INSERT', '{"uuid": "12901c4c-0376-47a9-a9f3-f73acba2905d", "roletype": "AGENT", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9ebf31d0-2d2e-47fa-ba1b-ecb8142cf938', 'INSERT', '{"uuid": "9ebf31d0-2d2e-47fa-ba1b-ecb8142cf938", "assumed": true, "ascendantuuid": "f5596859-966a-4d5f-9e34-cd255fa2452e", "descendantuuid": "12901c4c-0376-47a9-a9f3-f73acba2905d", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e8c89c01-b7b4-4c3f-949b-b91f84498439', 'INSERT', '{"uuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "roletype": "TENANT", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '674a6bf5-d0b3-4650-8ee5-6eda522c57f4', 'INSERT', '{"op": "SELECT", "uuid": "674a6bf5-d0b3-4650-8ee5-6eda522c57f4", "objectuuid": "ef673d13-b575-4c2a-84e7-849432e0213c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '99a9a037-8df7-496d-b9d5-7900d2d2b0b7', 'INSERT', '{"uuid": "99a9a037-8df7-496d-b9d5-7900d2d2b0b7", "assumed": true, "ascendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "descendantuuid": "674a6bf5-d0b3-4650-8ee5-6eda522c57f4", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'acf17164-990f-4837-a30b-93bf83f1756d', 'INSERT', '{"uuid": "acf17164-990f-4837-a30b-93bf83f1756d", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1d368fbf-3db7-43d8-be38-50a73e945275', 'INSERT', '{"uuid": "1d368fbf-3db7-43d8-be38-50a73e945275", "assumed": true, "ascendantuuid": "12901c4c-0376-47a9-a9f3-f73acba2905d", "descendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'INSERT', '{"uuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "serialid": 135, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e41ef92c-285d-481d-bd62-83f27fe1b38e', 'INSERT', '{"uuid": "e41ef92c-285d-481d-bd62-83f27fe1b38e", "assumed": true, "ascendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "descendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '66d0e5de-8cf1-4c8b-81ad-d69c73831dcc', 'INSERT', '{"uuid": "66d0e5de-8cf1-4c8b-81ad-d69c73831dcc", "assumed": true, "ascendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '08f26dcd-df71-4f01-90dd-08731e2a7f25', 'INSERT', '{"uuid": "08f26dcd-df71-4f01-90dd-08731e2a7f25", "assumed": true, "ascendantuuid": "e8c89c01-b7b4-4c3f-949b-b91f84498439", "descendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ca7275c4-c105-4ff5-87c6-0ef457263b2c', 'INSERT', '{"uuid": "ca7275c4-c105-4ff5-87c6-0ef457263b2c", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "12901c4c-0376-47a9-a9f3-f73acba2905d", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '05fd376e-7035-478a-a463-01d83070990d', 'INSERT', '{"uuid": "05fd376e-7035-478a-a463-01d83070990d", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "eb429a65-504e-43c1-a194-a58f3aa21da8", "grantedbyroleuuid": null, "grantedbytriggerof": "ef673d13-b575-4c2a-84e7-849432e0213c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "ef673d13-b575-4c2a-84e7-849432e0213c", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "contactuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'INSERT', '{"uuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af", "serialid": 71, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '21f928f2-d60e-4885-9d16-ac56767416bb', 'INSERT', '{"uuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "roletype": "OWNER", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '84df22b7-389e-48ef-9060-0ac4ddd74577', 'INSERT', '{"op": "DELETE", "uuid": "84df22b7-389e-48ef-9060-0ac4ddd74577", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '25827d42-bfd3-40ef-b2fa-74aaa24eeff5', 'INSERT', '{"uuid": "25827d42-bfd3-40ef-b2fa-74aaa24eeff5", "assumed": true, "ascendantuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "descendantuuid": "84df22b7-389e-48ef-9060-0ac4ddd74577", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c98eb80b-190a-458a-9372-caf4ecb9d47a', 'INSERT', '{"uuid": "c98eb80b-190a-458a-9372-caf4ecb9d47a", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b94c1e43-f6f4-41d2-8d59-b25f055b1555', 'INSERT', '{"uuid": "b94c1e43-f6f4-41d2-8d59-b25f055b1555", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "grantedbyroleuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0b32e53f-fafa-44d4-93b3-c544d2ea99e1', 'INSERT', '{"uuid": "0b32e53f-fafa-44d4-93b3-c544d2ea99e1", "roletype": "ADMIN", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'bbe03bc9-329b-4813-9a56-e092813ec25f', 'INSERT', '{"op": "UPDATE", "uuid": "bbe03bc9-329b-4813-9a56-e092813ec25f", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '87a699c7-88d1-430e-b78f-7243f267c0af', 'INSERT', '{"uuid": "87a699c7-88d1-430e-b78f-7243f267c0af", "assumed": true, "ascendantuuid": "0b32e53f-fafa-44d4-93b3-c544d2ea99e1", "descendantuuid": "bbe03bc9-329b-4813-9a56-e092813ec25f", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '599da484-c665-4ee1-809b-423a947eb182', 'INSERT', '{"uuid": "599da484-c665-4ee1-809b-423a947eb182", "assumed": true, "ascendantuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "descendantuuid": "0b32e53f-fafa-44d4-93b3-c544d2ea99e1", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '882da02d-8e85-40e9-9740-d20d6ef5c0a6', 'INSERT', '{"uuid": "882da02d-8e85-40e9-9740-d20d6ef5c0a6", "roletype": "AGENT", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fecb7b6b-c5cd-4064-9495-2e5db03fe41a', 'INSERT', '{"uuid": "fecb7b6b-c5cd-4064-9495-2e5db03fe41a", "assumed": true, "ascendantuuid": "0b32e53f-fafa-44d4-93b3-c544d2ea99e1", "descendantuuid": "882da02d-8e85-40e9-9740-d20d6ef5c0a6", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', 'INSERT', '{"uuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "roletype": "TENANT", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '31cf4782-37ba-4296-a200-bf2c44493a97', 'INSERT', '{"op": "SELECT", "uuid": "31cf4782-37ba-4296-a200-bf2c44493a97", "objectuuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7f2a2011-ba77-4ea9-932a-d0e9695f0c93', 'INSERT', '{"uuid": "7f2a2011-ba77-4ea9-932a-d0e9695f0c93", "assumed": true, "ascendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "descendantuuid": "31cf4782-37ba-4296-a200-bf2c44493a97", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1571810-c9b3-4820-ac09-0b2156b65052', 'INSERT', '{"uuid": "a1571810-c9b3-4820-ac09-0b2156b65052", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'db434f74-1259-46a6-97ca-2b3013c8ef39', 'INSERT', '{"uuid": "db434f74-1259-46a6-97ca-2b3013c8ef39", "assumed": true, "ascendantuuid": "882da02d-8e85-40e9-9740-d20d6ef5c0a6", "descendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c2216aac-925c-4bf0-9db8-226f7238bcd5', 'INSERT', '{"uuid": "c2216aac-925c-4bf0-9db8-226f7238bcd5", "assumed": true, "ascendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "descendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c130368b-1bf7-462b-b9f4-2ad8dfc6ad1e', 'INSERT', '{"uuid": "c130368b-1bf7-462b-b9f4-2ad8dfc6ad1e", "assumed": true, "ascendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a27c1539-308a-40e2-8492-6a30b7720849', 'INSERT', '{"uuid": "a27c1539-308a-40e2-8492-6a30b7720849", "assumed": true, "ascendantuuid": "f3e16f5c-42c6-4f75-af34-76a92aaf4a06", "descendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '438ec914-dab7-4fa7-8b85-3b8f89c9defd', 'INSERT', '{"uuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "roletype": "OWNER", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1b4d618b-b6e0-414f-9c54-2f20090605fa', 'INSERT', '{"uuid": "1b4d618b-b6e0-414f-9c54-2f20090605fa", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "882da02d-8e85-40e9-9740-d20d6ef5c0a6", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f7844391-b33e-41ff-be80-9c32d94c19a2', 'INSERT', '{"uuid": "f7844391-b33e-41ff-be80-9c32d94c19a2", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "21f928f2-d60e-4885-9d16-ac56767416bb", "grantedbyroleuuid": null, "grantedbytriggerof": "dec33315-b6ee-4257-8b4f-79ee2b3f86af"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'INSERT', '{"mark": null, "type": "VIP_CONTACT", "uuid": "dec33315-b6ee-4257-8b4f-79ee2b3f86af", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "contactuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '452aae38-0b88-4771-b632-9d883909bd8c', 'INSERT', '{"uuid": "452aae38-0b88-4771-b632-9d883909bd8c", "serialid": 72, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '65434844-1290-47a9-8a2f-e8b7430a3798', 'INSERT', '{"uuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "roletype": "OWNER", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5e9cea08-d822-40fe-a936-44d8647a07c1', 'INSERT', '{"op": "DELETE", "uuid": "5e9cea08-d822-40fe-a936-44d8647a07c1", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3f4b9c49-9ff6-40dc-86a5-a7f60b9642a1', 'INSERT', '{"uuid": "3f4b9c49-9ff6-40dc-86a5-a7f60b9642a1", "assumed": true, "ascendantuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "descendantuuid": "5e9cea08-d822-40fe-a936-44d8647a07c1", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7a27b8cb-c308-4e38-bb84-d4bdc0bcecbe', 'INSERT', '{"uuid": "7a27b8cb-c308-4e38-bb84-d4bdc0bcecbe", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c6a6913c-7159-43ca-ac3a-b498fed1287b', 'INSERT', '{"uuid": "c6a6913c-7159-43ca-ac3a-b498fed1287b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "grantedbyroleuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '08116e94-3a11-4286-be4e-53600b9ece82', 'INSERT', '{"uuid": "08116e94-3a11-4286-be4e-53600b9ece82", "roletype": "ADMIN", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '57346784-00e3-4552-9c1c-19d0c3900d80', 'INSERT', '{"op": "UPDATE", "uuid": "57346784-00e3-4552-9c1c-19d0c3900d80", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b957b5c9-9f49-415d-84b5-29608f8744a1', 'INSERT', '{"uuid": "b957b5c9-9f49-415d-84b5-29608f8744a1", "assumed": true, "ascendantuuid": "08116e94-3a11-4286-be4e-53600b9ece82", "descendantuuid": "57346784-00e3-4552-9c1c-19d0c3900d80", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd6f0f5aa-5bf4-452b-8eb2-24d1d61ba05f', 'INSERT', '{"uuid": "d6f0f5aa-5bf4-452b-8eb2-24d1d61ba05f", "assumed": true, "ascendantuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "descendantuuid": "08116e94-3a11-4286-be4e-53600b9ece82", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7006fb81-7298-464e-af9e-de7899548c10', 'INSERT', '{"uuid": "7006fb81-7298-464e-af9e-de7899548c10", "roletype": "AGENT", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3e9d45cd-cc52-458e-9a10-c783f2a26cf8', 'INSERT', '{"uuid": "3e9d45cd-cc52-458e-9a10-c783f2a26cf8", "assumed": true, "ascendantuuid": "08116e94-3a11-4286-be4e-53600b9ece82", "descendantuuid": "7006fb81-7298-464e-af9e-de7899548c10", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7048b10d-c499-45c1-8f04-f675d387d7a1', 'INSERT', '{"uuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "roletype": "TENANT", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9', 'INSERT', '{"op": "SELECT", "uuid": "013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9", "objectuuid": "452aae38-0b88-4771-b632-9d883909bd8c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c31fe1ed-2221-471c-bdce-bc750968d632', 'INSERT', '{"uuid": "c31fe1ed-2221-471c-bdce-bc750968d632", "assumed": true, "ascendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "descendantuuid": "013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '19f1e49b-a716-49af-98c8-a88c6dd8d94d', 'INSERT', '{"uuid": "19f1e49b-a716-49af-98c8-a88c6dd8d94d", "assumed": true, "ascendantuuid": "a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e", "descendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6500e951-528c-4aaf-b92e-35273018bb0f', 'INSERT', '{"uuid": "6500e951-528c-4aaf-b92e-35273018bb0f", "assumed": true, "ascendantuuid": "7006fb81-7298-464e-af9e-de7899548c10", "descendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '60eab5b0-ff57-4219-983f-27dec74cbfd1', 'INSERT', '{"uuid": "60eab5b0-ff57-4219-983f-27dec74cbfd1", "assumed": true, "ascendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "descendantuuid": "2b391e5d-6b69-4999-8ede-1885d700233f", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ddd9282d-c5e6-4e0e-b517-c011687b76f3', 'INSERT', '{"uuid": "ddd9282d-c5e6-4e0e-b517-c011687b76f3", "assumed": true, "ascendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '32ab2ae1-a03c-4577-b34a-22292673ed3a', 'INSERT', '{"uuid": "32ab2ae1-a03c-4577-b34a-22292673ed3a", "assumed": true, "ascendantuuid": "7048b10d-c499-45c1-8f04-f675d387d7a1", "descendantuuid": "3a8a00dd-e39f-4381-81a3-4e4698dcf29e", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7b29e693-d296-4a98-b069-559bed1c5470', 'INSERT', '{"uuid": "7b29e693-d296-4a98-b069-559bed1c5470", "assumed": true, "ascendantuuid": "b5c771dd-5b62-4631-85d8-5702e34266c3", "descendantuuid": "7006fb81-7298-464e-af9e-de7899548c10", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9a0adde6-bf1c-4ef7-8d2d-72de9bc86734', 'INSERT', '{"uuid": "9a0adde6-bf1c-4ef7-8d2d-72de9bc86734", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "65434844-1290-47a9-8a2f-e8b7430a3798", "grantedbyroleuuid": null, "grantedbytriggerof": "452aae38-0b88-4771-b632-9d883909bd8c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '452aae38-0b88-4771-b632-9d883909bd8c', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "452aae38-0b88-4771-b632-9d883909bd8c", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "a84dcd2e-f4fc-468d-a0b2-a8c449cc9420", "contactuuid": "5d8eac1a-86b2-4dfe-a1b0-34858fd04a86"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'INSERT', '{"uuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc", "serialid": 73, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7f506666-739d-430e-a61e-ed80c52eb812', 'INSERT', '{"op": "DELETE", "uuid": "7f506666-739d-430e-a61e-ed80c52eb812", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2d3aa89f-d4e7-426e-a65b-b5db8334c193', 'INSERT', '{"uuid": "2d3aa89f-d4e7-426e-a65b-b5db8334c193", "assumed": true, "ascendantuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "descendantuuid": "7f506666-739d-430e-a61e-ed80c52eb812", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '80a14332-1e9d-4f03-bd2c-088a04bebab2', 'INSERT', '{"uuid": "80a14332-1e9d-4f03-bd2c-088a04bebab2", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f9188036-8340-4e26-8e5f-89b1dded8bb2', 'INSERT', '{"uuid": "f9188036-8340-4e26-8e5f-89b1dded8bb2", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "grantedbyroleuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'be73c28b-c17d-4afa-a2ea-ade468bcd885', 'INSERT', '{"uuid": "be73c28b-c17d-4afa-a2ea-ade468bcd885", "roletype": "ADMIN", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'dbbdc763-bbea-42b3-b1b9-81ed8337ced3', 'INSERT', '{"op": "UPDATE", "uuid": "dbbdc763-bbea-42b3-b1b9-81ed8337ced3", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad33c798-c733-4cf2-943f-372fd0758c48', 'INSERT', '{"uuid": "ad33c798-c733-4cf2-943f-372fd0758c48", "assumed": true, "ascendantuuid": "be73c28b-c17d-4afa-a2ea-ade468bcd885", "descendantuuid": "dbbdc763-bbea-42b3-b1b9-81ed8337ced3", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b5183397-7ac1-4de2-8166-d92c91a4b8ae', 'INSERT', '{"uuid": "b5183397-7ac1-4de2-8166-d92c91a4b8ae", "assumed": true, "ascendantuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "descendantuuid": "be73c28b-c17d-4afa-a2ea-ade468bcd885", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '68c8e437-f0fe-4bc9-8143-79f96032568f', 'INSERT', '{"uuid": "68c8e437-f0fe-4bc9-8143-79f96032568f", "roletype": "AGENT", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '91c210ed-38bb-44d4-a663-232e81c012a6', 'INSERT', '{"uuid": "91c210ed-38bb-44d4-a663-232e81c012a6", "assumed": true, "ascendantuuid": "be73c28b-c17d-4afa-a2ea-ade468bcd885", "descendantuuid": "68c8e437-f0fe-4bc9-8143-79f96032568f", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0b976d62-6eab-48da-84ad-8a52025ce66f', 'INSERT', '{"uuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "roletype": "TENANT", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e83f5771-2a12-4f43-a099-b4874c8cb4d9', 'INSERT', '{"op": "SELECT", "uuid": "e83f5771-2a12-4f43-a099-b4874c8cb4d9", "objectuuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '893abaee-f798-4879-a589-085f7797d7f5', 'INSERT', '{"uuid": "893abaee-f798-4879-a589-085f7797d7f5", "assumed": true, "ascendantuuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "descendantuuid": "e83f5771-2a12-4f43-a099-b4874c8cb4d9", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a0e078f7-3df1-49d2-86b1-6a6d26097530', 'INSERT', '{"uuid": "a0e078f7-3df1-49d2-86b1-6a6d26097530", "assumed": true, "ascendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "descendantuuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '68cb2c5e-5ea0-43ea-a573-2d46139c39c8', 'INSERT', '{"uuid": "68cb2c5e-5ea0-43ea-a573-2d46139c39c8", "assumed": true, "ascendantuuid": "68c8e437-f0fe-4bc9-8143-79f96032568f", "descendantuuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd29d23e6-1a22-4410-8c4b-d43cc1864d24', 'INSERT', '{"uuid": "d29d23e6-1a22-4410-8c4b-d43cc1864d24", "assumed": true, "ascendantuuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "descendantuuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd7bf32bf-3a53-497e-a2a0-b90f75acc6f7', 'INSERT', '{"uuid": "d7bf32bf-3a53-497e-a2a0-b90f75acc6f7", "assumed": true, "ascendantuuid": "0b976d62-6eab-48da-84ad-8a52025ce66f", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '74a61898-72ca-4aba-b262-378ea4c34765', 'INSERT', '{"uuid": "74a61898-72ca-4aba-b262-378ea4c34765", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "68c8e437-f0fe-4bc9-8143-79f96032568f", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0f91e516-b6b1-48a9-b0ea-b9dbd945203c', 'INSERT', '{"uuid": "0f91e516-b6b1-48a9-b0ea-b9dbd945203c", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "438ec914-dab7-4fa7-8b85-3b8f89c9defd", "grantedbyroleuuid": null, "grantedbytriggerof": "354920fc-1b03-4c43-a9ee-52d0b11e07cc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "354920fc-1b03-4c43-a9ee-52d0b11e07cc", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "contactuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'INSERT', '{"uuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa", "serialid": 74, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', 'INSERT', '{"uuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "roletype": "OWNER", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1f415168-d244-4fd9-957f-542058489735', 'INSERT', '{"op": "DELETE", "uuid": "1f415168-d244-4fd9-957f-542058489735", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f0bcef0e-6f5c-47a8-aac2-d0a38b3d9470', 'INSERT', '{"uuid": "f0bcef0e-6f5c-47a8-aac2-d0a38b3d9470", "assumed": true, "ascendantuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "descendantuuid": "1f415168-d244-4fd9-957f-542058489735", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6b8caaf8-1c8c-4cad-b335-fb30456da5fc', 'INSERT', '{"uuid": "6b8caaf8-1c8c-4cad-b335-fb30456da5fc", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1591803c-6a02-4e99-ac33-f7540c82af88', 'INSERT', '{"uuid": "1591803c-6a02-4e99-ac33-f7540c82af88", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "grantedbyroleuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b85e909e-c4aa-4f8a-add6-0852179c69ba', 'INSERT', '{"uuid": "b85e909e-c4aa-4f8a-add6-0852179c69ba", "roletype": "ADMIN", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b0a7c854-4abc-4da7-af60-a5066e280ac0', 'INSERT', '{"op": "UPDATE", "uuid": "b0a7c854-4abc-4da7-af60-a5066e280ac0", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '66e09307-381f-4c73-95b9-3bf8c6d913ea', 'INSERT', '{"uuid": "66e09307-381f-4c73-95b9-3bf8c6d913ea", "assumed": true, "ascendantuuid": "b85e909e-c4aa-4f8a-add6-0852179c69ba", "descendantuuid": "b0a7c854-4abc-4da7-af60-a5066e280ac0", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7fabf4c5-7ebb-423f-8df9-ddc4b2b27f71', 'INSERT', '{"uuid": "7fabf4c5-7ebb-423f-8df9-ddc4b2b27f71", "assumed": true, "ascendantuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "descendantuuid": "b85e909e-c4aa-4f8a-add6-0852179c69ba", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', 'INSERT', '{"uuid": "8f589e1f-ff7c-4e41-bee5-ff33807ba4dd", "roletype": "AGENT", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '08fb99ed-97ef-4caf-a756-54cf4e9b3280', 'INSERT', '{"uuid": "08fb99ed-97ef-4caf-a756-54cf4e9b3280", "assumed": true, "ascendantuuid": "b85e909e-c4aa-4f8a-add6-0852179c69ba", "descendantuuid": "8f589e1f-ff7c-4e41-bee5-ff33807ba4dd", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9a8681ff-f4a6-4ba2-85fc-1623725c9029', 'INSERT', '{"uuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "roletype": "TENANT", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '23cd8020-fb71-4093-8bce-99ddf9badbcc', 'INSERT', '{"op": "SELECT", "uuid": "23cd8020-fb71-4093-8bce-99ddf9badbcc", "objectuuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '86ca1da4-f4b7-4f27-9874-bb2d26df4868', 'INSERT', '{"uuid": "86ca1da4-f4b7-4f27-9874-bb2d26df4868", "assumed": true, "ascendantuuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "descendantuuid": "23cd8020-fb71-4093-8bce-99ddf9badbcc", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2e38c9d3-3da3-4353-a3ae-26a70af4d812', 'INSERT', '{"uuid": "2e38c9d3-3da3-4353-a3ae-26a70af4d812", "assumed": true, "ascendantuuid": "4309a7bf-0556-40d0-872d-dcbb13273c62", "descendantuuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ec54e382-26f2-4be7-9134-34c2f9785b37', 'INSERT', '{"uuid": "ec54e382-26f2-4be7-9134-34c2f9785b37", "assumed": true, "ascendantuuid": "8f589e1f-ff7c-4e41-bee5-ff33807ba4dd", "descendantuuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '675d0627-cf95-4cd9-869a-fecb6c20b9b5', 'INSERT', '{"uuid": "675d0627-cf95-4cd9-869a-fecb6c20b9b5", "assumed": true, "ascendantuuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "descendantuuid": "5034d61c-e9dd-4b48-8dc8-b9279e015494", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '83ffdbaa-95b4-4d44-85d9-b6533dcbca7c', 'INSERT', '{"uuid": "83ffdbaa-95b4-4d44-85d9-b6533dcbca7c", "assumed": true, "ascendantuuid": "9a8681ff-f4a6-4ba2-85fc-1623725c9029", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd7fa7256-b2fb-437b-941f-a9e30c48ef43', 'INSERT', '{"uuid": "d7fa7256-b2fb-437b-941f-a9e30c48ef43", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "8f589e1f-ff7c-4e41-bee5-ff33807ba4dd", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0187072a-9ec4-4ac9-8d3a-81c4f6c287bb', 'INSERT', '{"uuid": "0187072a-9ec4-4ac9-8d3a-81c4f6c287bb", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "0629fcb7-03b8-46af-b60e-3f2e3f371f1e", "grantedbyroleuuid": null, "grantedbytriggerof": "e77a9a29-bc8f-48ea-a854-6efb979b86aa"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'INSERT', '{"mark": "customers-announce", "type": "SUBSCRIBER", "uuid": "e77a9a29-bc8f-48ea-a854-6efb979b86aa", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "contactuuid": "25083463-3713-4a20-b579-c1e34d542bcd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'INSERT', '{"uuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697", "serialid": 75, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', 'INSERT', '{"uuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "roletype": "OWNER", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2903b125-6d88-4867-8227-08c6236a6fb0', 'INSERT', '{"op": "DELETE", "uuid": "2903b125-6d88-4867-8227-08c6236a6fb0", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3cb68917-6424-4ec2-9e5a-68c4088e7874', 'INSERT', '{"uuid": "3cb68917-6424-4ec2-9e5a-68c4088e7874", "assumed": true, "ascendantuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "descendantuuid": "2903b125-6d88-4867-8227-08c6236a6fb0", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'efb8bbf0-a01e-4453-97e4-ecf13aeea7f6', 'INSERT', '{"uuid": "efb8bbf0-a01e-4453-97e4-ecf13aeea7f6", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fad2db88-0b9e-4408-82d2-fd0a7d9f2ccb', 'INSERT', '{"uuid": "fad2db88-0b9e-4408-82d2-fd0a7d9f2ccb", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "grantedbyroleuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0af56a45-20b6-4818-b7e9-90e4ee9373c9', 'INSERT', '{"uuid": "0af56a45-20b6-4818-b7e9-90e4ee9373c9", "roletype": "ADMIN", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'bc4a61d0-4c92-4a3f-890b-3b24080be036', 'INSERT', '{"op": "UPDATE", "uuid": "bc4a61d0-4c92-4a3f-890b-3b24080be036", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '091bd945-8d6f-473b-9a62-5397c8994050', 'INSERT', '{"uuid": "091bd945-8d6f-473b-9a62-5397c8994050", "assumed": true, "ascendantuuid": "0af56a45-20b6-4818-b7e9-90e4ee9373c9", "descendantuuid": "bc4a61d0-4c92-4a3f-890b-3b24080be036", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bc5709ea-7d85-4035-8969-5954fc6a7223', 'INSERT', '{"uuid": "bc5709ea-7d85-4035-8969-5954fc6a7223", "assumed": true, "ascendantuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "descendantuuid": "0af56a45-20b6-4818-b7e9-90e4ee9373c9", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ca0eede4-a9b8-4988-9da4-47830d8fe5c8', 'INSERT', '{"uuid": "ca0eede4-a9b8-4988-9da4-47830d8fe5c8", "roletype": "AGENT", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '66d0280a-c282-45bc-9045-5d226223fd05', 'INSERT', '{"uuid": "66d0280a-c282-45bc-9045-5d226223fd05", "assumed": true, "ascendantuuid": "0af56a45-20b6-4818-b7e9-90e4ee9373c9", "descendantuuid": "ca0eede4-a9b8-4988-9da4-47830d8fe5c8", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b043e81d-9fba-47cf-a98e-f80dce34346f', 'INSERT', '{"uuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "roletype": "TENANT", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '9a776bf3-1034-4dc0-a68f-fbdfb58ab625', 'INSERT', '{"op": "SELECT", "uuid": "9a776bf3-1034-4dc0-a68f-fbdfb58ab625", "objectuuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '17820603-13a9-4886-9931-2d1ea68668df', 'INSERT', '{"uuid": "17820603-13a9-4886-9931-2d1ea68668df", "assumed": true, "ascendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "descendantuuid": "9a776bf3-1034-4dc0-a68f-fbdfb58ab625", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '057ad94f-92b2-487e-9c01-b635b05ec248', 'INSERT', '{"uuid": "057ad94f-92b2-487e-9c01-b635b05ec248", "assumed": true, "ascendantuuid": "662d0ce7-6216-4366-9691-cb5e6020e36f", "descendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2984f108-bab8-45c9-a7dd-c4c0ab0cc3ac', 'INSERT', '{"uuid": "2984f108-bab8-45c9-a7dd-c4c0ab0cc3ac", "assumed": true, "ascendantuuid": "ca0eede4-a9b8-4988-9da4-47830d8fe5c8", "descendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd560d5cb-c359-4e83-909c-2da1ef50fb2a', 'INSERT', '{"uuid": "d560d5cb-c359-4e83-909c-2da1ef50fb2a", "assumed": true, "ascendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "descendantuuid": "c16a64f9-5dd6-447b-bf7f-f19d542b981b", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '130cd5ad-395a-4fd2-89f2-703ee6380464', 'INSERT', '{"uuid": "130cd5ad-395a-4fd2-89f2-703ee6380464", "assumed": true, "ascendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '95f970a2-f4d6-49cb-a0bf-a0c2d1f34cc7', 'INSERT', '{"uuid": "95f970a2-f4d6-49cb-a0bf-a0c2d1f34cc7", "assumed": true, "ascendantuuid": "b043e81d-9fba-47cf-a98e-f80dce34346f", "descendantuuid": "81b01454-08e4-48ab-9879-4b7ea82a0531", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f41a14d1-65c8-41b6-93f6-051a362b3210', 'INSERT', '{"uuid": "f41a14d1-65c8-41b6-93f6-051a362b3210", "assumed": true, "ascendantuuid": "a9238907-5ce4-40c3-81a7-3822d6bc7c5c", "descendantuuid": "ca0eede4-a9b8-4988-9da4-47830d8fe5c8", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2f127ce9-414b-47c8-ac3c-82c7ccc9709d', 'INSERT', '{"uuid": "2f127ce9-414b-47c8-ac3c-82c7ccc9709d", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "dedbb861-5c9b-4ecd-8573-70e7e2d226fd", "grantedbyroleuuid": null, "grantedbytriggerof": "68dea4fd-58cf-47bd-91af-745dcf8aa697"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'INSERT', '{"mark": null, "type": "VIP_CONTACT", "uuid": "68dea4fd-58cf-47bd-91af-745dcf8aa697", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "f4e3fd05-43f8-49cb-a167-91a91640a117", "contactuuid": "dbf6038a-0387-400d-b083-411ba014ff6a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'INSERT', '{"uuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5", "serialid": 76, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd1ec7d97-2494-4220-bd5c-81e709cd3926', 'INSERT', '{"uuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "roletype": "OWNER", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '19a24fa5-63a3-4c56-ba6a-650024cbdd64', 'INSERT', '{"op": "DELETE", "uuid": "19a24fa5-63a3-4c56-ba6a-650024cbdd64", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2388e5dc-f026-4cf5-9e7c-8e0a6cdab462', 'INSERT', '{"uuid": "2388e5dc-f026-4cf5-9e7c-8e0a6cdab462", "assumed": true, "ascendantuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "descendantuuid": "19a24fa5-63a3-4c56-ba6a-650024cbdd64", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2063cfc6-995f-43b4-8825-678f8acc202f', 'INSERT', '{"uuid": "2063cfc6-995f-43b4-8825-678f8acc202f", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ec9b656e-0bbb-4885-92ab-242a83694079', 'INSERT', '{"uuid": "ec9b656e-0bbb-4885-92ab-242a83694079", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "grantedbyroleuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', 'INSERT', '{"uuid": "c9f248c6-10f8-4ae9-91ff-c25d8f355ec3", "roletype": "ADMIN", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd0c476d4-546c-49c9-ae12-794cfa3942c6', 'INSERT', '{"op": "UPDATE", "uuid": "d0c476d4-546c-49c9-ae12-794cfa3942c6", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c05ab4f7-d09a-489a-b144-20c000609b61', 'INSERT', '{"uuid": "c05ab4f7-d09a-489a-b144-20c000609b61", "assumed": true, "ascendantuuid": "c9f248c6-10f8-4ae9-91ff-c25d8f355ec3", "descendantuuid": "d0c476d4-546c-49c9-ae12-794cfa3942c6", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '41dc91a5-c6f3-49bf-ae19-0576655a0a3e', 'INSERT', '{"uuid": "41dc91a5-c6f3-49bf-ae19-0576655a0a3e", "assumed": true, "ascendantuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "descendantuuid": "c9f248c6-10f8-4ae9-91ff-c25d8f355ec3", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '32418973-8381-4c36-99b4-f26750994819', 'INSERT', '{"uuid": "32418973-8381-4c36-99b4-f26750994819", "roletype": "AGENT", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd6e9a87c-8841-405e-a092-ef381d71eada', 'INSERT', '{"uuid": "d6e9a87c-8841-405e-a092-ef381d71eada", "assumed": true, "ascendantuuid": "c9f248c6-10f8-4ae9-91ff-c25d8f355ec3", "descendantuuid": "32418973-8381-4c36-99b4-f26750994819", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3c443fbc-dffe-4c72-8522-96ef96276f82', 'INSERT', '{"uuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "roletype": "TENANT", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '975a934a-0ec0-4b14-a513-bd4dd42b8245', 'INSERT', '{"op": "SELECT", "uuid": "975a934a-0ec0-4b14-a513-bd4dd42b8245", "objectuuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '489a1b7e-4410-496d-b35a-6d78f277f673', 'INSERT', '{"uuid": "489a1b7e-4410-496d-b35a-6d78f277f673", "assumed": true, "ascendantuuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "descendantuuid": "975a934a-0ec0-4b14-a513-bd4dd42b8245", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9df07658-0e9a-46e9-9e18-7d36d61a25a1', 'INSERT', '{"uuid": "9df07658-0e9a-46e9-9e18-7d36d61a25a1", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '74f8dd22-4489-430e-884f-a70e2ff6ee5e', 'INSERT', '{"uuid": "74f8dd22-4489-430e-884f-a70e2ff6ee5e", "assumed": true, "ascendantuuid": "32418973-8381-4c36-99b4-f26750994819", "descendantuuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7c7199f2-ed89-4806-afa1-fbb3caf0a113', 'INSERT', '{"uuid": "7c7199f2-ed89-4806-afa1-fbb3caf0a113", "assumed": true, "ascendantuuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "descendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b201ddfc-19c4-4f62-b7ac-4450464e5130', 'INSERT', '{"uuid": "b201ddfc-19c4-4f62-b7ac-4450464e5130", "assumed": true, "ascendantuuid": "3c443fbc-dffe-4c72-8522-96ef96276f82", "descendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c873c6ce-5a58-4e16-8bb8-06d8eccfe9d3', 'INSERT', '{"uuid": "c873c6ce-5a58-4e16-8bb8-06d8eccfe9d3", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "32418973-8381-4c36-99b4-f26750994819", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1cf7debe-b0cf-44c5-8172-6c8b21c71c55', 'INSERT', '{"uuid": "1cf7debe-b0cf-44c5-8172-6c8b21c71c55", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "d1ec7d97-2494-4220-bd5c-81e709cd3926", "grantedbyroleuuid": null, "grantedbytriggerof": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5", "version": 0, "anchoruuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "holderuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "contactuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '171aa70c-1909-417e-9daf-b17c36857995', 'INSERT', '{"uuid": "171aa70c-1909-417e-9daf-b17c36857995", "serialid": 77, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '720ad69e-cb68-4653-8d31-6df8bb93d3f9', 'INSERT', '{"uuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "roletype": "OWNER", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e227c024-38a4-4544-be9e-3cefdeaf7a89', 'INSERT', '{"op": "DELETE", "uuid": "e227c024-38a4-4544-be9e-3cefdeaf7a89", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '67be211b-e625-40e6-a0fa-1d48cfd0cc78', 'INSERT', '{"uuid": "67be211b-e625-40e6-a0fa-1d48cfd0cc78", "assumed": true, "ascendantuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "descendantuuid": "e227c024-38a4-4544-be9e-3cefdeaf7a89", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b1e0362b-b3ba-41e4-b1ef-94df086ed8e4', 'INSERT', '{"uuid": "b1e0362b-b3ba-41e4-b1ef-94df086ed8e4", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '16f955da-120a-46d4-b87b-b4621b1a3e29', 'INSERT', '{"uuid": "16f955da-120a-46d4-b87b-b4621b1a3e29", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "grantedbyroleuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', 'INSERT', '{"uuid": "a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb", "roletype": "ADMIN", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '177b8109-10d1-4f88-ba89-b04d92d9bab0', 'INSERT', '{"op": "UPDATE", "uuid": "177b8109-10d1-4f88-ba89-b04d92d9bab0", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9ef2bfba-1c10-439d-8d55-5567dba9c4a1', 'INSERT', '{"uuid": "9ef2bfba-1c10-439d-8d55-5567dba9c4a1", "assumed": true, "ascendantuuid": "a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb", "descendantuuid": "177b8109-10d1-4f88-ba89-b04d92d9bab0", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aba07fda-44b5-4ca0-b11f-1896f8d8949c', 'INSERT', '{"uuid": "aba07fda-44b5-4ca0-b11f-1896f8d8949c", "assumed": true, "ascendantuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "descendantuuid": "a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', 'INSERT', '{"uuid": "57f95e9c-d5c6-4a4b-8969-cc4451a7bc59", "roletype": "AGENT", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a67817b8-155b-4d8e-b4aa-3029f1cfbc91', 'INSERT', '{"uuid": "a67817b8-155b-4d8e-b4aa-3029f1cfbc91", "assumed": true, "ascendantuuid": "a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb", "descendantuuid": "57f95e9c-d5c6-4a4b-8969-cc4451a7bc59", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '41403571-c524-4355-882b-b30af5000849', 'INSERT', '{"uuid": "41403571-c524-4355-882b-b30af5000849", "roletype": "TENANT", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3e158ad0-d757-434a-a50c-6973cf0e0ebe', 'INSERT', '{"op": "SELECT", "uuid": "3e158ad0-d757-434a-a50c-6973cf0e0ebe", "objectuuid": "171aa70c-1909-417e-9daf-b17c36857995", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b36e7e59-ccd4-4d21-9326-24274f8c8ab6', 'INSERT', '{"uuid": "b36e7e59-ccd4-4d21-9326-24274f8c8ab6", "assumed": true, "ascendantuuid": "41403571-c524-4355-882b-b30af5000849", "descendantuuid": "3e158ad0-d757-434a-a50c-6973cf0e0ebe", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '25cbb45c-69f6-4266-8527-8281d4fa45c0', 'INSERT', '{"uuid": "25cbb45c-69f6-4266-8527-8281d4fa45c0", "assumed": true, "ascendantuuid": "36cbc041-bb3d-4058-9ccd-2d608992aeef", "descendantuuid": "41403571-c524-4355-882b-b30af5000849", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5eb6d882-c7f2-42e5-8231-47c97c57cc10', 'INSERT', '{"uuid": "5eb6d882-c7f2-42e5-8231-47c97c57cc10", "assumed": true, "ascendantuuid": "57f95e9c-d5c6-4a4b-8969-cc4451a7bc59", "descendantuuid": "41403571-c524-4355-882b-b30af5000849", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c3ae1e79-b7a1-4037-a09e-9190e43d7c43', 'INSERT', '{"uuid": "c3ae1e79-b7a1-4037-a09e-9190e43d7c43", "assumed": true, "ascendantuuid": "41403571-c524-4355-882b-b30af5000849", "descendantuuid": "8c7cf942-2ebd-43d0-88d7-5b2c9a52551d", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fda077e3-7650-40c1-a5f8-ef0e4cb53cba', 'INSERT', '{"uuid": "fda077e3-7650-40c1-a5f8-ef0e4cb53cba", "assumed": true, "ascendantuuid": "41403571-c524-4355-882b-b30af5000849", "descendantuuid": "df81248e-911b-4793-9913-0538a12ea820", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1678db5d-92e1-4a62-98e6-54dbb5cc1c7a', 'INSERT', '{"uuid": "1678db5d-92e1-4a62-98e6-54dbb5cc1c7a", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "57f95e9c-d5c6-4a4b-8969-cc4451a7bc59", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', '23731ee7-5762-4c61-b825-d19a31217388', 'INSERT', '{"uuid": "23731ee7-5762-4c61-b825-d19a31217388", "serialid": 144, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cc9cc6d3-2e80-4cfa-8240-186a3624f29a', 'INSERT', '{"uuid": "cc9cc6d3-2e80-4cfa-8240-186a3624f29a", "assumed": true, "ascendantuuid": "d7925313-949f-4b4e-95c4-23e82e5b2f7c", "descendantuuid": "720ad69e-cb68-4653-8d31-6df8bb93d3f9", "grantedbyroleuuid": null, "grantedbytriggerof": "171aa70c-1909-417e-9daf-b17c36857995"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '171aa70c-1909-417e-9daf-b17c36857995', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "171aa70c-1909-417e-9daf-b17c36857995", "version": 0, "anchoruuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "holderuuid": "e63e7baf-f809-4c1c-a9e0-912ce0a610e9", "contactuuid": "4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'INSERT', '{"uuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8", "serialid": 78, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', 'INSERT', '{"uuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "roletype": "OWNER", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '865d8af9-ff16-4388-beb8-420fb0e0c64b', 'INSERT', '{"op": "DELETE", "uuid": "865d8af9-ff16-4388-beb8-420fb0e0c64b", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a8c942cf-ac13-417d-9c73-5426467bb6e3', 'INSERT', '{"uuid": "a8c942cf-ac13-417d-9c73-5426467bb6e3", "assumed": true, "ascendantuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "descendantuuid": "865d8af9-ff16-4388-beb8-420fb0e0c64b", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3b6a4dfd-55f2-4711-86b3-1dcf2933ef34', 'INSERT', '{"uuid": "3b6a4dfd-55f2-4711-86b3-1dcf2933ef34", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '09cdbb90-9435-472e-91a0-0b8cc7082fff', 'INSERT', '{"uuid": "09cdbb90-9435-472e-91a0-0b8cc7082fff", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "grantedbyroleuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '962281d2-0226-4e95-a682-a99c3a437f88', 'INSERT', '{"uuid": "962281d2-0226-4e95-a682-a99c3a437f88", "roletype": "ADMIN", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '62cd8ee8-96a5-4a38-b5f2-65a41ac34c72', 'INSERT', '{"op": "UPDATE", "uuid": "62cd8ee8-96a5-4a38-b5f2-65a41ac34c72", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e56bf686-3c6c-485e-9240-a8fd8fe67b29', 'INSERT', '{"uuid": "e56bf686-3c6c-485e-9240-a8fd8fe67b29", "assumed": true, "ascendantuuid": "962281d2-0226-4e95-a682-a99c3a437f88", "descendantuuid": "62cd8ee8-96a5-4a38-b5f2-65a41ac34c72", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f373e05c-54af-424c-937c-a4ae657dd7c5', 'INSERT', '{"uuid": "f373e05c-54af-424c-937c-a4ae657dd7c5", "assumed": true, "ascendantuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "descendantuuid": "962281d2-0226-4e95-a682-a99c3a437f88", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '861ce7c1-cd92-40cd-963a-0c0e5caadc08', 'INSERT', '{"uuid": "861ce7c1-cd92-40cd-963a-0c0e5caadc08", "roletype": "AGENT", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4f85209c-6b56-4ac1-90d6-afbd1d0b9d19', 'INSERT', '{"uuid": "4f85209c-6b56-4ac1-90d6-afbd1d0b9d19", "assumed": true, "ascendantuuid": "962281d2-0226-4e95-a682-a99c3a437f88", "descendantuuid": "861ce7c1-cd92-40cd-963a-0c0e5caadc08", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '485b7c84-8089-47f4-8111-f6533cb8b959', 'INSERT', '{"uuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "roletype": "TENANT", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1d7dba81-1bb8-4e28-a1b3-0e5376b5646f', 'INSERT', '{"op": "SELECT", "uuid": "1d7dba81-1bb8-4e28-a1b3-0e5376b5646f", "objectuuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ae019915-93e0-4ae3-8e38-c4b1f5745c37', 'INSERT', '{"uuid": "ae019915-93e0-4ae3-8e38-c4b1f5745c37", "assumed": true, "ascendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "descendantuuid": "1d7dba81-1bb8-4e28-a1b3-0e5376b5646f", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a9a9bf81-3dfc-4e71-b847-916862598d89', 'INSERT', '{"uuid": "a9a9bf81-3dfc-4e71-b847-916862598d89", "assumed": true, "ascendantuuid": "79cc0827-439d-4357-8749-97d21830f648", "descendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '50e6c6de-a3b5-4976-a2ae-a9f441950e21', 'INSERT', '{"uuid": "50e6c6de-a3b5-4976-a2ae-a9f441950e21", "assumed": true, "ascendantuuid": "861ce7c1-cd92-40cd-963a-0c0e5caadc08", "descendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd901cdd6-ce9a-4630-b518-cfbd6ec88e08', 'INSERT', '{"uuid": "d901cdd6-ce9a-4630-b518-cfbd6ec88e08", "assumed": true, "ascendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "descendantuuid": "1cf65eee-3ae3-4c77-9ce0-e156db37da82", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd37a4b84-6990-4f7a-b546-06adb3b39d62', 'INSERT', '{"uuid": "d37a4b84-6990-4f7a-b546-06adb3b39d62", "assumed": true, "ascendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "descendantuuid": "8dca2daf-408f-4e45-a777-a3f61b543450", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '900061f4-11a6-42cc-aead-c4f314850c66', 'INSERT', '{"uuid": "900061f4-11a6-42cc-aead-c4f314850c66", "assumed": true, "ascendantuuid": "485b7c84-8089-47f4-8111-f6533cb8b959", "descendantuuid": "c25516ad-8358-49e5-ae55-ccecc2fc9b3b", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '38d425b4-6e8d-43d2-a6eb-393b5c79fd1c', 'INSERT', '{"uuid": "38d425b4-6e8d-43d2-a6eb-393b5c79fd1c", "assumed": true, "ascendantuuid": "408c77c7-1c50-46c2-a0e3-27046473e0a5", "descendantuuid": "861ce7c1-cd92-40cd-963a-0c0e5caadc08", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '592c5e12-ee95-43ac-a592-7f2bdcde63f8', 'INSERT', '{"uuid": "592c5e12-ee95-43ac-a592-7f2bdcde63f8", "assumed": true, "ascendantuuid": "dc6711c9-3fd7-4913-86fc-2bbd48b590ee", "descendantuuid": "f98f4c1d-b7aa-4e43-abc4-306832ddb8f0", "grantedbyroleuuid": null, "grantedbytriggerof": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8", "version": 0, "anchoruuid": "f50adac4-8248-4179-bfaf-26f03d96d13b", "holderuuid": "7e11b785-e756-49de-a3b3-2f001ea79993", "contactuuid": "c5bd22df-9452-49c1-b369-b98c10a90853"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'INSERT', '{"uuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca", "serialid": 79, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'INSERT', '{"uuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "roletype": "OWNER", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'ddb6560c-5ec6-4eeb-a43f-9194035ae988', 'INSERT', '{"op": "DELETE", "uuid": "ddb6560c-5ec6-4eeb-a43f-9194035ae988", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b7ab4197-e81f-45ee-b5f0-7f518f5c842d', 'INSERT', '{"uuid": "b7ab4197-e81f-45ee-b5f0-7f518f5c842d", "assumed": true, "ascendantuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "descendantuuid": "ddb6560c-5ec6-4eeb-a43f-9194035ae988", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6f470e75-8ad1-46e7-aed2-414e101f9d77', 'INSERT', '{"uuid": "6f470e75-8ad1-46e7-aed2-414e101f9d77", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2d7ec8cf-f323-4cc3-a138-12de90652dc1', 'INSERT', '{"uuid": "2d7ec8cf-f323-4cc3-a138-12de90652dc1", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "grantedbyroleuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'aed54bde-3462-48f9-8845-b2917efd4a52', 'INSERT', '{"uuid": "aed54bde-3462-48f9-8845-b2917efd4a52", "roletype": "ADMIN", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c', 'INSERT', '{"op": "UPDATE", "uuid": "36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cdf1a128-4f1f-4073-8720-5f63bf6f6eb0', 'INSERT', '{"uuid": "cdf1a128-4f1f-4073-8720-5f63bf6f6eb0", "assumed": true, "ascendantuuid": "aed54bde-3462-48f9-8845-b2917efd4a52", "descendantuuid": "36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aaf1f9ec-78fe-4abc-ab7c-9f9d213cba32', 'INSERT', '{"uuid": "aaf1f9ec-78fe-4abc-ab7c-9f9d213cba32", "assumed": true, "ascendantuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "descendantuuid": "aed54bde-3462-48f9-8845-b2917efd4a52", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1c67671f-349a-489d-98f2-7a6e6fc84746', 'INSERT', '{"uuid": "1c67671f-349a-489d-98f2-7a6e6fc84746", "roletype": "AGENT", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '93af6e03-ea35-445e-8481-30404326d0f3', 'INSERT', '{"uuid": "93af6e03-ea35-445e-8481-30404326d0f3", "assumed": true, "ascendantuuid": "aed54bde-3462-48f9-8845-b2917efd4a52", "descendantuuid": "1c67671f-349a-489d-98f2-7a6e6fc84746", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2679288a-5661-4387-be6d-808e13e2f1d1', 'INSERT', '{"uuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "roletype": "TENANT", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8b746056-f66e-4de2-9899-1c19df064764', 'INSERT', '{"op": "SELECT", "uuid": "8b746056-f66e-4de2-9899-1c19df064764", "objectuuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8db9fcd9-ccbb-4b4b-96b2-f166abae4011', 'INSERT', '{"uuid": "8db9fcd9-ccbb-4b4b-96b2-f166abae4011", "assumed": true, "ascendantuuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "descendantuuid": "8b746056-f66e-4de2-9899-1c19df064764", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a6f1758-e7e2-4528-8604-7becdc876d20', 'INSERT', '{"uuid": "0a6f1758-e7e2-4528-8604-7becdc876d20", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd1f21c4a-cafa-44a5-a383-53c677e9e6b0', 'INSERT', '{"uuid": "d1f21c4a-cafa-44a5-a383-53c677e9e6b0", "assumed": true, "ascendantuuid": "1c67671f-349a-489d-98f2-7a6e6fc84746", "descendantuuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f1568402-7a7c-4599-b791-9e5ab5bf27e7', 'INSERT', '{"uuid": "f1568402-7a7c-4599-b791-9e5ab5bf27e7", "assumed": true, "ascendantuuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "descendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '807dad87-d52b-437a-9ba7-d5d6e76fd9f0', 'INSERT', '{"uuid": "807dad87-d52b-437a-9ba7-d5d6e76fd9f0", "assumed": true, "ascendantuuid": "2679288a-5661-4387-be6d-808e13e2f1d1", "descendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '882967f8-21c7-4856-8799-623b638ea88a', 'INSERT', '{"uuid": "882967f8-21c7-4856-8799-623b638ea88a", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "1c67671f-349a-489d-98f2-7a6e6fc84746", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '81eeb652-5d64-4aab-a1ce-8f53e3820775', 'INSERT', '{"uuid": "81eeb652-5d64-4aab-a1ce-8f53e3820775", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "9815ea68-519b-4aa0-9f9b-f0667a3c9467", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a78230-3b9c-4cca-971d-b9c2171f22ca"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "b4a78230-3b9c-4cca-971d-b9c2171f22ca", "version": 0, "anchoruuid": "d616957a-e628-498e-b230-be25244d4e30", "holderuuid": "d616957a-e628-498e-b230-be25244d4e30", "contactuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '2267ef17-1092-4799-b042-8b06389bd4a9', 'INSERT', '{"uuid": "2267ef17-1092-4799-b042-8b06389bd4a9", "serialid": 80, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a9515288-170d-4817-852c-43403863ec9a', 'INSERT', '{"uuid": "a9515288-170d-4817-852c-43403863ec9a", "roletype": "OWNER", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '00f7119a-b78a-414f-8760-2689d85e8e01', 'INSERT', '{"op": "DELETE", "uuid": "00f7119a-b78a-414f-8760-2689d85e8e01", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '834572bb-e7be-4765-95f9-e94f0935dd9b', 'INSERT', '{"uuid": "834572bb-e7be-4765-95f9-e94f0935dd9b", "assumed": true, "ascendantuuid": "a9515288-170d-4817-852c-43403863ec9a", "descendantuuid": "00f7119a-b78a-414f-8760-2689d85e8e01", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7c721a25-a1aa-485a-89f3-531911b7ce9b', 'INSERT', '{"uuid": "7c721a25-a1aa-485a-89f3-531911b7ce9b", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "a9515288-170d-4817-852c-43403863ec9a", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1619a61-9896-44e3-9898-ca393f1fbee2', 'INSERT', '{"uuid": "a1619a61-9896-44e3-9898-ca393f1fbee2", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "a9515288-170d-4817-852c-43403863ec9a", "grantedbyroleuuid": "a9515288-170d-4817-852c-43403863ec9a", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '41040940-a56e-431d-b876-43c26ee04cca', 'INSERT', '{"uuid": "41040940-a56e-431d-b876-43c26ee04cca", "roletype": "ADMIN", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1294da14-f1c6-49e8-9c42-70c91489e867', 'INSERT', '{"op": "UPDATE", "uuid": "1294da14-f1c6-49e8-9c42-70c91489e867", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5cf299fa-6261-46e6-9974-6f062373a48a', 'INSERT', '{"uuid": "5cf299fa-6261-46e6-9974-6f062373a48a", "assumed": true, "ascendantuuid": "41040940-a56e-431d-b876-43c26ee04cca", "descendantuuid": "1294da14-f1c6-49e8-9c42-70c91489e867", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c1b7de17-b301-433c-8d10-8fe3e874cce7', 'INSERT', '{"uuid": "c1b7de17-b301-433c-8d10-8fe3e874cce7", "assumed": true, "ascendantuuid": "a9515288-170d-4817-852c-43403863ec9a", "descendantuuid": "41040940-a56e-431d-b876-43c26ee04cca", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '73f146ee-548d-4429-9146-5b75c6d9f457', 'INSERT', '{"uuid": "73f146ee-548d-4429-9146-5b75c6d9f457", "roletype": "AGENT", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6cb3328f-4831-435c-aa91-4cdd7bd68807', 'INSERT', '{"uuid": "6cb3328f-4831-435c-aa91-4cdd7bd68807", "assumed": true, "ascendantuuid": "41040940-a56e-431d-b876-43c26ee04cca", "descendantuuid": "73f146ee-548d-4429-9146-5b75c6d9f457", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', 'INSERT', '{"uuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "roletype": "TENANT", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '39276e87-f1cb-40bf-b0b2-5d9d6308ec41', 'INSERT', '{"op": "SELECT", "uuid": "39276e87-f1cb-40bf-b0b2-5d9d6308ec41", "objectuuid": "2267ef17-1092-4799-b042-8b06389bd4a9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1de8975d-fe4e-4758-a641-0ad13da8b29b', 'INSERT', '{"uuid": "1de8975d-fe4e-4758-a641-0ad13da8b29b", "assumed": true, "ascendantuuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "descendantuuid": "39276e87-f1cb-40bf-b0b2-5d9d6308ec41", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9bf6ddc8-2993-4ea6-b91b-3ec9bf011f64', 'INSERT', '{"uuid": "9bf6ddc8-2993-4ea6-b91b-3ec9bf011f64", "assumed": true, "ascendantuuid": "ebc79c6f-f4ce-452e-bd14-f02f9b6412cb", "descendantuuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '71351773-c809-49c6-9378-2d4721838844', 'INSERT', '{"uuid": "71351773-c809-49c6-9378-2d4721838844", "assumed": true, "ascendantuuid": "73f146ee-548d-4429-9146-5b75c6d9f457", "descendantuuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e3392bbf-5b85-4f92-9beb-c0c797ab22f0', 'INSERT', '{"uuid": "e3392bbf-5b85-4f92-9beb-c0c797ab22f0", "assumed": true, "ascendantuuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "descendantuuid": "96bb1170-326f-47f1-a8d5-c6b9451cbc11", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c15fe39b-5820-44cf-956d-3f375ae1a3a2', 'INSERT', '{"uuid": "c15fe39b-5820-44cf-956d-3f375ae1a3a2", "assumed": true, "ascendantuuid": "e5bcf7c1-ea1f-4c6d-b073-751380d13765", "descendantuuid": "0059aef9-29f6-46c0-abb7-ae9e8ddc14c7", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ae443b50-160c-4d74-90db-545039da22cd', 'INSERT', '{"uuid": "ae443b50-160c-4d74-90db-545039da22cd", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "73f146ee-548d-4429-9146-5b75c6d9f457", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '16598295-8a75-47bb-b99a-1d660f1725ac', 'INSERT', '{"uuid": "16598295-8a75-47bb-b99a-1d660f1725ac", "assumed": true, "ascendantuuid": "c1b20a45-166a-4b7c-bc66-a935f58c19f5", "descendantuuid": "a9515288-170d-4817-852c-43403863ec9a", "grantedbyroleuuid": null, "grantedbytriggerof": "2267ef17-1092-4799-b042-8b06389bd4a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '2267ef17-1092-4799-b042-8b06389bd4a9', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "2267ef17-1092-4799-b042-8b06389bd4a9", "version": 0, "anchoruuid": "d616957a-e628-498e-b230-be25244d4e30", "holderuuid": "d616957a-e628-498e-b230-be25244d4e30", "contactuuid": "6a90be4f-4017-4bb6-957d-0ac7c92ccfa5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'INSERT', '{"uuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425", "serialid": 81, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', 'INSERT', '{"uuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "roletype": "OWNER", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2a074a2d-95cf-4e3e-bb86-0b574f1eb725', 'INSERT', '{"op": "DELETE", "uuid": "2a074a2d-95cf-4e3e-bb86-0b574f1eb725", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e55edbe7-871a-4e3a-a145-9546b1a4c969', 'INSERT', '{"uuid": "e55edbe7-871a-4e3a-a145-9546b1a4c969", "assumed": true, "ascendantuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "descendantuuid": "2a074a2d-95cf-4e3e-bb86-0b574f1eb725", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd1e2a054-9831-4b9f-9d06-02d705b021fa', 'INSERT', '{"uuid": "d1e2a054-9831-4b9f-9d06-02d705b021fa", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '79901c0d-bcbb-4e0b-9cfa-1a44796c200d', 'INSERT', '{"uuid": "79901c0d-bcbb-4e0b-9cfa-1a44796c200d", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "grantedbyroleuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fb83effe-60ab-419e-9ad7-d0ca116888c8', 'INSERT', '{"uuid": "fb83effe-60ab-419e-9ad7-d0ca116888c8", "roletype": "ADMIN", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f8764363-b3fa-4008-9686-98403ecc66ad', 'INSERT', '{"op": "UPDATE", "uuid": "f8764363-b3fa-4008-9686-98403ecc66ad", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6ff7ea66-98b1-4a17-8b4a-4321e44bd2c0', 'INSERT', '{"uuid": "6ff7ea66-98b1-4a17-8b4a-4321e44bd2c0", "assumed": true, "ascendantuuid": "fb83effe-60ab-419e-9ad7-d0ca116888c8", "descendantuuid": "f8764363-b3fa-4008-9686-98403ecc66ad", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4c7c8ac0-7a0e-43e7-a791-3ec53d7ed391', 'INSERT', '{"uuid": "4c7c8ac0-7a0e-43e7-a791-3ec53d7ed391", "assumed": true, "ascendantuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "descendantuuid": "fb83effe-60ab-419e-9ad7-d0ca116888c8", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', 'INSERT', '{"uuid": "a22092fb-7d7f-41b6-bfb0-fcae5aabcda8", "roletype": "AGENT", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a1797c24-2e12-4563-975c-9e30751877b5', 'INSERT', '{"uuid": "a1797c24-2e12-4563-975c-9e30751877b5", "assumed": true, "ascendantuuid": "fb83effe-60ab-419e-9ad7-d0ca116888c8", "descendantuuid": "a22092fb-7d7f-41b6-bfb0-fcae5aabcda8", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b57a71fc-19af-43e2-976c-5572d455f343', 'INSERT', '{"uuid": "b57a71fc-19af-43e2-976c-5572d455f343", "roletype": "TENANT", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7585e5c2-0759-4aa9-ae5d-680620e29838', 'INSERT', '{"op": "SELECT", "uuid": "7585e5c2-0759-4aa9-ae5d-680620e29838", "objectuuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd5ddb2f3-0b52-4478-bf41-22fc6701513a', 'INSERT', '{"uuid": "d5ddb2f3-0b52-4478-bf41-22fc6701513a", "assumed": true, "ascendantuuid": "b57a71fc-19af-43e2-976c-5572d455f343", "descendantuuid": "7585e5c2-0759-4aa9-ae5d-680620e29838", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4d4c6bf8-70ee-4dad-8af1-b2546cdde3de', 'INSERT', '{"uuid": "4d4c6bf8-70ee-4dad-8af1-b2546cdde3de", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "b57a71fc-19af-43e2-976c-5572d455f343", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1443f60d-caf0-408a-b9aa-fa50142d4c18', 'INSERT', '{"uuid": "1443f60d-caf0-408a-b9aa-fa50142d4c18", "assumed": true, "ascendantuuid": "a22092fb-7d7f-41b6-bfb0-fcae5aabcda8", "descendantuuid": "b57a71fc-19af-43e2-976c-5572d455f343", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'caa0c381-b269-4e38-9a6b-1f37960cb372', 'INSERT', '{"uuid": "caa0c381-b269-4e38-9a6b-1f37960cb372", "assumed": true, "ascendantuuid": "b57a71fc-19af-43e2-976c-5572d455f343", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cdf43173-6c05-4b7c-95ea-70dc668743d9', 'INSERT', '{"uuid": "cdf43173-6c05-4b7c-95ea-70dc668743d9", "assumed": true, "ascendantuuid": "b57a71fc-19af-43e2-976c-5572d455f343", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '21c8da71-c2ee-46a7-a3c0-b54525372c5f', 'INSERT', '{"uuid": "21c8da71-c2ee-46a7-a3c0-b54525372c5f", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "a22092fb-7d7f-41b6-bfb0-fcae5aabcda8", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1e913e5d-6fb0-4726-9cda-3cf20c75ac31', 'INSERT', '{"uuid": "1e913e5d-6fb0-4726-9cda-3cf20c75ac31", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "d660a6f5-b185-4fd2-af58-fd3e9a69b8a5", "grantedbyroleuuid": null, "grantedbytriggerof": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "cd0221f8-3c5a-4a7f-9519-ec6dbb51f425", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "contactuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '05f9829a-f505-4758-891e-5f38b5242d75', 'INSERT', '{"uuid": "05f9829a-f505-4758-891e-5f38b5242d75", "serialid": 82, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2953305f-c465-4345-b16f-68ed28de5249', 'INSERT', '{"uuid": "2953305f-c465-4345-b16f-68ed28de5249", "roletype": "OWNER", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f2c74d1f-ef48-4642-9cc8-d88e5683267a', 'INSERT', '{"op": "DELETE", "uuid": "f2c74d1f-ef48-4642-9cc8-d88e5683267a", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b8127af6-5500-4763-b65b-7e6d2d380637', 'INSERT', '{"uuid": "b8127af6-5500-4763-b65b-7e6d2d380637", "assumed": true, "ascendantuuid": "2953305f-c465-4345-b16f-68ed28de5249", "descendantuuid": "f2c74d1f-ef48-4642-9cc8-d88e5683267a", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '10738bae-3535-4224-a8ae-6dfb4cbeb1ec', 'INSERT', '{"uuid": "10738bae-3535-4224-a8ae-6dfb4cbeb1ec", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "2953305f-c465-4345-b16f-68ed28de5249", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7b27c36e-6c31-4828-acf9-1302a3479780', 'INSERT', '{"uuid": "7b27c36e-6c31-4828-acf9-1302a3479780", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "2953305f-c465-4345-b16f-68ed28de5249", "grantedbyroleuuid": "2953305f-c465-4345-b16f-68ed28de5249", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '762cefda-0cb3-41e5-995a-b87f654b4b8c', 'INSERT', '{"uuid": "762cefda-0cb3-41e5-995a-b87f654b4b8c", "roletype": "ADMIN", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5bece03d-348c-4af5-a42b-784c02b74cdd', 'INSERT', '{"op": "UPDATE", "uuid": "5bece03d-348c-4af5-a42b-784c02b74cdd", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4321c9d0-0dff-4f0f-9aaf-109f09155691', 'INSERT', '{"uuid": "4321c9d0-0dff-4f0f-9aaf-109f09155691", "assumed": true, "ascendantuuid": "762cefda-0cb3-41e5-995a-b87f654b4b8c", "descendantuuid": "5bece03d-348c-4af5-a42b-784c02b74cdd", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bed1e8ee-1074-41fd-9177-a19a6321f8e7', 'INSERT', '{"uuid": "bed1e8ee-1074-41fd-9177-a19a6321f8e7", "assumed": true, "ascendantuuid": "2953305f-c465-4345-b16f-68ed28de5249", "descendantuuid": "762cefda-0cb3-41e5-995a-b87f654b4b8c", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', 'INSERT', '{"uuid": "9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd", "roletype": "AGENT", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7f885ed0-7110-4813-b4ef-4bd3a2452a18', 'INSERT', '{"uuid": "7f885ed0-7110-4813-b4ef-4bd3a2452a18", "assumed": true, "ascendantuuid": "762cefda-0cb3-41e5-995a-b87f654b4b8c", "descendantuuid": "9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c42097a3-922d-4e0b-9b47-00a804174f48', 'INSERT', '{"uuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "roletype": "TENANT", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd3e3df00-d5ed-43e6-b416-995715f69a57', 'INSERT', '{"op": "SELECT", "uuid": "d3e3df00-d5ed-43e6-b416-995715f69a57", "objectuuid": "05f9829a-f505-4758-891e-5f38b5242d75", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'de39150e-4159-4613-911a-f3ef18defdd6', 'INSERT', '{"uuid": "de39150e-4159-4613-911a-f3ef18defdd6", "assumed": true, "ascendantuuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "descendantuuid": "d3e3df00-d5ed-43e6-b416-995715f69a57", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dea3d23a-d723-4f8c-9f1d-23e11c6d70eb', 'INSERT', '{"uuid": "dea3d23a-d723-4f8c-9f1d-23e11c6d70eb", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a700816-56a0-46dd-917f-6095670283df', 'INSERT', '{"uuid": "0a700816-56a0-46dd-917f-6095670283df", "assumed": true, "ascendantuuid": "9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd", "descendantuuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f8335be7-2b24-45b2-943e-83e896543235', 'INSERT', '{"uuid": "f8335be7-2b24-45b2-943e-83e896543235", "assumed": true, "ascendantuuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad7e91d4-e795-4878-ad92-3aaf70abd5be', 'INSERT', '{"uuid": "ad7e91d4-e795-4878-ad92-3aaf70abd5be", "assumed": true, "ascendantuuid": "c42097a3-922d-4e0b-9b47-00a804174f48", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '731c1667-656a-45fc-aef5-91cf3c7dab74', 'INSERT', '{"uuid": "731c1667-656a-45fc-aef5-91cf3c7dab74", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7ce9e91a-2ac9-4fa7-a552-2eb3b57e6e26', 'INSERT', '{"uuid": "7ce9e91a-2ac9-4fa7-a552-2eb3b57e6e26", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "2953305f-c465-4345-b16f-68ed28de5249", "grantedbyroleuuid": null, "grantedbytriggerof": "05f9829a-f505-4758-891e-5f38b5242d75"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '05f9829a-f505-4758-891e-5f38b5242d75', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "05f9829a-f505-4758-891e-5f38b5242d75", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "contactuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'INSERT', '{"uuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83", "serialid": 83, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '48c51969-edf6-475e-a24f-f55430f7af85', 'INSERT', '{"uuid": "48c51969-edf6-475e-a24f-f55430f7af85", "roletype": "OWNER", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8e6c324d-d5e6-4028-851b-d72b367a6ab8', 'INSERT', '{"op": "DELETE", "uuid": "8e6c324d-d5e6-4028-851b-d72b367a6ab8", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a608656e-f32c-4dc6-b48a-64bc946247e3', 'INSERT', '{"uuid": "a608656e-f32c-4dc6-b48a-64bc946247e3", "assumed": true, "ascendantuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "descendantuuid": "8e6c324d-d5e6-4028-851b-d72b367a6ab8", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '14976d86-fbfd-47d0-aa7c-8ae184b6e0c8', 'INSERT', '{"uuid": "14976d86-fbfd-47d0-aa7c-8ae184b6e0c8", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8e0df8c2-3fd7-441e-8361-51d68a25a2ed', 'INSERT', '{"uuid": "8e0df8c2-3fd7-441e-8361-51d68a25a2ed", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "grantedbyroleuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '589e092b-bb46-48c1-b6ed-bfd8aa18c037', 'INSERT', '{"uuid": "589e092b-bb46-48c1-b6ed-bfd8aa18c037", "roletype": "ADMIN", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2afe5f37-d88c-49f6-ad20-556c27d7148e', 'INSERT', '{"op": "UPDATE", "uuid": "2afe5f37-d88c-49f6-ad20-556c27d7148e", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5515c432-d681-46c9-b278-b7aab2bedee4', 'INSERT', '{"uuid": "5515c432-d681-46c9-b278-b7aab2bedee4", "assumed": true, "ascendantuuid": "589e092b-bb46-48c1-b6ed-bfd8aa18c037", "descendantuuid": "2afe5f37-d88c-49f6-ad20-556c27d7148e", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '91582bd5-07a2-46c3-91ed-cf07ba1cbf85', 'INSERT', '{"uuid": "91582bd5-07a2-46c3-91ed-cf07ba1cbf85", "assumed": true, "ascendantuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "descendantuuid": "589e092b-bb46-48c1-b6ed-bfd8aa18c037", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '482facc0-a3f1-474e-8f3c-7a92d54dd5a6', 'INSERT', '{"uuid": "482facc0-a3f1-474e-8f3c-7a92d54dd5a6", "roletype": "AGENT", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '11d3c9a6-bd05-4bc8-b3b7-98ad9d4700d4', 'INSERT', '{"uuid": "11d3c9a6-bd05-4bc8-b3b7-98ad9d4700d4", "assumed": true, "ascendantuuid": "589e092b-bb46-48c1-b6ed-bfd8aa18c037", "descendantuuid": "482facc0-a3f1-474e-8f3c-7a92d54dd5a6", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', 'INSERT', '{"uuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "roletype": "TENANT", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'be0ee1f3-37cb-4d1c-914e-8f2a34480f28', 'INSERT', '{"op": "SELECT", "uuid": "be0ee1f3-37cb-4d1c-914e-8f2a34480f28", "objectuuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6e7fc126-1ad4-4fb3-a383-fcb8114361b6', 'INSERT', '{"uuid": "6e7fc126-1ad4-4fb3-a383-fcb8114361b6", "assumed": true, "ascendantuuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "descendantuuid": "be0ee1f3-37cb-4d1c-914e-8f2a34480f28", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1fd6f453-4374-443c-905c-dcf569726f51', 'INSERT', '{"uuid": "1fd6f453-4374-443c-905c-dcf569726f51", "assumed": true, "ascendantuuid": "0818dc0a-1fd2-4a99-901e-0dab13697d85", "descendantuuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1124c3a5-e3b0-48bd-87c5-f2efd12b4fc6', 'INSERT', '{"uuid": "1124c3a5-e3b0-48bd-87c5-f2efd12b4fc6", "assumed": true, "ascendantuuid": "482facc0-a3f1-474e-8f3c-7a92d54dd5a6", "descendantuuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '064a3216-0dd8-4df4-a7ad-1254c72848b8', 'INSERT', '{"uuid": "064a3216-0dd8-4df4-a7ad-1254c72848b8", "assumed": true, "ascendantuuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "descendantuuid": "461bfac0-a91d-41d5-a96c-4987a67f59f4", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c15d70a2-8bf0-4f5f-bbc4-d1d75bc54d67', 'INSERT', '{"uuid": "c15d70a2-8bf0-4f5f-bbc4-d1d75bc54d67", "assumed": true, "ascendantuuid": "9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a26c6958-e0b0-4707-9333-56b02d4f04ad', 'INSERT', '{"uuid": "a26c6958-e0b0-4707-9333-56b02d4f04ad", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "482facc0-a3f1-474e-8f3c-7a92d54dd5a6", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8bf8b351-b85e-4b95-b83a-6d88e8dadb7c', 'INSERT', '{"uuid": "8bf8b351-b85e-4b95-b83a-6d88e8dadb7c", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "48c51969-edf6-475e-a24f-f55430f7af85", "grantedbyroleuuid": null, "grantedbytriggerof": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', 'ace9fec5-5880-4e30-96ea-b843d7001d83', 'INSERT', '{"uuid": "ace9fec5-5880-4e30-96ea-b843d7001d83", "serialid": 157, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "contactuuid": "a8380163-1e05-41c9-9614-a0af334d49ac"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ede0d030-8e66-469a-a11f-43f818863809', 'INSERT', '{"uuid": "ede0d030-8e66-469a-a11f-43f818863809", "serialid": 84, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e83be41f-07c7-408a-9d45-504f7897e2d4', 'INSERT', '{"uuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "roletype": "OWNER", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1c2f2009-dc94-4b39-b3ae-5cfca518767d', 'INSERT', '{"op": "DELETE", "uuid": "1c2f2009-dc94-4b39-b3ae-5cfca518767d", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b9f23448-fbb9-4b81-bd89-30ba1b5e70d6', 'INSERT', '{"uuid": "b9f23448-fbb9-4b81-bd89-30ba1b5e70d6", "assumed": true, "ascendantuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "descendantuuid": "1c2f2009-dc94-4b39-b3ae-5cfca518767d", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fefae46f-f4e2-4467-9135-bcb88995ab00', 'INSERT', '{"uuid": "fefae46f-f4e2-4467-9135-bcb88995ab00", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd11c4aee-3e66-45cd-84a2-e001aa8a8083', 'INSERT', '{"uuid": "d11c4aee-3e66-45cd-84a2-e001aa8a8083", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "grantedbyroleuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1e3b494a-859e-40b2-84d2-ce25081f04b1', 'INSERT', '{"uuid": "1e3b494a-859e-40b2-84d2-ce25081f04b1", "roletype": "ADMIN", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71', 'INSERT', '{"op": "UPDATE", "uuid": "2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2e7edfc4-7520-4b7e-9867-ebd8e3b4c1a5', 'INSERT', '{"uuid": "2e7edfc4-7520-4b7e-9867-ebd8e3b4c1a5", "assumed": true, "ascendantuuid": "1e3b494a-859e-40b2-84d2-ce25081f04b1", "descendantuuid": "2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fc5b3f5d-e3bf-4392-875a-8f30340659d7', 'INSERT', '{"uuid": "fc5b3f5d-e3bf-4392-875a-8f30340659d7", "assumed": true, "ascendantuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "descendantuuid": "1e3b494a-859e-40b2-84d2-ce25081f04b1", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '40d1a082-2612-4b10-92ad-970d6d9ff4ac', 'INSERT', '{"uuid": "40d1a082-2612-4b10-92ad-970d6d9ff4ac", "roletype": "AGENT", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cae858ba-27b4-4c38-95df-5fee0006dac3', 'INSERT', '{"uuid": "cae858ba-27b4-4c38-95df-5fee0006dac3", "assumed": true, "ascendantuuid": "1e3b494a-859e-40b2-84d2-ce25081f04b1", "descendantuuid": "40d1a082-2612-4b10-92ad-970d6d9ff4ac", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', 'INSERT', '{"uuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "roletype": "TENANT", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd56a809a-d37f-4423-b3c6-4a401af7dcaa', 'INSERT', '{"op": "SELECT", "uuid": "d56a809a-d37f-4423-b3c6-4a401af7dcaa", "objectuuid": "ede0d030-8e66-469a-a11f-43f818863809", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0ae9774f-0206-4995-88bc-b25e2193a64c', 'INSERT', '{"uuid": "0ae9774f-0206-4995-88bc-b25e2193a64c", "assumed": true, "ascendantuuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "descendantuuid": "d56a809a-d37f-4423-b3c6-4a401af7dcaa", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bbcab82d-a66f-4191-aa2b-027d5835c68e', 'INSERT', '{"uuid": "bbcab82d-a66f-4191-aa2b-027d5835c68e", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6202c5d5-2701-43ed-95e2-23216f4e5b76', 'INSERT', '{"uuid": "6202c5d5-2701-43ed-95e2-23216f4e5b76", "assumed": true, "ascendantuuid": "40d1a082-2612-4b10-92ad-970d6d9ff4ac", "descendantuuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6e32d373-bbed-4876-b545-7dc19ac97bbf', 'INSERT', '{"uuid": "6e32d373-bbed-4876-b545-7dc19ac97bbf", "assumed": true, "ascendantuuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c49455ee-809a-4823-aeb9-affa173ed8ef', 'INSERT', '{"uuid": "c49455ee-809a-4823-aeb9-affa173ed8ef", "assumed": true, "ascendantuuid": "bb129bdb-1b70-4c35-97cc-ff6396197e0c", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4fc90f7e-1ee1-453b-90cb-fa463a6d74c5', 'INSERT', '{"uuid": "4fc90f7e-1ee1-453b-90cb-fa463a6d74c5", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "40d1a082-2612-4b10-92ad-970d6d9ff4ac", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6db0db5f-b278-473a-a75d-aa95d356cd1b', 'INSERT', '{"uuid": "6db0db5f-b278-473a-a75d-aa95d356cd1b", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "e83be41f-07c7-408a-9d45-504f7897e2d4", "grantedbyroleuuid": null, "grantedbytriggerof": "ede0d030-8e66-469a-a11f-43f818863809"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ede0d030-8e66-469a-a11f-43f818863809', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "ede0d030-8e66-469a-a11f-43f818863809", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'INSERT', '{"uuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd", "serialid": 85, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c759b6c3-65c1-4c2f-b440-3070b36677d9', 'INSERT', '{"uuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "roletype": "OWNER", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0628ac11-f65f-496f-a0b5-83bed9d9d74c', 'INSERT', '{"op": "DELETE", "uuid": "0628ac11-f65f-496f-a0b5-83bed9d9d74c", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c5285d42-68a7-4ab9-9263-e22dabc1aa6b', 'INSERT', '{"uuid": "c5285d42-68a7-4ab9-9263-e22dabc1aa6b", "assumed": true, "ascendantuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "descendantuuid": "0628ac11-f65f-496f-a0b5-83bed9d9d74c", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '314604d4-4063-4192-b142-1a0410275882', 'INSERT', '{"uuid": "314604d4-4063-4192-b142-1a0410275882", "roletype": "OWNER", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0db403ba-195f-4d36-8b6c-f2e2fe60b873', 'INSERT', '{"uuid": "0db403ba-195f-4d36-8b6c-f2e2fe60b873", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad82f9a7-547f-4357-b331-e01923d203d3', 'INSERT', '{"uuid": "ad82f9a7-547f-4357-b331-e01923d203d3", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "grantedbyroleuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '65f3a917-8510-43ed-b64a-9fb875dcef14', 'INSERT', '{"uuid": "65f3a917-8510-43ed-b64a-9fb875dcef14", "roletype": "ADMIN", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4f3efcac-830c-4de6-b108-42bb8d0c07f7', 'INSERT', '{"op": "UPDATE", "uuid": "4f3efcac-830c-4de6-b108-42bb8d0c07f7", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7dcfc300-f892-428a-ba4c-22a89e3f7ab1', 'INSERT', '{"uuid": "7dcfc300-f892-428a-ba4c-22a89e3f7ab1", "assumed": true, "ascendantuuid": "65f3a917-8510-43ed-b64a-9fb875dcef14", "descendantuuid": "4f3efcac-830c-4de6-b108-42bb8d0c07f7", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ac4d3a05-5598-423b-b9c5-c49694ee749f', 'INSERT', '{"uuid": "ac4d3a05-5598-423b-b9c5-c49694ee749f", "assumed": true, "ascendantuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "descendantuuid": "65f3a917-8510-43ed-b64a-9fb875dcef14", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '00712e6b-e706-4e0f-b551-c7dc4614857d', 'INSERT', '{"uuid": "00712e6b-e706-4e0f-b551-c7dc4614857d", "roletype": "AGENT", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4fd76805-ef27-4823-80c4-f33598a67db7', 'INSERT', '{"uuid": "4fd76805-ef27-4823-80c4-f33598a67db7", "assumed": true, "ascendantuuid": "65f3a917-8510-43ed-b64a-9fb875dcef14", "descendantuuid": "00712e6b-e706-4e0f-b551-c7dc4614857d", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'bc411acd-2a6e-4386-a537-2d98708ff312', 'INSERT', '{"uuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "roletype": "TENANT", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '34e55b26-e390-45f4-a397-3027cc7541aa', 'INSERT', '{"op": "SELECT", "uuid": "34e55b26-e390-45f4-a397-3027cc7541aa", "objectuuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6086f835-a0c5-4bbe-ac0d-557eeeff1280', 'INSERT', '{"uuid": "6086f835-a0c5-4bbe-ac0d-557eeeff1280", "assumed": true, "ascendantuuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "descendantuuid": "34e55b26-e390-45f4-a397-3027cc7541aa", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6a17e597-9dd3-4797-a898-6894b1bba68c', 'INSERT', '{"uuid": "6a17e597-9dd3-4797-a898-6894b1bba68c", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0f2bb266-82be-48a0-bccd-e86bd34345a8', 'INSERT', '{"uuid": "0f2bb266-82be-48a0-bccd-e86bd34345a8", "assumed": true, "ascendantuuid": "00712e6b-e706-4e0f-b551-c7dc4614857d", "descendantuuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '24fc2faa-4977-4c08-84d3-2d712034991a', 'INSERT', '{"uuid": "24fc2faa-4977-4c08-84d3-2d712034991a", "assumed": true, "ascendantuuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9dba518b-a1ff-4a66-b77d-5c10793741ed', 'INSERT', '{"uuid": "9dba518b-a1ff-4a66-b77d-5c10793741ed", "assumed": true, "ascendantuuid": "bc411acd-2a6e-4386-a537-2d98708ff312", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e6a24c26-f935-4518-975c-eb63dd1d669b', 'INSERT', '{"uuid": "e6a24c26-f935-4518-975c-eb63dd1d669b", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "00712e6b-e706-4e0f-b551-c7dc4614857d", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '766e2e1c-5454-495b-a8c5-38cfb14ce770', 'INSERT', '{"uuid": "766e2e1c-5454-495b-a8c5-38cfb14ce770", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "c759b6c3-65c1-4c2f-b440-3070b36677d9", "grantedbyroleuuid": null, "grantedbytriggerof": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '505337e7-2099-4d83-a2f5-7447bc63a387', 'INSERT', '{"uuid": "505337e7-2099-4d83-a2f5-7447bc63a387", "serialid": 86, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', 'INSERT', '{"uuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "roletype": "OWNER", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4d491bcf-e24b-432a-a01e-231f920f0d85', 'INSERT', '{"op": "DELETE", "uuid": "4d491bcf-e24b-432a-a01e-231f920f0d85", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7bc3a52b-04c1-449e-8b53-d168447179a1', 'INSERT', '{"uuid": "7bc3a52b-04c1-449e-8b53-d168447179a1", "assumed": true, "ascendantuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "descendantuuid": "4d491bcf-e24b-432a-a01e-231f920f0d85", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a999b297-6590-494f-b2f9-56d70115562c', 'INSERT', '{"uuid": "a999b297-6590-494f-b2f9-56d70115562c", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1392f901-b8c4-4c02-8fe9-4c6e2ead3249', 'INSERT', '{"uuid": "1392f901-b8c4-4c02-8fe9-4c6e2ead3249", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "grantedbyroleuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3886e13c-4802-49c6-8c94-7439d5f609d0', 'INSERT', '{"uuid": "3886e13c-4802-49c6-8c94-7439d5f609d0", "roletype": "ADMIN", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e2894082-0f26-4e3f-a1d4-ee1d0d769b0a', 'INSERT', '{"op": "UPDATE", "uuid": "e2894082-0f26-4e3f-a1d4-ee1d0d769b0a", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0553ddc1-1fae-48f0-8970-78cf034a1d38', 'INSERT', '{"uuid": "0553ddc1-1fae-48f0-8970-78cf034a1d38", "assumed": true, "ascendantuuid": "3886e13c-4802-49c6-8c94-7439d5f609d0", "descendantuuid": "e2894082-0f26-4e3f-a1d4-ee1d0d769b0a", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f427272e-c63c-46c5-8949-ecf06106223d', 'INSERT', '{"uuid": "f427272e-c63c-46c5-8949-ecf06106223d", "assumed": true, "ascendantuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "descendantuuid": "3886e13c-4802-49c6-8c94-7439d5f609d0", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3df71fa7-354e-487e-b007-81c01e03fcc5', 'INSERT', '{"uuid": "3df71fa7-354e-487e-b007-81c01e03fcc5", "roletype": "AGENT", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bd1b9ca8-c67f-405f-a50f-149a5ca514c6', 'INSERT', '{"uuid": "bd1b9ca8-c67f-405f-a50f-149a5ca514c6", "assumed": true, "ascendantuuid": "3886e13c-4802-49c6-8c94-7439d5f609d0", "descendantuuid": "3df71fa7-354e-487e-b007-81c01e03fcc5", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', 'INSERT', '{"uuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "roletype": "TENANT", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3659ec5a-b205-4278-a4e9-dff7fe00b9ab', 'INSERT', '{"op": "SELECT", "uuid": "3659ec5a-b205-4278-a4e9-dff7fe00b9ab", "objectuuid": "505337e7-2099-4d83-a2f5-7447bc63a387", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '41ee9e5c-0a2f-49c3-9346-59628c20073d', 'INSERT', '{"uuid": "41ee9e5c-0a2f-49c3-9346-59628c20073d", "assumed": true, "ascendantuuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "descendantuuid": "3659ec5a-b205-4278-a4e9-dff7fe00b9ab", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8b979e83-f11e-4c89-a9da-118a934ac671', 'INSERT', '{"uuid": "8b979e83-f11e-4c89-a9da-118a934ac671", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bddc0b3a-7de2-42c8-8892-29bb2c015db7', 'INSERT', '{"uuid": "bddc0b3a-7de2-42c8-8892-29bb2c015db7", "assumed": true, "ascendantuuid": "3df71fa7-354e-487e-b007-81c01e03fcc5", "descendantuuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '96aa8b92-8e7a-42c0-abc8-0716ad2d4eb6', 'INSERT', '{"uuid": "96aa8b92-8e7a-42c0-abc8-0716ad2d4eb6", "assumed": true, "ascendantuuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bba36964-60d5-4fc6-8737-7a3ec405ab0e', 'INSERT', '{"uuid": "bba36964-60d5-4fc6-8737-7a3ec405ab0e", "assumed": true, "ascendantuuid": "5aa5b42e-b148-4681-8188-5e4ae09c2a1c", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '097d24ca-c280-4054-9f00-f7ce13fd2226', 'INSERT', '{"uuid": "097d24ca-c280-4054-9f00-f7ce13fd2226", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "3df71fa7-354e-487e-b007-81c01e03fcc5", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a68ee886-dfe4-4894-80f9-b14b46540a40', 'INSERT', '{"uuid": "a68ee886-dfe4-4894-80f9-b14b46540a40", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "dc086b9e-22f3-4f9f-9c37-eeef9edbed06", "grantedbyroleuuid": null, "grantedbytriggerof": "505337e7-2099-4d83-a2f5-7447bc63a387"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '505337e7-2099-4d83-a2f5-7447bc63a387', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "505337e7-2099-4d83-a2f5-7447bc63a387", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'INSERT', '{"uuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a", "serialid": 87, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cb308667-ef0e-4af4-96b7-67bafa383953', 'INSERT', '{"uuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "roletype": "OWNER", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c5a7163d-7bb5-4b47-8505-26f154c30e66', 'INSERT', '{"op": "DELETE", "uuid": "c5a7163d-7bb5-4b47-8505-26f154c30e66", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f4686a55-a1ca-4e72-967f-902a7d85525c', 'INSERT', '{"uuid": "f4686a55-a1ca-4e72-967f-902a7d85525c", "assumed": true, "ascendantuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "descendantuuid": "c5a7163d-7bb5-4b47-8505-26f154c30e66", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '315b15d3-63df-4207-926c-365b7312faad', 'INSERT', '{"uuid": "315b15d3-63df-4207-926c-365b7312faad", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1e6125e3-c155-46dd-af26-c7824f530b9d', 'INSERT', '{"uuid": "1e6125e3-c155-46dd-af26-c7824f530b9d", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "grantedbyroleuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '42589adb-5faf-46f4-88bd-53baa315c72c', 'INSERT', '{"uuid": "42589adb-5faf-46f4-88bd-53baa315c72c", "roletype": "ADMIN", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd2f26da2-0726-4c1f-819f-a1c7267964b3', 'INSERT', '{"op": "UPDATE", "uuid": "d2f26da2-0726-4c1f-819f-a1c7267964b3", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd0fb32bc-ee73-45b3-8997-044f09e75436', 'INSERT', '{"uuid": "d0fb32bc-ee73-45b3-8997-044f09e75436", "assumed": true, "ascendantuuid": "42589adb-5faf-46f4-88bd-53baa315c72c", "descendantuuid": "d2f26da2-0726-4c1f-819f-a1c7267964b3", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cdc3eb33-e3b4-4d02-a5e9-d9c7f61fcb0e', 'INSERT', '{"uuid": "cdc3eb33-e3b4-4d02-a5e9-d9c7f61fcb0e", "assumed": true, "ascendantuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "descendantuuid": "42589adb-5faf-46f4-88bd-53baa315c72c", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '37947345-1e74-45a2-bb5a-964534106fe4', 'INSERT', '{"uuid": "37947345-1e74-45a2-bb5a-964534106fe4", "roletype": "AGENT", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '92dcaede-9c88-40f0-9624-b96cb12de14b', 'INSERT', '{"uuid": "92dcaede-9c88-40f0-9624-b96cb12de14b", "assumed": true, "ascendantuuid": "42589adb-5faf-46f4-88bd-53baa315c72c", "descendantuuid": "37947345-1e74-45a2-bb5a-964534106fe4", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8c474a1f-2ec2-40c2-81c7-da3178b41434', 'INSERT', '{"uuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "roletype": "TENANT", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'af2eb413-09ad-4542-b6b5-28b71749e727', 'INSERT', '{"op": "SELECT", "uuid": "af2eb413-09ad-4542-b6b5-28b71749e727", "objectuuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'db46c382-1297-407e-8b17-fa6ca42f3427', 'INSERT', '{"op": "DELETE", "uuid": "db46c382-1297-407e-8b17-fa6ca42f3427", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8dc17fa2-d450-4f84-8814-01e25dac54dd', 'INSERT', '{"uuid": "8dc17fa2-d450-4f84-8814-01e25dac54dd", "assumed": true, "ascendantuuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "descendantuuid": "af2eb413-09ad-4542-b6b5-28b71749e727", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a927d01c-f88d-4205-a0ef-8e54f5c6548d', 'INSERT', '{"uuid": "a927d01c-f88d-4205-a0ef-8e54f5c6548d", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd2877ff9-93bf-4b26-9547-7704048b39db', 'INSERT', '{"uuid": "d2877ff9-93bf-4b26-9547-7704048b39db", "assumed": true, "ascendantuuid": "37947345-1e74-45a2-bb5a-964534106fe4", "descendantuuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '79c6ecac-aaaf-4251-9ad1-bcef2c126331', 'INSERT', '{"uuid": "79c6ecac-aaaf-4251-9ad1-bcef2c126331", "assumed": true, "ascendantuuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3fc43974-a7f2-4a60-945f-0d69ad8d0f38', 'INSERT', '{"uuid": "3fc43974-a7f2-4a60-945f-0d69ad8d0f38", "assumed": true, "ascendantuuid": "8c474a1f-2ec2-40c2-81c7-da3178b41434", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dd83ba63-d1b1-47bf-a824-0599b194ce90', 'INSERT', '{"uuid": "dd83ba63-d1b1-47bf-a824-0599b194ce90", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "37947345-1e74-45a2-bb5a-964534106fe4", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c14b9df9-2ab4-419f-9027-f731473cda07', 'INSERT', '{"uuid": "c14b9df9-2ab4-419f-9027-f731473cda07", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "cb308667-ef0e-4af4-96b7-67bafa383953", "grantedbyroleuuid": null, "grantedbytriggerof": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "e22a4ca4-95d0-4f8f-9b07-a90ad07f367a", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'INSERT', '{"uuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a", "serialid": 88, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', 'INSERT', '{"uuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "roletype": "OWNER", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4366b352-4589-4a16-b88e-6c556e017189', 'INSERT', '{"op": "DELETE", "uuid": "4366b352-4589-4a16-b88e-6c556e017189", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6582895a-33d9-4c5e-8d67-e0795697756b', 'INSERT', '{"uuid": "6582895a-33d9-4c5e-8d67-e0795697756b", "assumed": true, "ascendantuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "descendantuuid": "4366b352-4589-4a16-b88e-6c556e017189", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cd96e774-7146-4d9a-ba97-c1cd95206310', 'INSERT', '{"uuid": "cd96e774-7146-4d9a-ba97-c1cd95206310", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3f9a54fa-7b68-4830-a33e-4addfddf22f2', 'INSERT', '{"uuid": "3f9a54fa-7b68-4830-a33e-4addfddf22f2", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "grantedbyroleuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a046da0d-216b-4e65-85fa-9a9e512b8546', 'INSERT', '{"uuid": "a046da0d-216b-4e65-85fa-9a9e512b8546", "roletype": "ADMIN", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '4acdd71c-3792-4b5e-8551-1f260352d690', 'INSERT', '{"op": "UPDATE", "uuid": "4acdd71c-3792-4b5e-8551-1f260352d690", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9f1e25a6-72b5-4408-bac1-9d0f8fffb5ff', 'INSERT', '{"uuid": "9f1e25a6-72b5-4408-bac1-9d0f8fffb5ff", "assumed": true, "ascendantuuid": "a046da0d-216b-4e65-85fa-9a9e512b8546", "descendantuuid": "4acdd71c-3792-4b5e-8551-1f260352d690", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8c616c36-80ca-49fa-ba73-a90605c0afa0', 'INSERT', '{"uuid": "8c616c36-80ca-49fa-ba73-a90605c0afa0", "assumed": true, "ascendantuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "descendantuuid": "a046da0d-216b-4e65-85fa-9a9e512b8546", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fb868a05-aa95-4c3a-892f-95866efb0bfb', 'INSERT', '{"uuid": "fb868a05-aa95-4c3a-892f-95866efb0bfb", "roletype": "AGENT", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '48364413-6040-4cd3-9ee3-47f6c48b8cd5', 'INSERT', '{"uuid": "48364413-6040-4cd3-9ee3-47f6c48b8cd5", "assumed": true, "ascendantuuid": "a046da0d-216b-4e65-85fa-9a9e512b8546", "descendantuuid": "fb868a05-aa95-4c3a-892f-95866efb0bfb", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'eeaa4092-85ba-423e-b6c1-24baf93477a2', 'INSERT', '{"uuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "roletype": "TENANT", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '145e0fa5-f5f2-4bbe-a14c-1c6e11adca73', 'INSERT', '{"op": "SELECT", "uuid": "145e0fa5-f5f2-4bbe-a14c-1c6e11adca73", "objectuuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a0889469-6524-4f57-a344-b36d8dbd0190', 'INSERT', '{"uuid": "a0889469-6524-4f57-a344-b36d8dbd0190", "assumed": true, "ascendantuuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "descendantuuid": "145e0fa5-f5f2-4bbe-a14c-1c6e11adca73", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b4e4c255-3089-4bb7-8569-12068e49c34e', 'INSERT', '{"uuid": "b4e4c255-3089-4bb7-8569-12068e49c34e", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '72d454fe-2b81-484b-8c62-ecea11fac627', 'INSERT', '{"uuid": "72d454fe-2b81-484b-8c62-ecea11fac627", "assumed": true, "ascendantuuid": "fb868a05-aa95-4c3a-892f-95866efb0bfb", "descendantuuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '74ce874d-c826-4bf8-bdd8-a5f9d35ab553', 'INSERT', '{"uuid": "74ce874d-c826-4bf8-bdd8-a5f9d35ab553", "assumed": true, "ascendantuuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5060d31b-b1f5-4f59-a82b-00892d620746', 'INSERT', '{"uuid": "5060d31b-b1f5-4f59-a82b-00892d620746", "assumed": true, "ascendantuuid": "eeaa4092-85ba-423e-b6c1-24baf93477a2", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '17e73489-d624-40fe-866b-4339aab97e92', 'INSERT', '{"uuid": "17e73489-d624-40fe-866b-4339aab97e92", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "fb868a05-aa95-4c3a-892f-95866efb0bfb", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0b8dd387-f171-412f-8e5f-57e23c0e3c85', 'INSERT', '{"uuid": "0b8dd387-f171-412f-8e5f-57e23c0e3c85", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "7bff095d-8c8b-4ce8-9dc7-ba9582fdde86", "grantedbyroleuuid": null, "grantedbytriggerof": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'INSERT', '{"uuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469", "serialid": 89, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', 'INSERT', '{"uuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "roletype": "OWNER", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '585ff2f1-f8dc-4a0d-879e-8ed1720d44d4', 'INSERT', '{"op": "DELETE", "uuid": "585ff2f1-f8dc-4a0d-879e-8ed1720d44d4", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e0ea83b9-a27f-42d0-afdf-5f3887d2a8f6', 'INSERT', '{"uuid": "e0ea83b9-a27f-42d0-afdf-5f3887d2a8f6", "assumed": true, "ascendantuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "descendantuuid": "585ff2f1-f8dc-4a0d-879e-8ed1720d44d4", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd4a7cfc8-0158-4afc-b9f7-72abefd38d8c', 'INSERT', '{"uuid": "d4a7cfc8-0158-4afc-b9f7-72abefd38d8c", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'de77330d-0c72-4034-82d1-03cc8e12ac18', 'INSERT', '{"uuid": "de77330d-0c72-4034-82d1-03cc8e12ac18", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "grantedbyroleuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '36011508-4a4f-4f37-9fb3-18d00c661ff7', 'INSERT', '{"uuid": "36011508-4a4f-4f37-9fb3-18d00c661ff7", "roletype": "ADMIN", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'bd0640a8-f20f-49b2-84dd-054f4d0dcec5', 'INSERT', '{"op": "UPDATE", "uuid": "bd0640a8-f20f-49b2-84dd-054f4d0dcec5", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b80eeaec-71b4-47ff-b07b-b87a5d244e51', 'INSERT', '{"uuid": "b80eeaec-71b4-47ff-b07b-b87a5d244e51", "assumed": true, "ascendantuuid": "36011508-4a4f-4f37-9fb3-18d00c661ff7", "descendantuuid": "bd0640a8-f20f-49b2-84dd-054f4d0dcec5", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b02d9ad9-86a5-449d-a5dc-9784f43a22f1', 'INSERT', '{"uuid": "b02d9ad9-86a5-449d-a5dc-9784f43a22f1", "assumed": true, "ascendantuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "descendantuuid": "36011508-4a4f-4f37-9fb3-18d00c661ff7", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'adce5859-3567-441d-9159-e39116a6763b', 'INSERT', '{"uuid": "adce5859-3567-441d-9159-e39116a6763b", "roletype": "AGENT", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '16c5d0b9-2467-4222-8933-6cacbde76a34', 'INSERT', '{"uuid": "16c5d0b9-2467-4222-8933-6cacbde76a34", "assumed": true, "ascendantuuid": "36011508-4a4f-4f37-9fb3-18d00c661ff7", "descendantuuid": "adce5859-3567-441d-9159-e39116a6763b", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', 'INSERT', '{"uuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "roletype": "TENANT", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5d23f435-7b8f-46ad-b602-9d3b9203c345', 'INSERT', '{"op": "SELECT", "uuid": "5d23f435-7b8f-46ad-b602-9d3b9203c345", "objectuuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad84f57a-11a0-415b-bc3e-d91bc587ca76', 'INSERT', '{"uuid": "ad84f57a-11a0-415b-bc3e-d91bc587ca76", "assumed": true, "ascendantuuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "descendantuuid": "5d23f435-7b8f-46ad-b602-9d3b9203c345", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '81d410de-a49a-4e0c-9be7-aca83ad9a649', 'INSERT', '{"uuid": "81d410de-a49a-4e0c-9be7-aca83ad9a649", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '82feae72-2c7c-4761-8062-aa7d523147be', 'INSERT', '{"uuid": "82feae72-2c7c-4761-8062-aa7d523147be", "assumed": true, "ascendantuuid": "adce5859-3567-441d-9159-e39116a6763b", "descendantuuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '71a28f2e-6c43-49f5-bea9-4986ab8babe1', 'INSERT', '{"uuid": "71a28f2e-6c43-49f5-bea9-4986ab8babe1", "assumed": true, "ascendantuuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a2b5c2f-fbdf-4b25-99ef-d6908581f45c', 'INSERT', '{"uuid": "0a2b5c2f-fbdf-4b25-99ef-d6908581f45c", "assumed": true, "ascendantuuid": "80b7f5a5-ae51-4a71-a8c5-23b355d72eae", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '63836bc9-ed95-4285-94bb-757d2a291a10', 'INSERT', '{"uuid": "63836bc9-ed95-4285-94bb-757d2a291a10", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "adce5859-3567-441d-9159-e39116a6763b", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '949fc6d0-e2c5-46e6-8117-29f842b28ddd', 'INSERT', '{"uuid": "949fc6d0-e2c5-46e6-8117-29f842b28ddd", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "fa7fe745-543f-4e81-b368-2fb7da4dc1d4", "grantedbyroleuuid": null, "grantedbytriggerof": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "d0c7ee55-15a9-4773-9b7d-a2f2d6833469", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'INSERT', '{"uuid": "8ae4d050-ac5a-4bd4-affd-53de24264815", "serialid": 90, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f910276c-86a4-4339-b816-61289a2aed84', 'INSERT', '{"uuid": "f910276c-86a4-4339-b816-61289a2aed84", "assumed": true, "ascendantuuid": "314604d4-4063-4192-b142-1a0410275882", "descendantuuid": "db46c382-1297-407e-8b17-fa6ca42f3427", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b9fbf5fd-b1e9-41c8-a95f-dadc8821b204', 'INSERT', '{"uuid": "b9fbf5fd-b1e9-41c8-a95f-dadc8821b204", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "314604d4-4063-4192-b142-1a0410275882", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '06a66373-83c7-42b4-a23e-e995fcdc8cd4', 'INSERT', '{"uuid": "06a66373-83c7-42b4-a23e-e995fcdc8cd4", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "314604d4-4063-4192-b142-1a0410275882", "grantedbyroleuuid": "314604d4-4063-4192-b142-1a0410275882", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', 'INSERT', '{"uuid": "26ab9dc2-3da3-487c-846e-3bb7cc28f0d4", "roletype": "ADMIN", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e75fb595-0779-483f-b421-fd0dab2579c5', 'INSERT', '{"op": "UPDATE", "uuid": "e75fb595-0779-483f-b421-fd0dab2579c5", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ecb4b4a6-9fe9-4229-9523-6067c8e5de2f', 'INSERT', '{"uuid": "ecb4b4a6-9fe9-4229-9523-6067c8e5de2f", "assumed": true, "ascendantuuid": "26ab9dc2-3da3-487c-846e-3bb7cc28f0d4", "descendantuuid": "e75fb595-0779-483f-b421-fd0dab2579c5", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '900d1194-60d8-4ea9-9a1b-ac18ead69afc', 'INSERT', '{"uuid": "900d1194-60d8-4ea9-9a1b-ac18ead69afc", "assumed": true, "ascendantuuid": "314604d4-4063-4192-b142-1a0410275882", "descendantuuid": "26ab9dc2-3da3-487c-846e-3bb7cc28f0d4", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', 'INSERT', '{"uuid": "bd7bec83-31a4-461c-a9ff-f9d6fd2189ff", "roletype": "AGENT", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c5fa3654-ecd2-487e-8b23-6bc6877b1c0c', 'INSERT', '{"uuid": "c5fa3654-ecd2-487e-8b23-6bc6877b1c0c", "assumed": true, "ascendantuuid": "26ab9dc2-3da3-487c-846e-3bb7cc28f0d4", "descendantuuid": "bd7bec83-31a4-461c-a9ff-f9d6fd2189ff", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '23fd725b-ed04-4bcb-ad25-55809e416f6b', 'INSERT', '{"uuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "roletype": "TENANT", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1f8b2363-d7b7-464a-9b3e-5f19b6703bbb', 'INSERT', '{"op": "SELECT", "uuid": "1f8b2363-d7b7-464a-9b3e-5f19b6703bbb", "objectuuid": "8ae4d050-ac5a-4bd4-affd-53de24264815", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0fc94edc-5af5-4bcc-87ae-8a0c34adda56', 'INSERT', '{"uuid": "0fc94edc-5af5-4bcc-87ae-8a0c34adda56", "assumed": true, "ascendantuuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "descendantuuid": "1f8b2363-d7b7-464a-9b3e-5f19b6703bbb", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ef6a699b-6e46-4c56-a203-10be225e3a0f', 'INSERT', '{"uuid": "ef6a699b-6e46-4c56-a203-10be225e3a0f", "assumed": true, "ascendantuuid": "f7a89449-2ef6-44b9-95df-b32b6a9f290b", "descendantuuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '189917fd-e021-4671-8070-62c60e1879bf', 'INSERT', '{"uuid": "189917fd-e021-4671-8070-62c60e1879bf", "assumed": true, "ascendantuuid": "bd7bec83-31a4-461c-a9ff-f9d6fd2189ff", "descendantuuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b356d97-87ee-41f9-8682-3775959a2fe3', 'INSERT', '{"uuid": "5b356d97-87ee-41f9-8682-3775959a2fe3", "assumed": true, "ascendantuuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "descendantuuid": "54cac581-c28a-4727-82ac-0f4af93da96d", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '441597bd-cd21-4701-ac0a-a6960651e735', 'INSERT', '{"uuid": "441597bd-cd21-4701-ac0a-a6960651e735", "assumed": true, "ascendantuuid": "23fd725b-ed04-4bcb-ad25-55809e416f6b", "descendantuuid": "0a2e5ced-6a56-4413-86f4-b2e663feb0e9", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b28d419d-fda1-4003-984f-a88443a62913', 'INSERT', '{"uuid": "b28d419d-fda1-4003-984f-a88443a62913", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "bd7bec83-31a4-461c-a9ff-f9d6fd2189ff", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f65d0fb2-840a-445b-a237-f4742432a379', 'INSERT', '{"uuid": "f65d0fb2-840a-445b-a237-f4742432a379", "assumed": true, "ascendantuuid": "3f0dc306-e3b9-4324-a05d-1de298db1039", "descendantuuid": "314604d4-4063-4192-b142-1a0410275882", "grantedbyroleuuid": null, "grantedbytriggerof": "8ae4d050-ac5a-4bd4-affd-53de24264815"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "8ae4d050-ac5a-4bd4-affd-53de24264815", "version": 0, "anchoruuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "holderuuid": "348a082d-3ca8-44a0-adc2-06a2aed23cd9", "contactuuid": "03229434-fc7d-43f6-89ce-892d4fa2f8d2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'INSERT', '{"uuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3", "serialid": 91, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', 'INSERT', '{"uuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "roletype": "OWNER", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a1267d62-7c06-4a1a-9d18-1306f501e984', 'INSERT', '{"op": "DELETE", "uuid": "a1267d62-7c06-4a1a-9d18-1306f501e984", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0856aa7b-5431-48e9-be07-c4db16cfd66a', 'INSERT', '{"uuid": "0856aa7b-5431-48e9-be07-c4db16cfd66a", "assumed": true, "ascendantuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "descendantuuid": "a1267d62-7c06-4a1a-9d18-1306f501e984", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '05950b01-d5ae-484a-abb9-1b481b7acab0', 'INSERT', '{"uuid": "05950b01-d5ae-484a-abb9-1b481b7acab0", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b41362ae-296c-4603-8855-df7ebe902948', 'INSERT', '{"uuid": "b41362ae-296c-4603-8855-df7ebe902948", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "grantedbyroleuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1df8e8bb-fded-413b-81ab-ab105f4407c3', 'INSERT', '{"uuid": "1df8e8bb-fded-413b-81ab-ab105f4407c3", "roletype": "ADMIN", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '77c5c6dc-a2fd-4f6a-b23b-11092c27876d', 'INSERT', '{"op": "UPDATE", "uuid": "77c5c6dc-a2fd-4f6a-b23b-11092c27876d", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad550e9e-5354-42ac-8289-4f3b54b7ce06', 'INSERT', '{"uuid": "ad550e9e-5354-42ac-8289-4f3b54b7ce06", "assumed": true, "ascendantuuid": "1df8e8bb-fded-413b-81ab-ab105f4407c3", "descendantuuid": "77c5c6dc-a2fd-4f6a-b23b-11092c27876d", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a73ac14d-76a6-4f23-bd99-3e4fde9b4173', 'INSERT', '{"uuid": "a73ac14d-76a6-4f23-bd99-3e4fde9b4173", "assumed": true, "ascendantuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "descendantuuid": "1df8e8bb-fded-413b-81ab-ab105f4407c3", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '428e4654-0d62-4306-a97b-325b311a78e4', 'INSERT', '{"uuid": "428e4654-0d62-4306-a97b-325b311a78e4", "roletype": "AGENT", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '72628e20-ccbf-42af-839d-739c7f1782f6', 'INSERT', '{"uuid": "72628e20-ccbf-42af-839d-739c7f1782f6", "assumed": true, "ascendantuuid": "1df8e8bb-fded-413b-81ab-ab105f4407c3", "descendantuuid": "428e4654-0d62-4306-a97b-325b311a78e4", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '02b7d33b-d6e6-4e70-9eca-103a1f33460a', 'INSERT', '{"uuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "roletype": "TENANT", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '2405df12-73ad-4abf-8f63-a88a795ca61d', 'INSERT', '{"op": "SELECT", "uuid": "2405df12-73ad-4abf-8f63-a88a795ca61d", "objectuuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'be6fe26c-7dae-4496-bfe2-93352dbd7845', 'INSERT', '{"uuid": "be6fe26c-7dae-4496-bfe2-93352dbd7845", "assumed": true, "ascendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "descendantuuid": "2405df12-73ad-4abf-8f63-a88a795ca61d", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '687db200-219a-43b3-9fe8-965df06c0ce0', 'INSERT', '{"uuid": "687db200-219a-43b3-9fe8-965df06c0ce0", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8830a3f5-f0ae-4785-abc5-848fdd48d30b', 'INSERT', '{"uuid": "8830a3f5-f0ae-4785-abc5-848fdd48d30b", "assumed": true, "ascendantuuid": "428e4654-0d62-4306-a97b-325b311a78e4", "descendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6fd5f6ba-aaaf-4b9e-958b-a54a008deb36', 'INSERT', '{"uuid": "6fd5f6ba-aaaf-4b9e-958b-a54a008deb36", "assumed": true, "ascendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "descendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e1ea3369-4a11-42d0-9c7f-784ec97f8847', 'INSERT', '{"uuid": "e1ea3369-4a11-42d0-9c7f-784ec97f8847", "assumed": true, "ascendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fa1562b0-6617-4c00-b5f2-7ffaa87f7f41', 'INSERT', '{"uuid": "fa1562b0-6617-4c00-b5f2-7ffaa87f7f41", "assumed": true, "ascendantuuid": "02b7d33b-d6e6-4e70-9eca-103a1f33460a", "descendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c786af52-8293-4e0c-81fd-068478fd6df0', 'INSERT', '{"uuid": "c786af52-8293-4e0c-81fd-068478fd6df0", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "428e4654-0d62-4306-a97b-325b311a78e4", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ec588262-5f08-4bde-8a98-8d0d6d20f8cc', 'INSERT', '{"uuid": "ec588262-5f08-4bde-8a98-8d0d6d20f8cc", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf", "grantedbyroleuuid": null, "grantedbytriggerof": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "f1bb26c9-79bb-4929-bd66-fa5821c19bc3", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "contactuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'INSERT', '{"uuid": "264dc502-036f-4af7-b5aa-f991cfe795b5", "serialid": 92, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6690edba-2f37-479f-9349-446be36b63cc', 'INSERT', '{"uuid": "6690edba-2f37-479f-9349-446be36b63cc", "roletype": "OWNER", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c56f4683-f55b-433e-83c0-597088586aac', 'INSERT', '{"op": "DELETE", "uuid": "c56f4683-f55b-433e-83c0-597088586aac", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a9dd8a45-0f4c-47d1-9dca-2ebc3688560f', 'INSERT', '{"uuid": "a9dd8a45-0f4c-47d1-9dca-2ebc3688560f", "assumed": true, "ascendantuuid": "6690edba-2f37-479f-9349-446be36b63cc", "descendantuuid": "c56f4683-f55b-433e-83c0-597088586aac", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '27bedf05-0c1d-4a4a-8d1d-e36760da2edc', 'INSERT', '{"uuid": "27bedf05-0c1d-4a4a-8d1d-e36760da2edc", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "6690edba-2f37-479f-9349-446be36b63cc", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '013beea0-7328-4237-8d65-1169e559acbe', 'INSERT', '{"uuid": "013beea0-7328-4237-8d65-1169e559acbe", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "6690edba-2f37-479f-9349-446be36b63cc", "grantedbyroleuuid": "6690edba-2f37-479f-9349-446be36b63cc", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '4c7032f9-b39b-4e81-afb1-4aad349538ee', 'INSERT', '{"uuid": "4c7032f9-b39b-4e81-afb1-4aad349538ee", "roletype": "ADMIN", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '260c29b7-089d-422b-9ce7-d65949cc8e8b', 'INSERT', '{"op": "UPDATE", "uuid": "260c29b7-089d-422b-9ce7-d65949cc8e8b", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '44ef3ad6-7694-4345-bdc2-fbf049c4b90e', 'INSERT', '{"uuid": "44ef3ad6-7694-4345-bdc2-fbf049c4b90e", "assumed": true, "ascendantuuid": "4c7032f9-b39b-4e81-afb1-4aad349538ee", "descendantuuid": "260c29b7-089d-422b-9ce7-d65949cc8e8b", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5ca813b9-b9a1-498d-a667-daf37961fd7d', 'INSERT', '{"uuid": "5ca813b9-b9a1-498d-a667-daf37961fd7d", "assumed": true, "ascendantuuid": "6690edba-2f37-479f-9349-446be36b63cc", "descendantuuid": "4c7032f9-b39b-4e81-afb1-4aad349538ee", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8c276820-a255-4c60-b5b8-f57810e0ab39', 'INSERT', '{"uuid": "8c276820-a255-4c60-b5b8-f57810e0ab39", "roletype": "AGENT", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '82129a6a-c098-4472-b8ae-49113e5de0fd', 'INSERT', '{"uuid": "82129a6a-c098-4472-b8ae-49113e5de0fd", "assumed": true, "ascendantuuid": "4c7032f9-b39b-4e81-afb1-4aad349538ee", "descendantuuid": "8c276820-a255-4c60-b5b8-f57810e0ab39", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5c08efb0-89cd-4274-b0b2-09e232d3c60b', 'INSERT', '{"uuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "roletype": "TENANT", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3bc42c36-3682-4450-86d4-9db827bbf552', 'INSERT', '{"op": "SELECT", "uuid": "3bc42c36-3682-4450-86d4-9db827bbf552", "objectuuid": "264dc502-036f-4af7-b5aa-f991cfe795b5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5b50113d-ac43-4415-b6ec-3d3532b197d7', 'INSERT', '{"uuid": "5b50113d-ac43-4415-b6ec-3d3532b197d7", "assumed": true, "ascendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "descendantuuid": "3bc42c36-3682-4450-86d4-9db827bbf552", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '92a399be-0fc6-47de-a02d-09275087fc8b', 'INSERT', '{"uuid": "92a399be-0fc6-47de-a02d-09275087fc8b", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4bfe5ad2-6ab8-495d-a4eb-37cc47f3892e', 'INSERT', '{"uuid": "4bfe5ad2-6ab8-495d-a4eb-37cc47f3892e", "assumed": true, "ascendantuuid": "8c276820-a255-4c60-b5b8-f57810e0ab39", "descendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e8f21a2f-1130-42ba-9d41-248bd16f7159', 'INSERT', '{"uuid": "e8f21a2f-1130-42ba-9d41-248bd16f7159", "assumed": true, "ascendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "descendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5774b6fa-a741-4361-a340-977ef2c6b2ab', 'INSERT', '{"uuid": "5774b6fa-a741-4361-a340-977ef2c6b2ab", "assumed": true, "ascendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9d5cc290-f45b-4c15-880c-c25ebb5fdaf3', 'INSERT', '{"uuid": "9d5cc290-f45b-4c15-880c-c25ebb5fdaf3", "assumed": true, "ascendantuuid": "5c08efb0-89cd-4274-b0b2-09e232d3c60b", "descendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd0619144-ee74-4fbe-8182-d18261da9993', 'INSERT', '{"uuid": "d0619144-ee74-4fbe-8182-d18261da9993", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "8c276820-a255-4c60-b5b8-f57810e0ab39", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c4382f4e-a9af-4493-ad6e-b109cf80079a', 'INSERT', '{"uuid": "c4382f4e-a9af-4493-ad6e-b109cf80079a", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "6690edba-2f37-479f-9349-446be36b63cc", "grantedbyroleuuid": null, "grantedbytriggerof": "264dc502-036f-4af7-b5aa-f991cfe795b5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "264dc502-036f-4af7-b5aa-f991cfe795b5", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "contactuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'INSERT', '{"uuid": "9c568d47-146a-4be9-8ae0-c233ef79b212", "serialid": 93, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', 'INSERT', '{"uuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "roletype": "OWNER", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd4012885-17dd-45e2-9d1f-3ab661fbdaf0', 'INSERT', '{"op": "DELETE", "uuid": "d4012885-17dd-45e2-9d1f-3ab661fbdaf0", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8605607f-26fb-495c-82ac-42baa707b56f', 'INSERT', '{"uuid": "8605607f-26fb-495c-82ac-42baa707b56f", "assumed": true, "ascendantuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "descendantuuid": "d4012885-17dd-45e2-9d1f-3ab661fbdaf0", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0017a9ca-b85e-4dc0-867e-15036149cba9', 'INSERT', '{"uuid": "0017a9ca-b85e-4dc0-867e-15036149cba9", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '14d42cb2-68ab-47bf-863c-547ba0472de3', 'INSERT', '{"uuid": "14d42cb2-68ab-47bf-863c-547ba0472de3", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "grantedbyroleuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3e8da516-8841-4987-954c-15909540f046', 'INSERT', '{"uuid": "3e8da516-8841-4987-954c-15909540f046", "roletype": "ADMIN", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f929caff-d41f-4977-8419-41d193019baa', 'INSERT', '{"op": "UPDATE", "uuid": "f929caff-d41f-4977-8419-41d193019baa", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b407edf6-d9ba-407e-af1c-cff2a869a735', 'INSERT', '{"uuid": "b407edf6-d9ba-407e-af1c-cff2a869a735", "assumed": true, "ascendantuuid": "3e8da516-8841-4987-954c-15909540f046", "descendantuuid": "f929caff-d41f-4977-8419-41d193019baa", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2c5c88e1-0974-404c-a645-e4bcf3330378', 'INSERT', '{"uuid": "2c5c88e1-0974-404c-a645-e4bcf3330378", "assumed": true, "ascendantuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "descendantuuid": "3e8da516-8841-4987-954c-15909540f046", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5181412d-2787-460c-b51e-2f2c97f8e051', 'INSERT', '{"uuid": "5181412d-2787-460c-b51e-2f2c97f8e051", "roletype": "AGENT", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f0f3e31d-e0ec-4d47-8c95-1ac38185f5fc', 'INSERT', '{"uuid": "f0f3e31d-e0ec-4d47-8c95-1ac38185f5fc", "assumed": true, "ascendantuuid": "3e8da516-8841-4987-954c-15909540f046", "descendantuuid": "5181412d-2787-460c-b51e-2f2c97f8e051", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', 'INSERT', '{"uuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "roletype": "TENANT", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'fbc8962a-0b33-4562-8846-a5e08e177fe1', 'INSERT', '{"op": "SELECT", "uuid": "fbc8962a-0b33-4562-8846-a5e08e177fe1", "objectuuid": "9c568d47-146a-4be9-8ae0-c233ef79b212", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2970ea9d-bfcb-4b61-a5bb-4076233b83b3', 'INSERT', '{"uuid": "2970ea9d-bfcb-4b61-a5bb-4076233b83b3", "assumed": true, "ascendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "descendantuuid": "fbc8962a-0b33-4562-8846-a5e08e177fe1", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1eb2d9c0-0884-4206-9ddf-44151bd3034f', 'INSERT', '{"uuid": "1eb2d9c0-0884-4206-9ddf-44151bd3034f", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '10066fa0-d296-4367-8bf5-5f50ef9abdde', 'INSERT', '{"uuid": "10066fa0-d296-4367-8bf5-5f50ef9abdde", "assumed": true, "ascendantuuid": "5181412d-2787-460c-b51e-2f2c97f8e051", "descendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f548ccb4-2c52-4e6b-8127-eb40edcb900a', 'INSERT', '{"uuid": "f548ccb4-2c52-4e6b-8127-eb40edcb900a", "assumed": true, "ascendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "descendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2c6eec46-fb2b-4049-9c53-43ee8f9f982e', 'INSERT', '{"uuid": "2c6eec46-fb2b-4049-9c53-43ee8f9f982e", "assumed": true, "ascendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5e7c0870-2f3d-4693-9adf-fccf8e5d24f6', 'INSERT', '{"uuid": "5e7c0870-2f3d-4693-9adf-fccf8e5d24f6", "assumed": true, "ascendantuuid": "f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd", "descendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0964c90e-554f-44a0-99da-6d1162e920a3', 'INSERT', '{"uuid": "0964c90e-554f-44a0-99da-6d1162e920a3", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "5181412d-2787-460c-b51e-2f2c97f8e051", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e0b73402-934c-4979-ba0c-5ccf77dd1b0c', 'INSERT', '{"uuid": "e0b73402-934c-4979-ba0c-5ccf77dd1b0c", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "1f0f2d77-e8b2-4c04-85e4-09fedbafad8c", "grantedbyroleuuid": null, "grantedbytriggerof": "9c568d47-146a-4be9-8ae0-c233ef79b212"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "9c568d47-146a-4be9-8ae0-c233ef79b212", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "contactuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'INSERT', '{"uuid": "3b3cb721-4348-4aae-afea-5935d3e9475c", "serialid": 94, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '217190fa-fa45-4a12-a2d8-a58aaa6732c4', 'INSERT', '{"uuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "roletype": "OWNER", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '3f222530-009d-4cbd-8dce-4a256cab417e', 'INSERT', '{"op": "DELETE", "uuid": "3f222530-009d-4cbd-8dce-4a256cab417e", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f290e688-30d1-4f88-bb7b-ef7c08df7db3', 'INSERT', '{"uuid": "f290e688-30d1-4f88-bb7b-ef7c08df7db3", "assumed": true, "ascendantuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "descendantuuid": "3f222530-009d-4cbd-8dce-4a256cab417e", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9e8f9b07-cefb-4a05-84df-64056ea50248', 'INSERT', '{"uuid": "9e8f9b07-cefb-4a05-84df-64056ea50248", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2e099b00-5bbd-4e4f-8f72-aaba3cf39888', 'INSERT', '{"uuid": "2e099b00-5bbd-4e4f-8f72-aaba3cf39888", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "grantedbyroleuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '506b8a02-350a-4802-8639-d35c231a047d', 'INSERT', '{"uuid": "506b8a02-350a-4802-8639-d35c231a047d", "roletype": "ADMIN", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'b7df4616-86d2-40bb-b70d-35c71a8e533d', 'INSERT', '{"op": "UPDATE", "uuid": "b7df4616-86d2-40bb-b70d-35c71a8e533d", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fc3e750d-dff9-4ee7-af6b-7f3fcb607606', 'INSERT', '{"uuid": "fc3e750d-dff9-4ee7-af6b-7f3fcb607606", "assumed": true, "ascendantuuid": "506b8a02-350a-4802-8639-d35c231a047d", "descendantuuid": "b7df4616-86d2-40bb-b70d-35c71a8e533d", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0bfdc764-008c-4b5f-a646-95bbd42e992f', 'INSERT', '{"uuid": "0bfdc764-008c-4b5f-a646-95bbd42e992f", "assumed": true, "ascendantuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "descendantuuid": "506b8a02-350a-4802-8639-d35c231a047d", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b4bcd762-98c2-44ab-a130-2be6e83d23a8', 'INSERT', '{"uuid": "b4bcd762-98c2-44ab-a130-2be6e83d23a8", "roletype": "AGENT", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f9a6a87b-ddbc-4fd4-b33b-7a4d17e5d997', 'INSERT', '{"uuid": "f9a6a87b-ddbc-4fd4-b33b-7a4d17e5d997", "assumed": true, "ascendantuuid": "506b8a02-350a-4802-8639-d35c231a047d", "descendantuuid": "b4bcd762-98c2-44ab-a130-2be6e83d23a8", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', 'INSERT', '{"uuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "roletype": "TENANT", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '375e0bcf-050b-4956-b371-5a84495f0259', 'INSERT', '{"op": "SELECT", "uuid": "375e0bcf-050b-4956-b371-5a84495f0259", "objectuuid": "3b3cb721-4348-4aae-afea-5935d3e9475c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7d147984-c019-4266-99a6-a0f394f9ddbf', 'INSERT', '{"uuid": "7d147984-c019-4266-99a6-a0f394f9ddbf", "assumed": true, "ascendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "descendantuuid": "375e0bcf-050b-4956-b371-5a84495f0259", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '07b11699-4786-464b-bf66-40aecfb4451d', 'INSERT', '{"uuid": "07b11699-4786-464b-bf66-40aecfb4451d", "assumed": true, "ascendantuuid": "8d8536df-c84f-466b-bd46-17e8ff67b43c", "descendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8e9557ac-0162-40cf-9627-3791b86e5990', 'INSERT', '{"uuid": "8e9557ac-0162-40cf-9627-3791b86e5990", "assumed": true, "ascendantuuid": "b4bcd762-98c2-44ab-a130-2be6e83d23a8", "descendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8dc73446-b596-4ccd-9829-5422e625a165', 'INSERT', '{"uuid": "8dc73446-b596-4ccd-9829-5422e625a165", "assumed": true, "ascendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "descendantuuid": "12f0b062-6115-42d3-b1bd-b82a0e31efd9", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '787aa436-6f02-4bc3-87ee-f56dc39c0bfb', 'INSERT', '{"uuid": "787aa436-6f02-4bc3-87ee-f56dc39c0bfb", "assumed": true, "ascendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "descendantuuid": "5b97fea3-07be-443f-87f4-9a0764e31215", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '15359b82-a307-4205-96d7-24ac49de688e', 'INSERT', '{"uuid": "15359b82-a307-4205-96d7-24ac49de688e", "assumed": true, "ascendantuuid": "af1a2c68-ad3e-461f-8ddc-e952532bb50a", "descendantuuid": "64b677c5-c58c-4a84-95d4-69d005c4a682", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0032e621-3837-4001-91e0-9cc2ef134138', 'INSERT', '{"uuid": "0032e621-3837-4001-91e0-9cc2ef134138", "assumed": true, "ascendantuuid": "b0fbb802-35bf-4971-92a3-225bd6433052", "descendantuuid": "b4bcd762-98c2-44ab-a130-2be6e83d23a8", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cc078dc5-8624-4b05-bfe2-c6b7099f1142', 'INSERT', '{"uuid": "cc078dc5-8624-4b05-bfe2-c6b7099f1142", "assumed": true, "ascendantuuid": "a48c6e6e-77e8-481a-bca0-916150b6fd20", "descendantuuid": "217190fa-fa45-4a12-a2d8-a58aaa6732c4", "grantedbyroleuuid": null, "grantedbytriggerof": "3b3cb721-4348-4aae-afea-5935d3e9475c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "3b3cb721-4348-4aae-afea-5935d3e9475c", "version": 0, "anchoruuid": "65c4d29d-3cfa-4823-b5a4-37321b3e9c5d", "holderuuid": "55dd7d96-751e-43b2-afd8-4803a55b422a", "contactuuid": "7321b71b-7c08-49bf-ae45-12f69644378f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'INSERT', '{"uuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d", "serialid": 95, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '57bcec51-b2c9-426d-b301-3ee801acd8a5', 'INSERT', '{"uuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "roletype": "OWNER", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0087a277-dcd8-4df6-9209-8b817864d2a8', 'INSERT', '{"op": "DELETE", "uuid": "0087a277-dcd8-4df6-9209-8b817864d2a8", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eea8f04e-a63e-4056-862d-34f82f9723ae', 'INSERT', '{"uuid": "eea8f04e-a63e-4056-862d-34f82f9723ae", "assumed": true, "ascendantuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "descendantuuid": "0087a277-dcd8-4df6-9209-8b817864d2a8", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '31226058-44fa-4c9f-ba90-b2d28c2bf8e7', 'INSERT', '{"uuid": "31226058-44fa-4c9f-ba90-b2d28c2bf8e7", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aa387d12-9904-400d-8007-6d12959a943a', 'INSERT', '{"uuid": "aa387d12-9904-400d-8007-6d12959a943a", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "grantedbyroleuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'e9f3374b-749a-4548-9436-29a75e5e18ab', 'INSERT', '{"uuid": "e9f3374b-749a-4548-9436-29a75e5e18ab", "roletype": "ADMIN", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '9bc9d256-bf9a-4a42-a26e-36cf1ed29a05', 'INSERT', '{"op": "UPDATE", "uuid": "9bc9d256-bf9a-4a42-a26e-36cf1ed29a05", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '01604535-6e65-48e4-9ceb-aae87ca2c794', 'INSERT', '{"uuid": "01604535-6e65-48e4-9ceb-aae87ca2c794", "assumed": true, "ascendantuuid": "e9f3374b-749a-4548-9436-29a75e5e18ab", "descendantuuid": "9bc9d256-bf9a-4a42-a26e-36cf1ed29a05", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a63f3e8d-cbdc-4bcc-b8c6-61165f2efa84', 'INSERT', '{"uuid": "a63f3e8d-cbdc-4bcc-b8c6-61165f2efa84", "assumed": true, "ascendantuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "descendantuuid": "e9f3374b-749a-4548-9436-29a75e5e18ab", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'fa988deb-0f9d-49a3-a075-147134d037dc', 'INSERT', '{"uuid": "fa988deb-0f9d-49a3-a075-147134d037dc", "roletype": "AGENT", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '95968f88-daa4-44a3-b00e-357f8c683b17', 'INSERT', '{"uuid": "95968f88-daa4-44a3-b00e-357f8c683b17", "assumed": true, "ascendantuuid": "e9f3374b-749a-4548-9436-29a75e5e18ab", "descendantuuid": "fa988deb-0f9d-49a3-a075-147134d037dc", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', 'INSERT', '{"uuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "roletype": "TENANT", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '43ed3caa-00d8-4718-a695-b8901970ba7b', 'INSERT', '{"op": "SELECT", "uuid": "43ed3caa-00d8-4718-a695-b8901970ba7b", "objectuuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '19a90787-707a-4daf-9142-0f7c57e5c060', 'INSERT', '{"uuid": "19a90787-707a-4daf-9142-0f7c57e5c060", "assumed": true, "ascendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "descendantuuid": "43ed3caa-00d8-4718-a695-b8901970ba7b", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '92694823-a96a-45a8-a954-62b2867a43ed', 'INSERT', '{"uuid": "92694823-a96a-45a8-a954-62b2867a43ed", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f330e9f4-a296-4a24-94cf-82b475bfb43e', 'INSERT', '{"uuid": "f330e9f4-a296-4a24-94cf-82b475bfb43e", "assumed": true, "ascendantuuid": "fa988deb-0f9d-49a3-a075-147134d037dc", "descendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '10be02aa-6b95-45b0-a941-e43f146ee2a4', 'INSERT', '{"uuid": "10be02aa-6b95-45b0-a941-e43f146ee2a4", "assumed": true, "ascendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "descendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bbb34cc5-fe68-4ed6-9437-b87a82baffdf', 'INSERT', '{"uuid": "bbb34cc5-fe68-4ed6-9437-b87a82baffdf", "assumed": true, "ascendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '50cecc6d-efa6-4fbe-b48a-d607da509088', 'INSERT', '{"uuid": "50cecc6d-efa6-4fbe-b48a-d607da509088", "assumed": true, "ascendantuuid": "bbb4fb59-9830-47e6-89b7-0d3dd66d52d6", "descendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eb5149d3-2bf8-489a-ab88-21199f443f70', 'INSERT', '{"uuid": "eb5149d3-2bf8-489a-ab88-21199f443f70", "assumed": true, "ascendantuuid": "e9f3374b-749a-4548-9436-29a75e5e18ab", "descendantuuid": "062ce171-efc3-4f07-8aa1-3486948ade81", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4f183d5b-b8d0-4663-a243-a73cb4ed314e', 'INSERT', '{"uuid": "4f183d5b-b8d0-4663-a243-a73cb4ed314e", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "fa988deb-0f9d-49a3-a075-147134d037dc", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8595d268-6376-4b1f-9e1f-9154132fc195', 'INSERT', '{"uuid": "8595d268-6376-4b1f-9e1f-9154132fc195", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "57bcec51-b2c9-426d-b301-3ee801acd8a5", "grantedbyroleuuid": null, "grantedbytriggerof": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'INSERT', '{"mark": null, "type": "REPRESENTATIVE", "uuid": "8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "contactuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'INSERT', '{"uuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078", "serialid": 96, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', 'INSERT', '{"uuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "roletype": "OWNER", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8d023e54-6993-4429-87cd-29cca95b1161', 'INSERT', '{"op": "DELETE", "uuid": "8d023e54-6993-4429-87cd-29cca95b1161", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bf02977a-ff05-431b-952c-26e6d580b4a5', 'INSERT', '{"uuid": "bf02977a-ff05-431b-952c-26e6d580b4a5", "assumed": true, "ascendantuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "descendantuuid": "8d023e54-6993-4429-87cd-29cca95b1161", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'eaca8dd6-fe83-42c1-9cc7-f98dd9779760', 'INSERT', '{"uuid": "eaca8dd6-fe83-42c1-9cc7-f98dd9779760", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2cc0d7a4-41c7-4e93-918f-d392fe0e236d', 'INSERT', '{"uuid": "2cc0d7a4-41c7-4e93-918f-d392fe0e236d", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "grantedbyroleuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', 'INSERT', '{"uuid": "6b190de6-8a21-4f39-a1dd-eb6ae523e8e0", "roletype": "ADMIN", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1fea3f9c-8227-4419-963a-aa00d2a07abd', 'INSERT', '{"op": "UPDATE", "uuid": "1fea3f9c-8227-4419-963a-aa00d2a07abd", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '033d1de1-06a4-443a-bee6-b564cf78d8be', 'INSERT', '{"uuid": "033d1de1-06a4-443a-bee6-b564cf78d8be", "assumed": true, "ascendantuuid": "6b190de6-8a21-4f39-a1dd-eb6ae523e8e0", "descendantuuid": "1fea3f9c-8227-4419-963a-aa00d2a07abd", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a900f3b4-4340-45df-b5ea-816f12a67bcf', 'INSERT', '{"uuid": "a900f3b4-4340-45df-b5ea-816f12a67bcf", "assumed": true, "ascendantuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "descendantuuid": "6b190de6-8a21-4f39-a1dd-eb6ae523e8e0", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9a7c9014-0599-4afc-b01e-f0346d717c17', 'INSERT', '{"uuid": "9a7c9014-0599-4afc-b01e-f0346d717c17", "roletype": "AGENT", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '906b599a-e2e5-4ae0-9231-7038de01ed56', 'INSERT', '{"uuid": "906b599a-e2e5-4ae0-9231-7038de01ed56", "assumed": true, "ascendantuuid": "6b190de6-8a21-4f39-a1dd-eb6ae523e8e0", "descendantuuid": "9a7c9014-0599-4afc-b01e-f0346d717c17", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'INSERT', '{"uuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "roletype": "TENANT", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '467ef1e1-2f3b-44e6-b369-1bb744dd1f01', 'INSERT', '{"op": "SELECT", "uuid": "467ef1e1-2f3b-44e6-b369-1bb744dd1f01", "objectuuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '76595b43-99fa-486d-a12b-b286ad13f777', 'INSERT', '{"uuid": "76595b43-99fa-486d-a12b-b286ad13f777", "assumed": true, "ascendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "descendantuuid": "467ef1e1-2f3b-44e6-b369-1bb744dd1f01", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b5b96ad0-50cf-42f4-962b-4768c42986ad', 'INSERT', '{"uuid": "b5b96ad0-50cf-42f4-962b-4768c42986ad", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '37420bc0-0ce4-437b-a74a-ea60f2418f05', 'INSERT', '{"uuid": "37420bc0-0ce4-437b-a74a-ea60f2418f05", "assumed": true, "ascendantuuid": "9a7c9014-0599-4afc-b01e-f0346d717c17", "descendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bb623276-ae7e-43d9-b3d5-5ee27b44583c', 'INSERT', '{"uuid": "bb623276-ae7e-43d9-b3d5-5ee27b44583c", "assumed": true, "ascendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "descendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1491b473-789a-478c-ba91-887e58506ae0', 'INSERT', '{"uuid": "1491b473-789a-478c-ba91-887e58506ae0", "assumed": true, "ascendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0529dc40-75c1-47cd-ae8a-4b4fd292757b', 'INSERT', '{"uuid": "0529dc40-75c1-47cd-ae8a-4b4fd292757b", "assumed": true, "ascendantuuid": "f134e8cc-d678-4cf3-8a14-10bc8ecb4704", "descendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bc95d082-68e6-42fa-ab61-f8209bcea3a9', 'INSERT', '{"uuid": "bc95d082-68e6-42fa-ab61-f8209bcea3a9", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "9a7c9014-0599-4afc-b01e-f0346d717c17", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f1699c76-7996-4eda-9045-40ab1e0febb4', 'INSERT', '{"uuid": "f1699c76-7996-4eda-9045-40ab1e0febb4", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "ca23eab4-c6ae-4a7b-8c80-0f50a06766c3", "grantedbyroleuuid": null, "grantedbytriggerof": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "ce0d5692-c5f7-4bc8-ba69-aa409d0ec078", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "contactuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'INSERT', '{"uuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e", "serialid": 97, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', 'INSERT', '{"uuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "roletype": "OWNER", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '18aded7e-c76a-44a6-810a-bb54651bbc35', 'INSERT', '{"op": "DELETE", "uuid": "18aded7e-c76a-44a6-810a-bb54651bbc35", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c043bfef-ac14-4135-83e8-425983ee3297', 'INSERT', '{"uuid": "c043bfef-ac14-4135-83e8-425983ee3297", "assumed": true, "ascendantuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "descendantuuid": "18aded7e-c76a-44a6-810a-bb54651bbc35", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '86ddb5d5-4279-4489-b352-f718c4d7a774', 'INSERT', '{"uuid": "86ddb5d5-4279-4489-b352-f718c4d7a774", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0665312e-e91c-4c46-92d9-01ea6ea55ddb', 'INSERT', '{"uuid": "0665312e-e91c-4c46-92d9-01ea6ea55ddb", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "grantedbyroleuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', 'INSERT', '{"uuid": "b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad", "roletype": "ADMIN", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c58c8187-4976-41fb-85bc-241743be56f4', 'INSERT', '{"op": "UPDATE", "uuid": "c58c8187-4976-41fb-85bc-241743be56f4", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9206d89d-77fe-43f6-b381-4c75be298c7f', 'INSERT', '{"uuid": "9206d89d-77fe-43f6-b381-4c75be298c7f", "assumed": true, "ascendantuuid": "b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad", "descendantuuid": "c58c8187-4976-41fb-85bc-241743be56f4", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f2771880-fdea-4274-be1a-53767588ebae', 'INSERT', '{"uuid": "f2771880-fdea-4274-be1a-53767588ebae", "assumed": true, "ascendantuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "descendantuuid": "b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '13e241ab-7a0c-465b-a220-8349896e9191', 'INSERT', '{"uuid": "13e241ab-7a0c-465b-a220-8349896e9191", "roletype": "AGENT", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c0be6289-21e5-4bfb-85b2-211faae64213', 'INSERT', '{"uuid": "c0be6289-21e5-4bfb-85b2-211faae64213", "assumed": true, "ascendantuuid": "b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad", "descendantuuid": "13e241ab-7a0c-465b-a220-8349896e9191", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'INSERT', '{"uuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "roletype": "TENANT", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5be940e7-8aca-4535-8165-52759309ab2b', 'INSERT', '{"op": "SELECT", "uuid": "5be940e7-8aca-4535-8165-52759309ab2b", "objectuuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e01fc458-4140-4767-a472-9bbc32018c0e', 'INSERT', '{"uuid": "e01fc458-4140-4767-a472-9bbc32018c0e", "assumed": true, "ascendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "descendantuuid": "5be940e7-8aca-4535-8165-52759309ab2b", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'caaf5819-e08c-432a-a1c8-d883222f1bed', 'INSERT', '{"uuid": "caaf5819-e08c-432a-a1c8-d883222f1bed", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '593936c9-469e-4e58-bf19-d544c9ac1dd9', 'INSERT', '{"uuid": "593936c9-469e-4e58-bf19-d544c9ac1dd9", "assumed": true, "ascendantuuid": "13e241ab-7a0c-465b-a220-8349896e9191", "descendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '01e8edbf-6cbd-4162-af7e-1467ab1cceab', 'INSERT', '{"uuid": "01e8edbf-6cbd-4162-af7e-1467ab1cceab", "assumed": true, "ascendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "descendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ae328185-92e2-4a08-a882-c413fa3c9331', 'INSERT', '{"uuid": "ae328185-92e2-4a08-a882-c413fa3c9331", "assumed": true, "ascendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'db5a877f-e2ae-424b-b6ee-7a5ba8ca5b1e', 'INSERT', '{"uuid": "db5a877f-e2ae-424b-b6ee-7a5ba8ca5b1e", "assumed": true, "ascendantuuid": "712f655a-c76b-4a0d-a2c5-04ee76e398ec", "descendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ab3baafb-5d63-47e1-a5c2-d337fa87166a', 'INSERT', '{"uuid": "ab3baafb-5d63-47e1-a5c2-d337fa87166a", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "13e241ab-7a0c-465b-a220-8349896e9191", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1645da2d-29ab-4aeb-b070-65cae977185c', 'INSERT', '{"uuid": "1645da2d-29ab-4aeb-b070-65cae977185c", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "4bc718f4-83d4-443d-8a80-93d3aeeadbd1", "grantedbyroleuuid": null, "grantedbytriggerof": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "contactuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'INSERT', '{"uuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe", "serialid": 98, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', 'INSERT', '{"uuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "roletype": "OWNER", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff', 'INSERT', '{"op": "DELETE", "uuid": "5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'db8efc71-6e89-4fef-abcc-f4a9e82f9ca9', 'INSERT', '{"uuid": "db8efc71-6e89-4fef-abcc-f4a9e82f9ca9", "assumed": true, "ascendantuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "descendantuuid": "5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '958a0011-8087-4e3a-bd6b-a2c8085f9641', 'INSERT', '{"uuid": "958a0011-8087-4e3a-bd6b-a2c8085f9641", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7b1b31db-b751-42a0-b68c-a18329d42b82', 'INSERT', '{"op": "SELECT", "uuid": "7b1b31db-b751-42a0-b68c-a18329d42b82", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '595447da-d77b-4086-8a17-808b7ebddb73', 'INSERT', '{"uuid": "595447da-d77b-4086-8a17-808b7ebddb73", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "grantedbyroleuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', 'INSERT', '{"uuid": "cb5146a4-625e-4c32-a0ea-d1d0c224e1b8", "roletype": "ADMIN", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7d7d0f8d-1542-4252-b77b-379ffde0f1ee', 'INSERT', '{"op": "UPDATE", "uuid": "7d7d0f8d-1542-4252-b77b-379ffde0f1ee", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f6a268f6-54b7-4b87-b1f9-b384e002db90', 'INSERT', '{"uuid": "f6a268f6-54b7-4b87-b1f9-b384e002db90", "assumed": true, "ascendantuuid": "cb5146a4-625e-4c32-a0ea-d1d0c224e1b8", "descendantuuid": "7d7d0f8d-1542-4252-b77b-379ffde0f1ee", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0235e108-8a50-4928-ad3d-d8502d4733e7', 'INSERT', '{"uuid": "0235e108-8a50-4928-ad3d-d8502d4733e7", "assumed": true, "ascendantuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "descendantuuid": "cb5146a4-625e-4c32-a0ea-d1d0c224e1b8", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '557aacc7-96fc-4c31-9a96-ecec09d7fe3f', 'INSERT', '{"uuid": "557aacc7-96fc-4c31-9a96-ecec09d7fe3f", "roletype": "AGENT", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3e5b3cb5-fd38-4a7f-99f9-af0281778a38', 'INSERT', '{"uuid": "3e5b3cb5-fd38-4a7f-99f9-af0281778a38", "assumed": true, "ascendantuuid": "cb5146a4-625e-4c32-a0ea-d1d0c224e1b8", "descendantuuid": "557aacc7-96fc-4c31-9a96-ecec09d7fe3f", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5ecbb381-1585-46e6-b942-e3e14896ab77', 'INSERT', '{"uuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "roletype": "TENANT", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'd3342ab2-62af-402f-9ebd-fd9034349883', 'INSERT', '{"op": "SELECT", "uuid": "d3342ab2-62af-402f-9ebd-fd9034349883", "objectuuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '50fc8237-9067-4cf6-867b-8bf1663df5f3', 'INSERT', '{"uuid": "50fc8237-9067-4cf6-867b-8bf1663df5f3", "assumed": true, "ascendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "descendantuuid": "d3342ab2-62af-402f-9ebd-fd9034349883", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'aec65509-1e81-4e18-ac07-b6029d026a8f', 'INSERT', '{"uuid": "aec65509-1e81-4e18-ac07-b6029d026a8f", "assumed": true, "ascendantuuid": "cb843eb3-0d44-4099-a3ee-989d1f9f53d7", "descendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '551e630b-8873-47cd-b98d-b078e469448b', 'INSERT', '{"uuid": "551e630b-8873-47cd-b98d-b078e469448b", "assumed": true, "ascendantuuid": "557aacc7-96fc-4c31-9a96-ecec09d7fe3f", "descendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5393008b-7aee-46da-8b11-dafcd363fa5b', 'INSERT', '{"uuid": "5393008b-7aee-46da-8b11-dafcd363fa5b", "assumed": true, "ascendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "descendantuuid": "b0ccd4de-9f63-4848-b52a-7ad776dddd78", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '53f03ac8-4d24-447b-9c0e-2a4c325391b7', 'INSERT', '{"uuid": "53f03ac8-4d24-447b-9c0e-2a4c325391b7", "assumed": true, "ascendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2e0cb84e-dec2-436f-9057-aada5cdc260b', 'INSERT', '{"uuid": "2e0cb84e-dec2-436f-9057-aada5cdc260b", "assumed": true, "ascendantuuid": "5ecbb381-1585-46e6-b942-e3e14896ab77", "descendantuuid": "d0d6036a-4fe9-4823-943d-bc784037a589", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '35714be6-bae6-422b-ad35-509f31660f23', 'INSERT', '{"uuid": "35714be6-bae6-422b-ad35-509f31660f23", "assumed": true, "ascendantuuid": "1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26", "descendantuuid": "557aacc7-96fc-4c31-9a96-ecec09d7fe3f", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f7dbbdde-8221-4b5e-99da-4ef047ab4b90', 'INSERT', '{"uuid": "f7dbbdde-8221-4b5e-99da-4ef047ab4b90", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "4dfd857a-a21b-4c99-82c6-ce6c9f1b1990", "grantedbyroleuuid": null, "grantedbytriggerof": "c19283ee-f365-4bcc-9251-c9d5d45aedfe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "c19283ee-f365-4bcc-9251-c9d5d45aedfe", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "351d423b-c277-4300-afcd-7cdc9942f48b", "contactuuid": "9b4179ba-a41d-47e3-bbaa-a180b2965f04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'INSERT', '{"uuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce", "serialid": 99, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c94be9f2-0de0-44ea-9f93-e48980321db2', 'INSERT', '{"uuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "roletype": "OWNER", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '40de40b5-5752-4890-a138-89993f9fa518', 'INSERT', '{"op": "DELETE", "uuid": "40de40b5-5752-4890-a138-89993f9fa518", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '134ec181-6535-49b6-be0d-8a961c2d0e4b', 'INSERT', '{"uuid": "134ec181-6535-49b6-be0d-8a961c2d0e4b", "assumed": true, "ascendantuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "descendantuuid": "40de40b5-5752-4890-a138-89993f9fa518", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9d9f88a3-f696-4047-9b32-b5cc7ed05ed7', 'INSERT', '{"uuid": "9d9f88a3-f696-4047-9b32-b5cc7ed05ed7", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4b56205b-23bd-4334-9a74-d986c8052b01', 'INSERT', '{"uuid": "4b56205b-23bd-4334-9a74-d986c8052b01", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "grantedbyroleuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8dc77464-badc-4cb0-bc0b-d979585c87fc', 'INSERT', '{"uuid": "8dc77464-badc-4cb0-bc0b-d979585c87fc", "roletype": "ADMIN", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '8b5eadc4-82fa-44ec-a8e9-ae3048a55980', 'INSERT', '{"op": "UPDATE", "uuid": "8b5eadc4-82fa-44ec-a8e9-ae3048a55980", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a33964c0-6026-484d-8d37-a01b64aef3a8', 'INSERT', '{"uuid": "a33964c0-6026-484d-8d37-a01b64aef3a8", "assumed": true, "ascendantuuid": "8dc77464-badc-4cb0-bc0b-d979585c87fc", "descendantuuid": "8b5eadc4-82fa-44ec-a8e9-ae3048a55980", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '896bd060-b54f-4e03-9e4e-991ff4810301', 'INSERT', '{"uuid": "896bd060-b54f-4e03-9e4e-991ff4810301", "assumed": true, "ascendantuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "descendantuuid": "8dc77464-badc-4cb0-bc0b-d979585c87fc", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', 'INSERT', '{"uuid": "53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6", "roletype": "AGENT", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bcfe31ca-056e-4ad2-abb1-53fcc28172e9', 'INSERT', '{"uuid": "bcfe31ca-056e-4ad2-abb1-53fcc28172e9", "assumed": true, "ascendantuuid": "8dc77464-badc-4cb0-bc0b-d979585c87fc", "descendantuuid": "53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3f746db8-3087-48a4-b9fc-f5b980287905', 'INSERT', '{"uuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "roletype": "TENANT", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'c6a0f56a-8b53-4194-bb3f-9e0057ba4749', 'INSERT', '{"op": "SELECT", "uuid": "c6a0f56a-8b53-4194-bb3f-9e0057ba4749", "objectuuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6c86231b-ce08-44a8-842e-12b9ab140c8d', 'INSERT', '{"uuid": "6c86231b-ce08-44a8-842e-12b9ab140c8d", "assumed": true, "ascendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "descendantuuid": "c6a0f56a-8b53-4194-bb3f-9e0057ba4749", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd2c434d7-7f1b-4cfb-bae0-71271eea8872', 'INSERT', '{"uuid": "d2c434d7-7f1b-4cfb-bae0-71271eea8872", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2a7f650c-693b-49aa-8286-784d6ac4ffc4', 'INSERT', '{"uuid": "2a7f650c-693b-49aa-8286-784d6ac4ffc4", "assumed": true, "ascendantuuid": "53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6", "descendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fae07eaf-c35f-4824-82b3-04f49fa84b42', 'INSERT', '{"uuid": "fae07eaf-c35f-4824-82b3-04f49fa84b42", "assumed": true, "ascendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "descendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6d056573-19fb-402e-b1ac-ecbfa48a1170', 'INSERT', '{"uuid": "6d056573-19fb-402e-b1ac-ecbfa48a1170", "assumed": true, "ascendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2c4be81b-6a5d-4101-b51c-688ee6ffb013', 'INSERT', '{"uuid": "2c4be81b-6a5d-4101-b51c-688ee6ffb013", "assumed": true, "ascendantuuid": "3f746db8-3087-48a4-b9fc-f5b980287905", "descendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd7ea9ef1-72aa-475b-b0bf-028eaa29a797', 'INSERT', '{"uuid": "d7ea9ef1-72aa-475b-b0bf-028eaa29a797", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c990eb25-e81d-4a14-b12c-d20cf141e66c', 'INSERT', '{"uuid": "c990eb25-e81d-4a14-b12c-d20cf141e66c", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "c94be9f2-0de0-44ea-9f93-e48980321db2", "grantedbyroleuuid": null, "grantedbytriggerof": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "c1d816d5-1d79-4996-bfaf-f2158c3a7dce", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "contactuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '526ddec1-2738-48dc-a696-6c3579201851', 'INSERT', '{"uuid": "526ddec1-2738-48dc-a696-6c3579201851", "serialid": 100, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', 'INSERT', '{"uuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "roletype": "OWNER", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'dc7d613a-e452-4daa-972d-4ce91d58eab7', 'INSERT', '{"op": "DELETE", "uuid": "dc7d613a-e452-4daa-972d-4ce91d58eab7", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd307896d-c8f6-45fd-a973-7c4e922478c5', 'INSERT', '{"uuid": "d307896d-c8f6-45fd-a973-7c4e922478c5", "assumed": true, "ascendantuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "descendantuuid": "dc7d613a-e452-4daa-972d-4ce91d58eab7", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '34c46518-0c95-49a2-9123-e2c681c3ea4a', 'INSERT', '{"uuid": "34c46518-0c95-49a2-9123-e2c681c3ea4a", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '1434bbcd-0a5d-453b-9c11-25458dd0acc6', 'INSERT', '{"uuid": "1434bbcd-0a5d-453b-9c11-25458dd0acc6", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "grantedbyroleuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'af79a39c-1b00-485d-a4e7-5ee3a77afe65', 'INSERT', '{"uuid": "af79a39c-1b00-485d-a4e7-5ee3a77afe65", "roletype": "ADMIN", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '51d1c46e-09fb-4d20-9324-38a40083d746', 'INSERT', '{"op": "UPDATE", "uuid": "51d1c46e-09fb-4d20-9324-38a40083d746", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a28d0b36-7c7d-4251-bb26-2d4abd30bbc7', 'INSERT', '{"uuid": "a28d0b36-7c7d-4251-bb26-2d4abd30bbc7", "assumed": true, "ascendantuuid": "af79a39c-1b00-485d-a4e7-5ee3a77afe65", "descendantuuid": "51d1c46e-09fb-4d20-9324-38a40083d746", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '40baf788-76b6-4962-bb38-f2982dd2ac8b', 'INSERT', '{"uuid": "40baf788-76b6-4962-bb38-f2982dd2ac8b", "assumed": true, "ascendantuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "descendantuuid": "af79a39c-1b00-485d-a4e7-5ee3a77afe65", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '918c9a58-7fd3-490a-ace7-4e432cf6a2e3', 'INSERT', '{"uuid": "918c9a58-7fd3-490a-ace7-4e432cf6a2e3", "roletype": "AGENT", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '21b62218-a7b6-4c98-a7ba-1a09af89f252', 'INSERT', '{"uuid": "21b62218-a7b6-4c98-a7ba-1a09af89f252", "assumed": true, "ascendantuuid": "af79a39c-1b00-485d-a4e7-5ee3a77afe65", "descendantuuid": "918c9a58-7fd3-490a-ace7-4e432cf6a2e3", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f05757fd-3ee2-4141-a98d-95096b86aa13', 'INSERT', '{"uuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "roletype": "TENANT", "objectuuid": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd12af4d9-17dd-432a-ab1c-a89d5006aa57', 'INSERT', '{"uuid": "d12af4d9-17dd-432a-ab1c-a89d5006aa57", "assumed": true, "ascendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "descendantuuid": "7b1b31db-b751-42a0-b68c-a18329d42b82", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e7071895-4348-455d-9939-32094853a229', 'INSERT', '{"uuid": "e7071895-4348-455d-9939-32094853a229", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd9be35ac-c37c-4e20-8c5f-288dbf55abb6', 'INSERT', '{"uuid": "d9be35ac-c37c-4e20-8c5f-288dbf55abb6", "assumed": true, "ascendantuuid": "918c9a58-7fd3-490a-ace7-4e432cf6a2e3", "descendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c1f528f7-3ab7-4c8d-95b2-fbb75b669d9b', 'INSERT', '{"uuid": "c1f528f7-3ab7-4c8d-95b2-fbb75b669d9b", "assumed": true, "ascendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "descendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5939075c-7567-49a0-8d25-1f4f3094c696', 'INSERT', '{"uuid": "5939075c-7567-49a0-8d25-1f4f3094c696", "assumed": true, "ascendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '166274f8-5d30-426b-ab02-e755c9bdb4d6', 'INSERT', '{"uuid": "166274f8-5d30-426b-ab02-e755c9bdb4d6", "assumed": true, "ascendantuuid": "f05757fd-3ee2-4141-a98d-95096b86aa13", "descendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '33d4aec1-8073-4e6d-857a-f88127846b1a', 'INSERT', '{"uuid": "33d4aec1-8073-4e6d-857a-f88127846b1a", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "918c9a58-7fd3-490a-ace7-4e432cf6a2e3", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd798c1e6-bbf3-4b99-ace2-a99919c93c98', 'INSERT', '{"uuid": "d798c1e6-bbf3-4b99-ace2-a99919c93c98", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "f01235b8-39c1-42c4-83d5-a1e51c1fdd72", "grantedbyroleuuid": null, "grantedbytriggerof": "526ddec1-2738-48dc-a696-6c3579201851"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '526ddec1-2738-48dc-a696-6c3579201851', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "526ddec1-2738-48dc-a696-6c3579201851", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "contactuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'INSERT', '{"uuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2", "serialid": 101, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', 'INSERT', '{"uuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "roletype": "OWNER", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e8bbadad-a89f-4ea3-a0fe-ad94420d7082', 'INSERT', '{"op": "DELETE", "uuid": "e8bbadad-a89f-4ea3-a0fe-ad94420d7082", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4da134a5-7555-47c5-b14f-22c228fd25f0', 'INSERT', '{"uuid": "4da134a5-7555-47c5-b14f-22c228fd25f0", "assumed": true, "ascendantuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "descendantuuid": "e8bbadad-a89f-4ea3-a0fe-ad94420d7082", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'df90a896-8a8f-4520-bbaa-f8b57751b7c6', 'INSERT', '{"uuid": "df90a896-8a8f-4520-bbaa-f8b57751b7c6", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cfad0ac8-34d2-4a12-9be7-0f9fe5f25e50', 'INSERT', '{"uuid": "cfad0ac8-34d2-4a12-9be7-0f9fe5f25e50", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "grantedbyroleuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '91de9bc8-0c04-478b-b8dd-7d5ba36229ba', 'INSERT', '{"uuid": "91de9bc8-0c04-478b-b8dd-7d5ba36229ba", "roletype": "ADMIN", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c', 'INSERT', '{"op": "UPDATE", "uuid": "a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ee279ae8-31e9-4a46-892a-fcd7d3b04ff1', 'INSERT', '{"uuid": "ee279ae8-31e9-4a46-892a-fcd7d3b04ff1", "assumed": true, "ascendantuuid": "91de9bc8-0c04-478b-b8dd-7d5ba36229ba", "descendantuuid": "a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'bd19ae12-6efe-4886-abc0-b5c094253d52', 'INSERT', '{"uuid": "bd19ae12-6efe-4886-abc0-b5c094253d52", "assumed": true, "ascendantuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "descendantuuid": "91de9bc8-0c04-478b-b8dd-7d5ba36229ba", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '9a11ff8a-8a4e-42c5-b37e-7c9706747581', 'INSERT', '{"uuid": "9a11ff8a-8a4e-42c5-b37e-7c9706747581", "roletype": "AGENT", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'af5c9025-6aac-4871-add9-523a2654e4dd', 'INSERT', '{"uuid": "af5c9025-6aac-4871-add9-523a2654e4dd", "assumed": true, "ascendantuuid": "91de9bc8-0c04-478b-b8dd-7d5ba36229ba", "descendantuuid": "9a11ff8a-8a4e-42c5-b37e-7c9706747581", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '5602ce7f-cf99-43e4-9d54-4324e7262dd1', 'INSERT', '{"uuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "roletype": "TENANT", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '0698664d-beea-460f-9499-7301be93d5bf', 'INSERT', '{"op": "SELECT", "uuid": "0698664d-beea-460f-9499-7301be93d5bf", "objectuuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '46bd2bdd-1b14-40e1-9d16-8c11ebbd52dd', 'INSERT', '{"uuid": "46bd2bdd-1b14-40e1-9d16-8c11ebbd52dd", "assumed": true, "ascendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "descendantuuid": "0698664d-beea-460f-9499-7301be93d5bf", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7be80ec5-fa63-4ce0-b34e-6b09b71679cd', 'INSERT', '{"uuid": "7be80ec5-fa63-4ce0-b34e-6b09b71679cd", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b9efe810-c5ad-4585-950b-2869b60904d6', 'INSERT', '{"uuid": "b9efe810-c5ad-4585-950b-2869b60904d6", "assumed": true, "ascendantuuid": "9a11ff8a-8a4e-42c5-b37e-7c9706747581", "descendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'feb5fe79-001e-414c-8dc7-09657384b63c', 'INSERT', '{"uuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "roletype": "OWNER", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b9f1a2e5-ab44-4008-903f-2da2e85eb57d', 'INSERT', '{"uuid": "b9f1a2e5-ab44-4008-903f-2da2e85eb57d", "assumed": true, "ascendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "descendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '48b93a3c-7a04-4825-a0b8-6978f70b5b95', 'INSERT', '{"uuid": "48b93a3c-7a04-4825-a0b8-6978f70b5b95", "assumed": true, "ascendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '11b92236-141a-4e5f-9ba3-f217cea126c1', 'INSERT', '{"uuid": "11b92236-141a-4e5f-9ba3-f217cea126c1", "assumed": true, "ascendantuuid": "5602ce7f-cf99-43e4-9d54-4324e7262dd1", "descendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4a6ba8d2-766b-4d73-b588-085892954914', 'INSERT', '{"uuid": "4a6ba8d2-766b-4d73-b588-085892954914", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "9a11ff8a-8a4e-42c5-b37e-7c9706747581", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e602d9c4-1f22-414e-be23-c917f10c5743', 'INSERT', '{"uuid": "e602d9c4-1f22-414e-be23-c917f10c5743", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "c8da4dbb-2a84-4291-9075-8da0c4e257a7", "grantedbyroleuuid": null, "grantedbytriggerof": "2cdad63b-9a5a-42db-a383-9c552f1d16c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "2cdad63b-9a5a-42db-a383-9c552f1d16c2", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "contactuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'INSERT', '{"uuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e", "serialid": 102, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'de39bb09-aecb-479a-9b94-0f8f850a421f', 'INSERT', '{"uuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "roletype": "OWNER", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'e1b2f563-302a-40e6-bb7a-2725af8a7320', 'INSERT', '{"op": "DELETE", "uuid": "e1b2f563-302a-40e6-bb7a-2725af8a7320", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '834931cb-04d6-437f-89dc-f8ebb454da51', 'INSERT', '{"uuid": "834931cb-04d6-437f-89dc-f8ebb454da51", "assumed": true, "ascendantuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "descendantuuid": "e1b2f563-302a-40e6-bb7a-2725af8a7320", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2608b16a-41c5-41a8-a649-b019a8a6a37f', 'INSERT', '{"uuid": "2608b16a-41c5-41a8-a649-b019a8a6a37f", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8e271497-77b9-4c5f-941c-fd99348737cb', 'INSERT', '{"uuid": "8e271497-77b9-4c5f-941c-fd99348737cb", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "grantedbyroleuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', 'INSERT', '{"uuid": "02b39977-ec89-4a9e-b7df-9ef1f4e0dcee", "roletype": "ADMIN", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f8a70890-768e-4af9-a261-3eed2c3eff9c', 'INSERT', '{"op": "UPDATE", "uuid": "f8a70890-768e-4af9-a261-3eed2c3eff9c", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '01a76a19-3815-4d06-acd1-1f392b5466b7', 'INSERT', '{"uuid": "01a76a19-3815-4d06-acd1-1f392b5466b7", "assumed": true, "ascendantuuid": "02b39977-ec89-4a9e-b7df-9ef1f4e0dcee", "descendantuuid": "f8a70890-768e-4af9-a261-3eed2c3eff9c", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0527c95e-6f22-4aae-b9ef-a3459dee3fb1', 'INSERT', '{"uuid": "0527c95e-6f22-4aae-b9ef-a3459dee3fb1", "assumed": true, "ascendantuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "descendantuuid": "02b39977-ec89-4a9e-b7df-9ef1f4e0dcee", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b723c3a1-8bb2-4f3b-901c-1219c04861cc', 'INSERT', '{"uuid": "b723c3a1-8bb2-4f3b-901c-1219c04861cc", "roletype": "AGENT", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c829aa26-6fe1-4a0c-910b-a183a4af6a45', 'INSERT', '{"uuid": "c829aa26-6fe1-4a0c-910b-a183a4af6a45", "assumed": true, "ascendantuuid": "02b39977-ec89-4a9e-b7df-9ef1f4e0dcee", "descendantuuid": "b723c3a1-8bb2-4f3b-901c-1219c04861cc", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '55336c43-e7ea-4194-98a4-fbba54330f8b', 'INSERT', '{"uuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "roletype": "TENANT", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7d5704d6-e5e8-4f92-a231-3c9412a25813', 'INSERT', '{"op": "SELECT", "uuid": "7d5704d6-e5e8-4f92-a231-3c9412a25813", "objectuuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a69b872d-45b8-4457-9197-e49643838ae7', 'INSERT', '{"uuid": "a69b872d-45b8-4457-9197-e49643838ae7", "assumed": true, "ascendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "descendantuuid": "7d5704d6-e5e8-4f92-a231-3c9412a25813", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fb4b0622-be5d-433a-be03-5692dbfdf01c', 'INSERT', '{"uuid": "fb4b0622-be5d-433a-be03-5692dbfdf01c", "assumed": true, "ascendantuuid": "3b95dee8-1138-434c-91e4-5e28d537fa0e", "descendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ad21d67a-5af9-4999-8e50-7224a50d38a7', 'INSERT', '{"uuid": "ad21d67a-5af9-4999-8e50-7224a50d38a7", "assumed": true, "ascendantuuid": "b723c3a1-8bb2-4f3b-901c-1219c04861cc", "descendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'fbdeeb41-9a4f-4760-aa75-e40aeef64d7c', 'INSERT', '{"uuid": "fbdeeb41-9a4f-4760-aa75-e40aeef64d7c", "assumed": true, "ascendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "descendantuuid": "bfa8792a-886d-4a0e-a6f9-abef9ff2174f", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0069d2aa-623f-493b-8afc-0d107ee34da2', 'INSERT', '{"uuid": "0069d2aa-623f-493b-8afc-0d107ee34da2", "assumed": true, "ascendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ddff4c59-9227-4155-82f5-a843ab3a8558', 'INSERT', '{"uuid": "ddff4c59-9227-4155-82f5-a843ab3a8558", "assumed": true, "ascendantuuid": "55336c43-e7ea-4194-98a4-fbba54330f8b", "descendantuuid": "9f4f63b2-6439-4c9c-ae86-305aca317339", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '58822e21-7aeb-4da2-bfaa-818802e42df1', 'INSERT', '{"uuid": "58822e21-7aeb-4da2-bfaa-818802e42df1", "assumed": true, "ascendantuuid": "2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2", "descendantuuid": "b723c3a1-8bb2-4f3b-901c-1219c04861cc", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3a52713e-bbdc-4917-b4bd-6cd9b0ab37b0', 'INSERT', '{"uuid": "3a52713e-bbdc-4917-b4bd-6cd9b0ab37b0", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "de39bb09-aecb-479a-9b94-0f8f850a421f", "grantedbyroleuuid": null, "grantedbytriggerof": "7ff40241-2808-4bd5-a1be-22636c8fd26e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "7ff40241-2808-4bd5-a1be-22636c8fd26e", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "08e856b7-4c1e-4f9f-96ad-6127de069fa2", "contactuuid": "31eb8927-f7e7-45db-a350-bece46fd2300"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'INSERT', '{"uuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28", "serialid": 103, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '2b015fed-111f-4bb3-9314-054c4f5e02a9', 'INSERT', '{"uuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "roletype": "OWNER", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '7cb8fd1c-e611-46ce-b0bd-23571ae13c40', 'INSERT', '{"op": "DELETE", "uuid": "7cb8fd1c-e611-46ce-b0bd-23571ae13c40", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '4db394a7-cacc-4cb6-ab6c-d8d1b2de9a69', 'INSERT', '{"uuid": "4db394a7-cacc-4cb6-ab6c-d8d1b2de9a69", "assumed": true, "ascendantuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "descendantuuid": "7cb8fd1c-e611-46ce-b0bd-23571ae13c40", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6a0a6fc0-f191-4e08-b830-b1d9d5f0d923', 'INSERT', '{"uuid": "6a0a6fc0-f191-4e08-b830-b1d9d5f0d923", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0a0f3664-a188-4b98-96f5-17bd389117cb', 'INSERT', '{"uuid": "0a0f3664-a188-4b98-96f5-17bd389117cb", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "grantedbyroleuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'd6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', 'INSERT', '{"uuid": "d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd", "roletype": "ADMIN", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '1377ca11-0aea-45f1-be3e-6d685646a855', 'INSERT', '{"op": "UPDATE", "uuid": "1377ca11-0aea-45f1-be3e-6d685646a855", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '8645af9b-abb0-4883-bbf4-ce6bddaa8cc1', 'INSERT', '{"uuid": "8645af9b-abb0-4883-bbf4-ce6bddaa8cc1", "assumed": true, "ascendantuuid": "d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd", "descendantuuid": "1377ca11-0aea-45f1-be3e-6d685646a855", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '07fd32bb-9bc0-4f51-b0b8-fede9030ae83', 'INSERT', '{"uuid": "07fd32bb-9bc0-4f51-b0b8-fede9030ae83", "assumed": true, "ascendantuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "descendantuuid": "d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'a01b1061-d4fb-4ad7-b6c9-a1556cb05999', 'INSERT', '{"uuid": "a01b1061-d4fb-4ad7-b6c9-a1556cb05999", "roletype": "AGENT", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '6a2d1c0b-fc87-421e-abcf-665601640ead', 'INSERT', '{"uuid": "6a2d1c0b-fc87-421e-abcf-665601640ead", "assumed": true, "ascendantuuid": "d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd", "descendantuuid": "a01b1061-d4fb-4ad7-b6c9-a1556cb05999", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', 'INSERT', '{"uuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "roletype": "TENANT", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'ab528e70-88ff-42a1-bb05-53c38b36e963', 'INSERT', '{"op": "SELECT", "uuid": "ab528e70-88ff-42a1-bb05-53c38b36e963", "objectuuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd9af563c-e53d-4d79-bd04-cd92999bf5ec', 'INSERT', '{"uuid": "d9af563c-e53d-4d79-bd04-cd92999bf5ec", "assumed": true, "ascendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "descendantuuid": "ab528e70-88ff-42a1-bb05-53c38b36e963", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '58a686cb-d744-44de-a201-f390ca1b199c', 'INSERT', '{"uuid": "58a686cb-d744-44de-a201-f390ca1b199c", "assumed": true, "ascendantuuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "descendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '3216b1d1-fa9a-4c74-961d-1f8b52606530', 'INSERT', '{"uuid": "3216b1d1-fa9a-4c74-961d-1f8b52606530", "assumed": true, "ascendantuuid": "a01b1061-d4fb-4ad7-b6c9-a1556cb05999", "descendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'c0573b27-94e4-463e-954b-077ca970e4b4', 'INSERT', '{"uuid": "c0573b27-94e4-463e-954b-077ca970e4b4", "assumed": true, "ascendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "descendantuuid": "198cac03-a83b-4a24-8559-29ef72cd24b0", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'cb45da8e-6406-44f3-a86b-7b6b00249fc8', 'INSERT', '{"uuid": "cb45da8e-6406-44f3-a86b-7b6b00249fc8", "assumed": true, "ascendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '14f519fa-a078-42ab-957c-0654631ec5c0', 'INSERT', '{"uuid": "14f519fa-a078-42ab-957c-0654631ec5c0", "assumed": true, "ascendantuuid": "b31b9e66-752e-45d4-87bc-e06d95de7ba6", "descendantuuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2d4dac7a-59d6-4efc-81ea-c3735141ed7e', 'INSERT', '{"uuid": "2d4dac7a-59d6-4efc-81ea-c3735141ed7e", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "a01b1061-d4fb-4ad7-b6c9-a1556cb05999", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0539b058-39f6-4787-972c-013c48b341ff', 'INSERT', '{"uuid": "0539b058-39f6-4787-972c-013c48b341ff", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "2b015fed-111f-4bb3-9314-054c4f5e02a9", "grantedbyroleuuid": null, "grantedbytriggerof": "7afc8c46-3635-4456-bdfe-6ce0702fff28"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "7afc8c46-3635-4456-bdfe-6ce0702fff28", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "contactuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '63e06470-764c-41b3-92d8-e114d4e52664', 'INSERT', '{"uuid": "63e06470-764c-41b3-92d8-e114d4e52664", "serialid": 104, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '31f73d88-50b2-4c43-8710-7ca34461e925', 'INSERT', '{"op": "DELETE", "uuid": "31f73d88-50b2-4c43-8710-7ca34461e925", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '76bfc65e-ff01-4a8a-9ca4-2694a3d9c18b', 'INSERT', '{"uuid": "76bfc65e-ff01-4a8a-9ca4-2694a3d9c18b", "assumed": true, "ascendantuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "descendantuuid": "31f73d88-50b2-4c43-8710-7ca34461e925", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b2d7129e-8987-43fe-bdfe-2f2e28f10d21', 'INSERT', '{"uuid": "b2d7129e-8987-43fe-bdfe-2f2e28f10d21", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ed99bb19-c5e0-49b5-bdc6-7e6e7fb6e747', 'INSERT', '{"uuid": "ed99bb19-c5e0-49b5-bdc6-7e6e7fb6e747", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "grantedbyroleuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '3ad1f655-d278-41ed-bd16-6bb4662834dc', 'INSERT', '{"uuid": "3ad1f655-d278-41ed-bd16-6bb4662834dc", "roletype": "ADMIN", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '877f58bc-eca2-40ea-a04b-5413dd5a26dd', 'INSERT', '{"op": "UPDATE", "uuid": "877f58bc-eca2-40ea-a04b-5413dd5a26dd", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '839a4292-c14c-4544-8387-c7b09da33ad4', 'INSERT', '{"uuid": "839a4292-c14c-4544-8387-c7b09da33ad4", "assumed": true, "ascendantuuid": "3ad1f655-d278-41ed-bd16-6bb4662834dc", "descendantuuid": "877f58bc-eca2-40ea-a04b-5413dd5a26dd", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'e766a15d-ff06-4b38-8837-9bf16454cd8b', 'INSERT', '{"uuid": "e766a15d-ff06-4b38-8837-9bf16454cd8b", "assumed": true, "ascendantuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "descendantuuid": "3ad1f655-d278-41ed-bd16-6bb4662834dc", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '8c23f0a2-3c88-4526-b122-4088e4143682', 'INSERT', '{"uuid": "8c23f0a2-3c88-4526-b122-4088e4143682", "roletype": "AGENT", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'db51e935-6a42-4533-b803-4798229e75b0', 'INSERT', '{"uuid": "db51e935-6a42-4533-b803-4798229e75b0", "assumed": true, "ascendantuuid": "3ad1f655-d278-41ed-bd16-6bb4662834dc", "descendantuuid": "8c23f0a2-3c88-4526-b122-4088e4143682", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '21f69032-ae5d-40de-9834-61bef9345741', 'INSERT', '{"uuid": "21f69032-ae5d-40de-9834-61bef9345741", "roletype": "TENANT", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '08ae960a-5246-46fa-837e-077549f771a1', 'INSERT', '{"op": "SELECT", "uuid": "08ae960a-5246-46fa-837e-077549f771a1", "objectuuid": "63e06470-764c-41b3-92d8-e114d4e52664", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd6ec0ddd-98de-4439-9399-8133a431a2fb', 'INSERT', '{"uuid": "d6ec0ddd-98de-4439-9399-8133a431a2fb", "assumed": true, "ascendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "descendantuuid": "08ae960a-5246-46fa-837e-077549f771a1", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'd595efe8-a37e-4caa-b581-4fbbc985c556', 'INSERT', '{"uuid": "d595efe8-a37e-4caa-b581-4fbbc985c556", "assumed": true, "ascendantuuid": "5c33226f-3c03-4147-93b7-d41d378cf0f5", "descendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '40e354f5-5bcd-4b9c-826b-cf22b909a6c9', 'INSERT', '{"uuid": "40e354f5-5bcd-4b9c-826b-cf22b909a6c9", "assumed": true, "ascendantuuid": "8c23f0a2-3c88-4526-b122-4088e4143682", "descendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2f78eea0-a5e9-4bc5-a5c1-7565fa6c2e68', 'INSERT', '{"uuid": "2f78eea0-a5e9-4bc5-a5c1-7565fa6c2e68", "assumed": true, "ascendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "descendantuuid": "198cac03-a83b-4a24-8559-29ef72cd24b0", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dd7047bd-f3dc-4fa0-9efd-102375fcf18a', 'INSERT', '{"uuid": "dd7047bd-f3dc-4fa0-9efd-102375fcf18a", "assumed": true, "ascendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'b075a79a-4118-46bb-bade-73c37231e07b', 'INSERT', '{"uuid": "b075a79a-4118-46bb-bade-73c37231e07b", "assumed": true, "ascendantuuid": "21f69032-ae5d-40de-9834-61bef9345741", "descendantuuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7ae56d9e-74b8-4683-b590-313bc8ed8c10', 'INSERT', '{"uuid": "7ae56d9e-74b8-4683-b590-313bc8ed8c10", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "8c23f0a2-3c88-4526-b122-4088e4143682", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5d3b30b4-9546-45cc-aae3-5ef343449c69', 'INSERT', '{"uuid": "5d3b30b4-9546-45cc-aae3-5ef343449c69", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "feb5fe79-001e-414c-8dc7-09657384b63c", "grantedbyroleuuid": null, "grantedbytriggerof": "63e06470-764c-41b3-92d8-e114d4e52664"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '63e06470-764c-41b3-92d8-e114d4e52664', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "63e06470-764c-41b3-92d8-e114d4e52664", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "contactuuid": "d5b31ba0-0fa5-4e89-871b-df13e4d3834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.object', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'INSERT', '{"uuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3", "serialid": 105, "objecttable": "hs_office.relation"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', 'INSERT', '{"uuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "roletype": "OWNER", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', 'f429b107-0720-44fa-a2ac-9ad390a0eafe', 'INSERT', '{"op": "DELETE", "uuid": "f429b107-0720-44fa-a2ac-9ad390a0eafe", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'ef359fc3-6f87-4c87-9657-99342a3eaaae', 'INSERT', '{"uuid": "ef359fc3-6f87-4c87-9657-99342a3eaaae", "assumed": true, "ascendantuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "descendantuuid": "f429b107-0720-44fa-a2ac-9ad390a0eafe", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '7a34571d-f032-4a9b-b4d6-1b96cd8605b7', 'INSERT', '{"uuid": "7a34571d-f032-4a9b-b4d6-1b96cd8605b7", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '5df52ab1-034d-49f2-a3ab-cb66f24f20ef', 'INSERT', '{"uuid": "5df52ab1-034d-49f2-a3ab-cb66f24f20ef", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "grantedbyroleuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'de2f2450-cfd5-49f1-88b8-4dd5d67af141', 'INSERT', '{"uuid": "de2f2450-cfd5-49f1-88b8-4dd5d67af141", "roletype": "ADMIN", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '84867f72-28cb-40c1-9163-e39f2c16cfb0', 'INSERT', '{"op": "UPDATE", "uuid": "84867f72-28cb-40c1-9163-e39f2c16cfb0", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '0ef59490-704a-45cb-acc2-44dc479ee660', 'INSERT', '{"uuid": "0ef59490-704a-45cb-acc2-44dc479ee660", "assumed": true, "ascendantuuid": "de2f2450-cfd5-49f1-88b8-4dd5d67af141", "descendantuuid": "84867f72-28cb-40c1-9163-e39f2c16cfb0", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '9c057887-7425-46cf-af81-843f82e4d0cd', 'INSERT', '{"uuid": "9c057887-7425-46cf-af81-843f82e4d0cd", "assumed": true, "ascendantuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "descendantuuid": "de2f2450-cfd5-49f1-88b8-4dd5d67af141", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', '0ce06202-a733-454d-885e-d47597f3fdc1', 'INSERT', '{"uuid": "0ce06202-a733-454d-885e-d47597f3fdc1", "roletype": "AGENT", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '58b67eda-3b83-45ff-bb1b-50584c1d2f1f', 'INSERT', '{"uuid": "58b67eda-3b83-45ff-bb1b-50584c1d2f1f", "assumed": true, "ascendantuuid": "de2f2450-cfd5-49f1-88b8-4dd5d67af141", "descendantuuid": "0ce06202-a733-454d-885e-d47597f3fdc1", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.role', 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', 'INSERT', '{"uuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "roletype": "TENANT", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.permission', '61871afe-66cf-4e17-b0d5-1da5bac6469f', 'INSERT', '{"op": "SELECT", "uuid": "61871afe-66cf-4e17-b0d5-1da5bac6469f", "objectuuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2ace760a-8081-4ecc-884b-9dcc84dde4f4', 'INSERT', '{"uuid": "2ace760a-8081-4ecc-884b-9dcc84dde4f4", "assumed": true, "ascendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "descendantuuid": "61871afe-66cf-4e17-b0d5-1da5bac6469f", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'f4f2c422-4309-469e-a17e-4b8a6be37fec', 'INSERT', '{"uuid": "f4f2c422-4309-469e-a17e-4b8a6be37fec", "assumed": true, "ascendantuuid": "cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74", "descendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '107621a6-9428-4186-8f4b-d24188f3675e', 'INSERT', '{"uuid": "107621a6-9428-4186-8f4b-d24188f3675e", "assumed": true, "ascendantuuid": "0ce06202-a733-454d-885e-d47597f3fdc1", "descendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'dfd122c6-a0b6-4ff1-bd71-492ef799289c', 'INSERT', '{"uuid": "dfd122c6-a0b6-4ff1-bd71-492ef799289c", "assumed": true, "ascendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "descendantuuid": "9eb2735b-2b09-4f71-81a3-3ce8fbedae9d", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '2a722dd0-fdfb-4f8d-a4d1-6ff6214750ff', 'INSERT', '{"uuid": "2a722dd0-fdfb-4f8d-a4d1-6ff6214750ff", "assumed": true, "ascendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "descendantuuid": "febfbe7e-4bf7-4385-834f-017201aa8756", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '20cd6a17-ba02-418d-82d6-62e953fd0354', 'INSERT', '{"uuid": "20cd6a17-ba02-418d-82d6-62e953fd0354", "assumed": true, "ascendantuuid": "edbfdc0d-5541-487a-a68f-a6aeaa572d7b", "descendantuuid": "0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', '81d0b0d1-c04e-435b-83ac-1727ed881204', 'INSERT', '{"uuid": "81d0b0d1-c04e-435b-83ac-1727ed881204", "assumed": true, "ascendantuuid": "d6bcb4b0-343e-49a9-9067-47ffc922e88b", "descendantuuid": "0ce06202-a733-454d-885e-d47597f3fdc1", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'rbac.grant', 'a2d2734b-10be-43bd-ae46-b2b997c1911b', 'INSERT', '{"uuid": "a2d2734b-10be-43bd-ae46-b2b997c1911b", "assumed": true, "ascendantuuid": "611c71bc-4ce5-4a20-b819-95d274f73227", "descendantuuid": "f2b7ed96-48bc-476a-a323-d69e3fa622b2", "grantedbyroleuuid": null, "grantedbytriggerof": "8bd78e9a-428e-4400-bc0e-543808a6ebe3"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1317', 'hs_office.relation', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "8bd78e9a-428e-4400-bc0e-543808a6ebe3", "version": 0, "anchoruuid": "89f83a40-5d7b-4f33-ba0b-29207f263f15", "holderuuid": "06741b2f-76ca-44bd-b1ae-9bcb0f29f167", "contactuuid": "825cdd9a-8562-47ad-ad23-58ed52dbbab5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b', 'INSERT', '{"uuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "serialid": 106, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b', 'INSERT', '{"uuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', 'INSERT', '{"uuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "serialid": 107, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'daafb052-50ef-444a-a2d3-b787c5bc8cb3', 'INSERT', '{"op": "DELETE", "uuid": "daafb052-50ef-444a-a2d3-b787c5bc8cb3", "objectuuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'e7c4d8ed-b7e0-4871-8175-79961c32434b', 'INSERT', '{"uuid": "e7c4d8ed-b7e0-4871-8175-79961c32434b", "assumed": true, "ascendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "descendantuuid": "daafb052-50ef-444a-a2d3-b787c5bc8cb3", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'dd133517-5ec6-4f63-9114-c1416d3c6804', 'INSERT', '{"op": "SELECT", "uuid": "dd133517-5ec6-4f63-9114-c1416d3c6804", "objectuuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '39bbd7a6-6783-4d46-a176-a0aee27fcb94', 'INSERT', '{"uuid": "39bbd7a6-6783-4d46-a176-a0aee27fcb94", "assumed": true, "ascendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "descendantuuid": "dd133517-5ec6-4f63-9114-c1416d3c6804", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '3a597e00-9544-4248-82df-3831353f33b1', 'INSERT', '{"op": "UPDATE", "uuid": "3a597e00-9544-4248-82df-3831353f33b1", "objectuuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '08f74b13-6a3d-4ee7-9d82-d02c25d884f7', 'INSERT', '{"uuid": "08f74b13-6a3d-4ee7-9d82-d02c25d884f7", "assumed": true, "ascendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "descendantuuid": "3a597e00-9544-4248-82df-3831353f33b1", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '8baa861a-5c1c-4db2-8325-357619b0f22d', 'INSERT', '{"op": "DELETE", "uuid": "8baa861a-5c1c-4db2-8325-357619b0f22d", "objectuuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7', 'INSERT', '{"op": "UPDATE", "uuid": "0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7", "objectuuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '86d25fef-e5d5-4c6e-85c3-1576fd234841', 'INSERT', '{"uuid": "86d25fef-e5d5-4c6e-85c3-1576fd234841", "assumed": true, "ascendantuuid": "2e4968dd-1b34-4509-ae49-26525a1b61e1", "descendantuuid": "8baa861a-5c1c-4db2-8325-357619b0f22d", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '5d51ee94-5a44-409b-8bb2-1bca411bfc41', 'INSERT', '{"op": "SELECT", "uuid": "5d51ee94-5a44-409b-8bb2-1bca411bfc41", "objectuuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '91a48a3e-c409-43b3-9b8b-684fef5083d7', 'INSERT', '{"uuid": "91a48a3e-c409-43b3-9b8b-684fef5083d7", "assumed": true, "ascendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "descendantuuid": "5d51ee94-5a44-409b-8bb2-1bca411bfc41", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'd52d9865-3025-4a16-9aed-c5ddd66dc071', 'INSERT', '{"op": "UPDATE", "uuid": "d52d9865-3025-4a16-9aed-c5ddd66dc071", "objectuuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '79ebece6-b083-4b72-bac6-2150329a33ea', 'INSERT', '{"uuid": "79ebece6-b083-4b72-bac6-2150329a33ea", "assumed": true, "ascendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "descendantuuid": "d52d9865-3025-4a16-9aed-c5ddd66dc071", "grantedbyroleuuid": null, "grantedbytriggerof": "c73dc87f-990b-4c2a-8809-7be08b6d1535"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', 'INSERT', '{"uuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "version": 0, "detailsuuid": "a6773052-fbc1-4f5b-81df-17d59e7bc76b", "partnernumber": 10003, "partnerreluuid": "f72c1add-5a68-445e-b3b3-4d4ae33144d9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '0bb9a82f-172b-40de-ae96-37fbb086d4d7', 'INSERT', '{"uuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "serialid": 108, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', '0bb9a82f-172b-40de-ae96-37fbb086d4d7', 'INSERT', '{"uuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', 'INSERT', '{"uuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "serialid": 109, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '8e7530d0-e5a8-488c-93a3-a25b2449fba6', 'INSERT', '{"op": "DELETE", "uuid": "8e7530d0-e5a8-488c-93a3-a25b2449fba6", "objectuuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'fc8b9c06-d933-4560-8e8f-1497e4fc9528', 'INSERT', '{"uuid": "fc8b9c06-d933-4560-8e8f-1497e4fc9528", "assumed": true, "ascendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "descendantuuid": "8e7530d0-e5a8-488c-93a3-a25b2449fba6", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '22173367-a803-4065-9451-afec80e0586e', 'INSERT', '{"op": "SELECT", "uuid": "22173367-a803-4065-9451-afec80e0586e", "objectuuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'f056cd13-cadc-4b22-828a-1a4181c122ba', 'INSERT', '{"uuid": "f056cd13-cadc-4b22-828a-1a4181c122ba", "assumed": true, "ascendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "descendantuuid": "22173367-a803-4065-9451-afec80e0586e", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '7e591a28-0bbc-4464-8aab-c449f4db6f33', 'INSERT', '{"op": "UPDATE", "uuid": "7e591a28-0bbc-4464-8aab-c449f4db6f33", "objectuuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'b52a8530-193a-4487-86ee-b14f165a7825', 'INSERT', '{"uuid": "b52a8530-193a-4487-86ee-b14f165a7825", "assumed": true, "ascendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "descendantuuid": "7e591a28-0bbc-4464-8aab-c449f4db6f33", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '24837809-14de-4cfd-8e4a-5cbe8a476a78', 'INSERT', '{"op": "DELETE", "uuid": "24837809-14de-4cfd-8e4a-5cbe8a476a78", "objectuuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '3d89f492-e2e2-4123-b639-27f3de454910', 'INSERT', '{"uuid": "3d89f492-e2e2-4123-b639-27f3de454910", "assumed": true, "ascendantuuid": "692d194a-ce6c-4932-9a16-08fc5b853bbe", "descendantuuid": "24837809-14de-4cfd-8e4a-5cbe8a476a78", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'b8f86670-28e8-4fd8-b293-f7ee4344efa1', 'INSERT', '{"op": "SELECT", "uuid": "b8f86670-28e8-4fd8-b293-f7ee4344efa1", "objectuuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'fdbb710d-fcd4-4e26-85c7-76ecd7c8a7fc', 'INSERT', '{"uuid": "fdbb710d-fcd4-4e26-85c7-76ecd7c8a7fc", "assumed": true, "ascendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "descendantuuid": "b8f86670-28e8-4fd8-b293-f7ee4344efa1", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'f54ccf20-7258-4739-bb5f-867203a3c290', 'INSERT', '{"op": "UPDATE", "uuid": "f54ccf20-7258-4739-bb5f-867203a3c290", "objectuuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '98298c9a-4f54-4f0d-89e0-42a7bf2f1e86', 'INSERT', '{"uuid": "98298c9a-4f54-4f0d-89e0-42a7bf2f1e86", "assumed": true, "ascendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "descendantuuid": "f54ccf20-7258-4739-bb5f-867203a3c290", "grantedbyroleuuid": null, "grantedbytriggerof": "45fd8262-37b2-4d6d-b2f9-26d1561d307f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', 'INSERT', '{"uuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "version": 0, "detailsuuid": "0bb9a82f-172b-40de-ae96-37fbb086d4d7", "partnernumber": 10020, "partnerreluuid": "510f22fa-273b-4c27-a99c-0ced2c8ac722"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '66a88623-096d-475e-b36c-1748db1503dc', 'INSERT', '{"uuid": "66a88623-096d-475e-b36c-1748db1503dc", "serialid": 110, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', '66a88623-096d-475e-b36c-1748db1503dc', 'INSERT', '{"uuid": "66a88623-096d-475e-b36c-1748db1503dc", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 'INSERT', '{"uuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "serialid": 111, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '96cafe15-2ee6-4226-ba2d-92620a417296', 'INSERT', '{"op": "DELETE", "uuid": "96cafe15-2ee6-4226-ba2d-92620a417296", "objectuuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '41d63e20-90d0-46ae-98dc-a161cf9e448a', 'INSERT', '{"uuid": "41d63e20-90d0-46ae-98dc-a161cf9e448a", "assumed": true, "ascendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "descendantuuid": "96cafe15-2ee6-4226-ba2d-92620a417296", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '81973abf-eaa8-4d0a-84ea-e98c0de09bc6', 'INSERT', '{"op": "SELECT", "uuid": "81973abf-eaa8-4d0a-84ea-e98c0de09bc6", "objectuuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '65552838-3d75-45aa-bfc0-95df3ac72fef', 'INSERT', '{"uuid": "65552838-3d75-45aa-bfc0-95df3ac72fef", "assumed": true, "ascendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "descendantuuid": "81973abf-eaa8-4d0a-84ea-e98c0de09bc6", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'b5c610c2-8c21-4f80-96ab-9b800cfc15fb', 'INSERT', '{"uuid": "b5c610c2-8c21-4f80-96ab-9b800cfc15fb", "assumed": true, "ascendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "descendantuuid": "0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '42c4629d-fb68-46f4-b8f2-d40a608fccaa', 'INSERT', '{"op": "DELETE", "uuid": "42c4629d-fb68-46f4-b8f2-d40a608fccaa", "objectuuid": "66a88623-096d-475e-b36c-1748db1503dc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'c79f7792-f080-4402-bfac-ab9faf1e003d', 'INSERT', '{"uuid": "c79f7792-f080-4402-bfac-ab9faf1e003d", "assumed": true, "ascendantuuid": "ad81e516-9454-42a1-ac0e-7e4ca2ded76d", "descendantuuid": "42c4629d-fb68-46f4-b8f2-d40a608fccaa", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '4c928181-db1c-47ea-8185-86edf15aaf83', 'INSERT', '{"op": "SELECT", "uuid": "4c928181-db1c-47ea-8185-86edf15aaf83", "objectuuid": "66a88623-096d-475e-b36c-1748db1503dc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'dcfee9c4-e406-4454-9823-ffdd85b129dc', 'INSERT', '{"uuid": "dcfee9c4-e406-4454-9823-ffdd85b129dc", "assumed": true, "ascendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "descendantuuid": "4c928181-db1c-47ea-8185-86edf15aaf83", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '3328c233-4b48-4dc9-9941-830c3857e47f', 'INSERT', '{"op": "UPDATE", "uuid": "3328c233-4b48-4dc9-9941-830c3857e47f", "objectuuid": "66a88623-096d-475e-b36c-1748db1503dc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '39593d1b-7993-4857-8272-9555cec03fa3', 'INSERT', '{"uuid": "39593d1b-7993-4857-8272-9555cec03fa3", "assumed": true, "ascendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "descendantuuid": "3328c233-4b48-4dc9-9941-830c3857e47f", "grantedbyroleuuid": null, "grantedbytriggerof": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 'INSERT', '{"uuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "version": 0, "detailsuuid": "66a88623-096d-475e-b36c-1748db1503dc", "partnernumber": 11022, "partnerreluuid": "cb0c0d31-b1a8-4f44-afc0-e096c83fee56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'c3657447-959c-488f-adcc-9402a118a8e9', 'INSERT', '{"uuid": "c3657447-959c-488f-adcc-9402a118a8e9", "serialid": 112, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', 'c3657447-959c-488f-adcc-9402a118a8e9', 'INSERT', '{"uuid": "c3657447-959c-488f-adcc-9402a118a8e9", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '94c3062b-ec85-469d-824d-885a125e5a52', 'INSERT', '{"uuid": "94c3062b-ec85-469d-824d-885a125e5a52", "serialid": 113, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '45b14f1b-e870-40f6-a99a-e6bf3810b48b', 'INSERT', '{"op": "DELETE", "uuid": "45b14f1b-e870-40f6-a99a-e6bf3810b48b", "objectuuid": "94c3062b-ec85-469d-824d-885a125e5a52", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '6d7003f1-51a1-4029-b7b4-99b7905471f4', 'INSERT', '{"uuid": "6d7003f1-51a1-4029-b7b4-99b7905471f4", "assumed": true, "ascendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "descendantuuid": "45b14f1b-e870-40f6-a99a-e6bf3810b48b", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602', 'INSERT', '{"op": "SELECT", "uuid": "6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602", "objectuuid": "94c3062b-ec85-469d-824d-885a125e5a52", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '7022cb34-8060-4297-acea-672e009fd2f7', 'INSERT', '{"uuid": "7022cb34-8060-4297-acea-672e009fd2f7", "assumed": true, "ascendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "descendantuuid": "6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '45f3c90c-0cc8-41c6-aa6c-f656c2a520ec', 'INSERT', '{"op": "UPDATE", "uuid": "45f3c90c-0cc8-41c6-aa6c-f656c2a520ec", "objectuuid": "94c3062b-ec85-469d-824d-885a125e5a52", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '3694733a-8b90-4a05-9a81-ca5252f1f5cc', 'INSERT', '{"uuid": "3694733a-8b90-4a05-9a81-ca5252f1f5cc", "assumed": true, "ascendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "descendantuuid": "45f3c90c-0cc8-41c6-aa6c-f656c2a520ec", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '57823f66-c790-4a3f-8395-e94a25f2b321', 'INSERT', '{"op": "DELETE", "uuid": "57823f66-c790-4a3f-8395-e94a25f2b321", "objectuuid": "c3657447-959c-488f-adcc-9402a118a8e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'f134019e-1504-402d-9360-36a024382d53', 'INSERT', '{"uuid": "f134019e-1504-402d-9360-36a024382d53", "assumed": true, "ascendantuuid": "07e54dc9-9b64-464c-9894-08d88a01cfb6", "descendantuuid": "57823f66-c790-4a3f-8395-e94a25f2b321", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '91475e7d-6a40-4b51-8376-e28b06293a84', 'INSERT', '{"op": "SELECT", "uuid": "91475e7d-6a40-4b51-8376-e28b06293a84", "objectuuid": "c3657447-959c-488f-adcc-9402a118a8e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'bf3e61cc-6ee4-4ed3-a578-be3577c3e03c', 'INSERT', '{"uuid": "bf3e61cc-6ee4-4ed3-a578-be3577c3e03c", "assumed": true, "ascendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "descendantuuid": "91475e7d-6a40-4b51-8376-e28b06293a84", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '34f0d180-cab1-4f97-9d1d-60a6f39c8c1f', 'INSERT', '{"op": "UPDATE", "uuid": "34f0d180-cab1-4f97-9d1d-60a6f39c8c1f", "objectuuid": "c3657447-959c-488f-adcc-9402a118a8e9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '45ef1721-84e1-4581-9341-4caa48e06c24', 'INSERT', '{"uuid": "45ef1721-84e1-4581-9341-4caa48e06c24", "assumed": true, "ascendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "descendantuuid": "34f0d180-cab1-4f97-9d1d-60a6f39c8c1f", "grantedbyroleuuid": null, "grantedbytriggerof": "94c3062b-ec85-469d-824d-885a125e5a52"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', '94c3062b-ec85-469d-824d-885a125e5a52', 'INSERT', '{"uuid": "94c3062b-ec85-469d-824d-885a125e5a52", "version": 0, "detailsuuid": "c3657447-959c-488f-adcc-9402a118a8e9", "partnernumber": 10152, "partnerreluuid": "ef085ca0-2cc6-4497-b739-1668e6acb687"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e', 'INSERT', '{"uuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "serialid": 114, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e', 'INSERT', '{"uuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', 'INSERT', '{"uuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "serialid": 115, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1', 'INSERT', '{"op": "DELETE", "uuid": "5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1", "objectuuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '460a3b2b-42c9-4991-9cc8-c857519e3b91', 'INSERT', '{"uuid": "460a3b2b-42c9-4991-9cc8-c857519e3b91", "assumed": true, "ascendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "descendantuuid": "5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '87a213bf-33aa-40e4-b5eb-89465f96e91d', 'INSERT', '{"op": "SELECT", "uuid": "87a213bf-33aa-40e4-b5eb-89465f96e91d", "objectuuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'df2d85e8-3659-450a-be13-af47f2193e10', 'INSERT', '{"uuid": "df2d85e8-3659-450a-be13-af47f2193e10", "assumed": true, "ascendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "descendantuuid": "87a213bf-33aa-40e4-b5eb-89465f96e91d", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'fb476be5-a55c-4453-a606-24da6a1ab2d7', 'INSERT', '{"op": "UPDATE", "uuid": "fb476be5-a55c-4453-a606-24da6a1ab2d7", "objectuuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '3b35ff87-0167-4c35-9219-021df737c9bc', 'INSERT', '{"uuid": "3b35ff87-0167-4c35-9219-021df737c9bc", "assumed": true, "ascendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "descendantuuid": "fb476be5-a55c-4453-a606-24da6a1ab2d7", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '241b9514-6fed-46fc-a352-02f501bb9815', 'INSERT', '{"op": "DELETE", "uuid": "241b9514-6fed-46fc-a352-02f501bb9815", "objectuuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'a2959b3c-7338-4936-9161-5882607b84cd', 'INSERT', '{"uuid": "a2959b3c-7338-4936-9161-5882607b84cd", "assumed": true, "ascendantuuid": "c753ef5d-0c69-4807-b43a-4d3e1d500389", "descendantuuid": "241b9514-6fed-46fc-a352-02f501bb9815", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'ddeac61f-76b9-4ad4-bf61-b1a83894cb2b', 'INSERT', '{"op": "SELECT", "uuid": "ddeac61f-76b9-4ad4-bf61-b1a83894cb2b", "objectuuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '9234bc93-67de-4f2e-b1de-a2ec3c6f906b', 'INSERT', '{"uuid": "9234bc93-67de-4f2e-b1de-a2ec3c6f906b", "assumed": true, "ascendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "descendantuuid": "ddeac61f-76b9-4ad4-bf61-b1a83894cb2b", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '759ca26e-b553-497a-9f38-86622b340848', 'INSERT', '{"op": "UPDATE", "uuid": "759ca26e-b553-497a-9f38-86622b340848", "objectuuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'e589bb1e-a48e-4f93-9203-19dc7cded0ae', 'INSERT', '{"uuid": "e589bb1e-a48e-4f93-9203-19dc7cded0ae", "assumed": true, "ascendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "descendantuuid": "759ca26e-b553-497a-9f38-86622b340848", "grantedbyroleuuid": null, "grantedbytriggerof": "f32722ac-acac-46cd-b3d9-171c1921f2bc"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', 'INSERT', '{"uuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "version": 0, "detailsuuid": "d6bd08e1-4c8e-4727-88ae-9e287723f74e", "partnernumber": 19090, "partnerreluuid": "d8b3342b-fd1f-4db5-83d6-9b13f63a3058"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'ad6d5da4-b239-444b-b869-a66f4023c7cc', 'INSERT', '{"uuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "serialid": 116, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', 'ad6d5da4-b239-444b-b869-a66f4023c7cc', 'INSERT', '{"uuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'a7f3294e-b64f-4e46-860e-99e3617329bb', 'INSERT', '{"uuid": "a7f3294e-b64f-4e46-860e-99e3617329bb", "serialid": 117, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'b695b5f1-487e-45aa-ab59-e47986899059', 'INSERT', '{"op": "DELETE", "uuid": "b695b5f1-487e-45aa-ab59-e47986899059", "objectuuid": "a7f3294e-b64f-4e46-860e-99e3617329bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '5c24459c-de0f-4f20-83e4-d390402dc92b', 'INSERT', '{"uuid": "5c24459c-de0f-4f20-83e4-d390402dc92b", "assumed": true, "ascendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "descendantuuid": "b695b5f1-487e-45aa-ab59-e47986899059", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b', 'INSERT', '{"op": "SELECT", "uuid": "005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b", "objectuuid": "a7f3294e-b64f-4e46-860e-99e3617329bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'c1821358-d48c-423a-aa7e-560b3b6230ab', 'INSERT', '{"uuid": "c1821358-d48c-423a-aa7e-560b3b6230ab", "assumed": true, "ascendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "descendantuuid": "005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '6d837b50-0475-41dc-9a4b-4a832f476bde', 'INSERT', '{"op": "UPDATE", "uuid": "6d837b50-0475-41dc-9a4b-4a832f476bde", "objectuuid": "a7f3294e-b64f-4e46-860e-99e3617329bb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'bb3fde15-d43e-4298-a611-63b8d875c049', 'INSERT', '{"uuid": "bb3fde15-d43e-4298-a611-63b8d875c049", "assumed": true, "ascendantuuid": "59461651-6e8b-4e92-a992-c6361933f78a", "descendantuuid": "6d837b50-0475-41dc-9a4b-4a832f476bde", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'cdda32b7-9bb8-4f6f-9974-d8b6cf64706c', 'INSERT', '{"op": "DELETE", "uuid": "cdda32b7-9bb8-4f6f-9974-d8b6cf64706c", "objectuuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'edcfa884-f25a-49f1-91d6-414aa53479a3', 'INSERT', '{"uuid": "edcfa884-f25a-49f1-91d6-414aa53479a3", "assumed": true, "ascendantuuid": "ed86d8bf-4ee1-4903-bb57-bb178b75e4a9", "descendantuuid": "cdda32b7-9bb8-4f6f-9974-d8b6cf64706c", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'ff41dac7-2ca2-4719-ab67-e3defcacbaed', 'INSERT', '{"op": "SELECT", "uuid": "ff41dac7-2ca2-4719-ab67-e3defcacbaed", "objectuuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '335f8efc-1d3d-47c8-a4a7-7a0be47bba9d', 'INSERT', '{"uuid": "335f8efc-1d3d-47c8-a4a7-7a0be47bba9d", "assumed": true, "ascendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "descendantuuid": "ff41dac7-2ca2-4719-ab67-e3defcacbaed", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '9eba55f5-a528-4a01-8612-8e4d30ea5c24', 'INSERT', '{"op": "UPDATE", "uuid": "9eba55f5-a528-4a01-8612-8e4d30ea5c24", "objectuuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'df2eac69-4eaf-4467-bef0-1f7998aee380', 'INSERT', '{"uuid": "df2eac69-4eaf-4467-bef0-1f7998aee380", "assumed": true, "ascendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "descendantuuid": "9eba55f5-a528-4a01-8612-8e4d30ea5c24", "grantedbyroleuuid": null, "grantedbytriggerof": "a7f3294e-b64f-4e46-860e-99e3617329bb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', 'a7f3294e-b64f-4e46-860e-99e3617329bb', 'INSERT', '{"uuid": "a7f3294e-b64f-4e46-860e-99e3617329bb", "version": 0, "detailsuuid": "ad6d5da4-b239-444b-b869-a66f4023c7cc", "partnernumber": 10000, "partnerreluuid": "9702bd74-e7d9-440a-a210-64905274c259"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', '59a560aa-78c5-42be-8c9b-76329131b0a6', 'INSERT', '{"uuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "serialid": 118, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', '59a560aa-78c5-42be-8c9b-76329131b0a6', 'INSERT', '{"uuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '137d7a50-f122-447e-b8f5-2349c7231487', 'INSERT', '{"op": "DELETE", "uuid": "137d7a50-f122-447e-b8f5-2349c7231487", "objectuuid": "23272f3b-28e7-4777-9f86-5821646343ad", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'db8c2f68-16c6-4e0a-b36e-0a45b8b12dc7', 'INSERT', '{"uuid": "db8c2f68-16c6-4e0a-b36e-0a45b8b12dc7", "assumed": true, "ascendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "descendantuuid": "137d7a50-f122-447e-b8f5-2349c7231487", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'afe41aac-099f-47ea-84a8-d1b8f7f3f81f', 'INSERT', '{"op": "SELECT", "uuid": "afe41aac-099f-47ea-84a8-d1b8f7f3f81f", "objectuuid": "23272f3b-28e7-4777-9f86-5821646343ad", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'fd011822-d8eb-4bef-9ccc-45d2e1c9ff22', 'INSERT', '{"uuid": "fd011822-d8eb-4bef-9ccc-45d2e1c9ff22", "assumed": true, "ascendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "descendantuuid": "afe41aac-099f-47ea-84a8-d1b8f7f3f81f", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'c9787e85-7f76-405c-abc2-68c643139725', 'INSERT', '{"op": "UPDATE", "uuid": "c9787e85-7f76-405c-abc2-68c643139725", "objectuuid": "23272f3b-28e7-4777-9f86-5821646343ad", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'c3eb7a7f-def1-4bee-bab8-61614fb0e47d', 'INSERT', '{"uuid": "c3eb7a7f-def1-4bee-bab8-61614fb0e47d", "assumed": true, "ascendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "descendantuuid": "c9787e85-7f76-405c-abc2-68c643139725", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'fa41b988-86be-4cd5-9293-a316854ad36c', 'INSERT', '{"op": "DELETE", "uuid": "fa41b988-86be-4cd5-9293-a316854ad36c", "objectuuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '7331e64d-bd51-40b4-847b-e8d52af05369', 'INSERT', '{"uuid": "7331e64d-bd51-40b4-847b-e8d52af05369", "assumed": true, "ascendantuuid": "1f222590-d082-4b39-baf4-883dc9a46409", "descendantuuid": "fa41b988-86be-4cd5-9293-a316854ad36c", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '8b4d84e1-64bb-478e-8176-7e7f5e3b54ad', 'INSERT', '{"op": "SELECT", "uuid": "8b4d84e1-64bb-478e-8176-7e7f5e3b54ad", "objectuuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '5d6fa7a5-5648-438f-80aa-b6e45f557364', 'INSERT', '{"uuid": "5d6fa7a5-5648-438f-80aa-b6e45f557364", "assumed": true, "ascendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "descendantuuid": "8b4d84e1-64bb-478e-8176-7e7f5e3b54ad", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'ab0a6844-1289-4c15-acc1-b6eb42f08ce1', 'INSERT', '{"op": "UPDATE", "uuid": "ab0a6844-1289-4c15-acc1-b6eb42f08ce1", "objectuuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '07324cf7-ce37-46d7-8029-365bc8dbbe04', 'INSERT', '{"uuid": "07324cf7-ce37-46d7-8029-365bc8dbbe04", "assumed": true, "ascendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "descendantuuid": "ab0a6844-1289-4c15-acc1-b6eb42f08ce1", "grantedbyroleuuid": null, "grantedbytriggerof": "23272f3b-28e7-4777-9f86-5821646343ad"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', '23272f3b-28e7-4777-9f86-5821646343ad', 'INSERT', '{"uuid": "23272f3b-28e7-4777-9f86-5821646343ad", "version": 0, "detailsuuid": "59a560aa-78c5-42be-8c9b-76329131b0a6", "partnernumber": 11018, "partnerreluuid": "262a75f6-0c99-4101-8301-0cb95f7cb81e"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 'INSERT', '{"uuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "serialid": 120, "objecttable": "hs_office.partner_details"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner_details', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 'INSERT', '{"uuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.object', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 'INSERT', '{"uuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "serialid": 121, "objecttable": "hs_office.partner"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'eb4e4387-2088-4cba-bacd-6ec785097689', 'INSERT', '{"op": "DELETE", "uuid": "eb4e4387-2088-4cba-bacd-6ec785097689", "objectuuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '86e1832b-8292-4cae-b875-7f56f0e7cd1e', 'INSERT', '{"uuid": "86e1832b-8292-4cae-b875-7f56f0e7cd1e", "assumed": true, "ascendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "descendantuuid": "eb4e4387-2088-4cba-bacd-6ec785097689", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '53ffdb8e-9631-403f-b52e-77d75602cc80', 'INSERT', '{"op": "SELECT", "uuid": "53ffdb8e-9631-403f-b52e-77d75602cc80", "objectuuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'dc3a5fbf-9ffb-4290-9dcf-4208ba37bbcd', 'INSERT', '{"uuid": "dc3a5fbf-9ffb-4290-9dcf-4208ba37bbcd", "assumed": true, "ascendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "descendantuuid": "53ffdb8e-9631-403f-b52e-77d75602cc80", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'a828a5d8-767f-459c-a676-b28b793ec271', 'INSERT', '{"op": "UPDATE", "uuid": "a828a5d8-767f-459c-a676-b28b793ec271", "objectuuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '0692108e-2dda-423c-bffb-64f5abac825d', 'INSERT', '{"uuid": "0692108e-2dda-423c-bffb-64f5abac825d", "assumed": true, "ascendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "descendantuuid": "a828a5d8-767f-459c-a676-b28b793ec271", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', 'c3584a65-8fb2-4975-bb7f-9a123c06d2e3', 'INSERT', '{"op": "DELETE", "uuid": "c3584a65-8fb2-4975-bb7f-9a123c06d2e3", "objectuuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '1129688c-203b-48b0-a164-5edf597235b9', 'INSERT', '{"uuid": "1129688c-203b-48b0-a164-5edf597235b9", "assumed": true, "ascendantuuid": "3fee107a-c77b-45f0-bb75-b8c48980dd8a", "descendantuuid": "c3584a65-8fb2-4975-bb7f-9a123c06d2e3", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '360fd487-1bdf-4a27-b608-ec4e126185ab', 'INSERT', '{"op": "SELECT", "uuid": "360fd487-1bdf-4a27-b608-ec4e126185ab", "objectuuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', '5c60c7ad-86ad-40a2-a22b-591481868465', 'INSERT', '{"uuid": "5c60c7ad-86ad-40a2-a22b-591481868465", "assumed": true, "ascendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "descendantuuid": "360fd487-1bdf-4a27-b608-ec4e126185ab", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.permission', '81073331-f31c-4b7d-a8ba-b76c8b449ffb', 'INSERT', '{"op": "UPDATE", "uuid": "81073331-f31c-4b7d-a8ba-b76c8b449ffb", "objectuuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'rbac.grant', 'e344ba9d-bb32-4d97-9613-65b5e7bafd75', 'INSERT', '{"uuid": "e344ba9d-bb32-4d97-9613-65b5e7bafd75", "assumed": true, "ascendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "descendantuuid": "81073331-f31c-4b7d-a8ba-b76c8b449ffb", "grantedbyroleuuid": null, "grantedbytriggerof": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1527', 'hs_office.partner', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 'INSERT', '{"uuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "version": 0, "detailsuuid": "df56bbb8-f12a-4c0a-839f-0fe4af7e5617", "partnernumber": 11019, "partnerreluuid": "f1d2c18d-4cb0-481e-a948-934324a74f61"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'a79dcc01-4e36-44ee-8008-76b6f4ea8a00', 'INSERT', '{"uuid": "a79dcc01-4e36-44ee-8008-76b6f4ea8a00", "assumed": true, "ascendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "descendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '632e2508-6066-421e-9f22-77269465c8b2', 'INSERT', '{"uuid": "632e2508-6066-421e-9f22-77269465c8b2", "assumed": true, "ascendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "descendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'b2dd3143-59ab-4152-bd92-5aef0d7d30df', 'INSERT', '{"uuid": "b2dd3143-59ab-4152-bd92-5aef0d7d30df", "assumed": true, "ascendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "descendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '4dd49272-271e-4a93-933b-65923aaa2109', 'INSERT', '{"op": "DELETE", "uuid": "4dd49272-271e-4a93-933b-65923aaa2109", "objectuuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '6d2567bd-cee9-4812-8708-f9004147029f', 'INSERT', '{"uuid": "6d2567bd-cee9-4812-8708-f9004147029f", "assumed": true, "ascendantuuid": "0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70", "descendantuuid": "4dd49272-271e-4a93-933b-65923aaa2109", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '40f5eb31-e9eb-48b3-8312-84ec84e0b80b', 'INSERT', '{"op": "SELECT", "uuid": "40f5eb31-e9eb-48b3-8312-84ec84e0b80b", "objectuuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'd3329b8e-3397-4528-9e91-64162d9f140d', 'INSERT', '{"uuid": "d3329b8e-3397-4528-9e91-64162d9f140d", "assumed": true, "ascendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "descendantuuid": "40f5eb31-e9eb-48b3-8312-84ec84e0b80b", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '7730b221-0290-40cf-b01c-bc8329e8f723', 'INSERT', '{"op": "UPDATE", "uuid": "7730b221-0290-40cf-b01c-bc8329e8f723", "objectuuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '5629dbd3-7ca4-42a0-91f8-f8df4e36881c', 'INSERT', '{"uuid": "5629dbd3-7ca4-42a0-91f8-f8df4e36881c", "assumed": true, "ascendantuuid": "b488d259-9ffa-47ea-9494-722a4f97a8c9", "descendantuuid": "7730b221-0290-40cf-b01c-bc8329e8f723", "grantedbyroleuuid": null, "grantedbytriggerof": "3162b2b5-9fda-476a-94e8-4e0265758d31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '3162b2b5-9fda-476a-94e8-4e0265758d31', 'INSERT', '{"uuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "vatid": "DE217249198", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "mim", "debitorreluuid": "c51dfa23-75be-4ce7-ad85-acfc8c0a3b05", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '0db2a143-0ab2-473f-84f8-d570ee119e04', 'INSERT', '{"uuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "serialid": 123, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '808925d1-6ece-43b3-96cd-7842e75485a7', 'INSERT', '{"uuid": "808925d1-6ece-43b3-96cd-7842e75485a7", "assumed": true, "ascendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "descendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '378542be-f94c-4c97-8d7c-041a52cbe937', 'INSERT', '{"uuid": "378542be-f94c-4c97-8d7c-041a52cbe937", "assumed": true, "ascendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "descendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '073c82e8-93bf-4c28-b9fe-073b657616da', 'INSERT', '{"uuid": "073c82e8-93bf-4c28-b9fe-073b657616da", "assumed": true, "ascendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "descendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '75181fe1-4ee8-41b2-a0c0-d4e0747d6d23', 'INSERT', '{"op": "DELETE", "uuid": "75181fe1-4ee8-41b2-a0c0-d4e0747d6d23", "objectuuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '597dd910-011b-42de-9f91-cb168e3bdcb1', 'INSERT', '{"uuid": "597dd910-011b-42de-9f91-cb168e3bdcb1", "assumed": true, "ascendantuuid": "25aea726-1671-41d0-9264-5bb7c4972697", "descendantuuid": "75181fe1-4ee8-41b2-a0c0-d4e0747d6d23", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '07fbd6a7-038a-4fa0-a5f0-7fc082165557', 'INSERT', '{"op": "SELECT", "uuid": "07fbd6a7-038a-4fa0-a5f0-7fc082165557", "objectuuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'dc2b27a0-775d-4aa5-b577-96a0f8297034', 'INSERT', '{"uuid": "dc2b27a0-775d-4aa5-b577-96a0f8297034", "assumed": true, "ascendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "descendantuuid": "07fbd6a7-038a-4fa0-a5f0-7fc082165557", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', 'c12e8c8c-2a23-483b-82e0-48c173c7adad', 'INSERT', '{"op": "UPDATE", "uuid": "c12e8c8c-2a23-483b-82e0-48c173c7adad", "objectuuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '2ad12d86-112b-4c7f-bf09-96f66e85172a', 'INSERT', '{"uuid": "2ad12d86-112b-4c7f-bf09-96f66e85172a", "assumed": true, "ascendantuuid": "6a9c2ebd-0656-4634-bcf2-a10f53a2b649", "descendantuuid": "c12e8c8c-2a23-483b-82e0-48c173c7adad", "grantedbyroleuuid": null, "grantedbytriggerof": "0db2a143-0ab2-473f-84f8-d570ee119e04"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '0db2a143-0ab2-473f-84f8-d570ee119e04', 'INSERT', '{"uuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "xyz", "debitorreluuid": "92b842af-05fc-405d-b0db-7a667228c221", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', 'INSERT', '{"uuid": "5d6f9f7a-1821-4176-884f-fe191eb0de3d", "serialid": 124, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'aa0d172f-814b-4e32-ae80-63a9cca19fa2', 'INSERT', '{"uuid": "aa0d172f-814b-4e32-ae80-63a9cca19fa2", "assumed": true, "ascendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "descendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '78bc1a29-1393-47f2-a458-b5f2378a59f4', 'INSERT', '{"uuid": "78bc1a29-1393-47f2-a458-b5f2378a59f4", "assumed": true, "ascendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "descendantuuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'd7617d58-722e-4f73-93a1-841bb6540532', 'INSERT', '{"uuid": "d7617d58-722e-4f73-93a1-841bb6540532", "assumed": true, "ascendantuuid": "6c5bd6d0-2679-4b89-a125-57e510f4027d", "descendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '229cfcd2-8e66-4082-a9d8-a83e07687aa5', 'INSERT', '{"op": "DELETE", "uuid": "229cfcd2-8e66-4082-a9d8-a83e07687aa5", "objectuuid": "5d6f9f7a-1821-4176-884f-fe191eb0de3d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '1e716d6d-cae9-45ed-bb67-28deecf8f459', 'INSERT', '{"uuid": "1e716d6d-cae9-45ed-bb67-28deecf8f459", "roletype": "OWNER", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '9aea70f5-f852-4c2e-b4ae-0081bca2bbe8', 'INSERT', '{"uuid": "9aea70f5-f852-4c2e-b4ae-0081bca2bbe8", "assumed": true, "ascendantuuid": "d2d49e70-c8c7-449a-a5ae-03f377663ac9", "descendantuuid": "229cfcd2-8e66-4082-a9d8-a83e07687aa5", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '2c6c0cf1-ac65-483f-b34e-36bcdd6653de', 'INSERT', '{"op": "SELECT", "uuid": "2c6c0cf1-ac65-483f-b34e-36bcdd6653de", "objectuuid": "5d6f9f7a-1821-4176-884f-fe191eb0de3d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '0838d406-c17e-424a-9f53-0178ca8858cc', 'INSERT', '{"uuid": "0838d406-c17e-424a-9f53-0178ca8858cc", "assumed": true, "ascendantuuid": "be395dff-ff4b-40ae-a537-5c84a2d3a783", "descendantuuid": "2c6c0cf1-ac65-483f-b34e-36bcdd6653de", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', 'd502fcda-7169-4818-9c45-c04e713d5313', 'INSERT', '{"op": "UPDATE", "uuid": "d502fcda-7169-4818-9c45-c04e713d5313", "objectuuid": "5d6f9f7a-1821-4176-884f-fe191eb0de3d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '3bfe4bf5-4dd3-4578-bf35-69b558e948f9', 'INSERT', '{"uuid": "3bfe4bf5-4dd3-4578-bf35-69b558e948f9", "assumed": true, "ascendantuuid": "50593216-70ed-4099-8e53-51f5f95fb14e", "descendantuuid": "d502fcda-7169-4818-9c45-c04e713d5313", "grantedbyroleuuid": null, "grantedbytriggerof": "5d6f9f7a-1821-4176-884f-fe191eb0de3d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', 'INSERT', '{"uuid": "5d6f9f7a-1821-4176-884f-fe191eb0de3d", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "xxx", "debitorreluuid": "ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e", "vatcountrycode": null, "vatreversecharge": true, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '6191fa62-0cc3-4172-9696-4145049b64ce', 'INSERT', '{"uuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "serialid": 125, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '8b832bb0-ec8e-49e1-a171-2f7b809cb541', 'INSERT', '{"uuid": "8b832bb0-ec8e-49e1-a171-2f7b809cb541", "assumed": true, "ascendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "descendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '7cbc9add-a7ee-4b4d-a179-88785fdaabec', 'INSERT', '{"uuid": "7cbc9add-a7ee-4b4d-a179-88785fdaabec", "assumed": true, "ascendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "descendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '287da3a6-aee2-4ddb-af59-d1573fd4be26', 'INSERT', '{"uuid": "287da3a6-aee2-4ddb-af59-d1573fd4be26", "assumed": true, "ascendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "descendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', 'e1681e56-6bd9-43c9-b317-cf51cd2a70fe', 'INSERT', '{"op": "DELETE", "uuid": "e1681e56-6bd9-43c9-b317-cf51cd2a70fe", "objectuuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'ada88109-db72-4db5-bead-8ee51a4991e0', 'INSERT', '{"uuid": "ada88109-db72-4db5-bead-8ee51a4991e0", "assumed": true, "ascendantuuid": "7a2bfdae-7219-4781-9da1-ed34a2b61868", "descendantuuid": "e1681e56-6bd9-43c9-b317-cf51cd2a70fe", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '6548c064-050a-40b9-8a87-02e672e0e21f', 'INSERT', '{"op": "SELECT", "uuid": "6548c064-050a-40b9-8a87-02e672e0e21f", "objectuuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '2438a7b7-5a0a-404b-8a29-bb61a0a7c6d7', 'INSERT', '{"uuid": "2438a7b7-5a0a-404b-8a29-bb61a0a7c6d7", "assumed": true, "ascendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "descendantuuid": "6548c064-050a-40b9-8a87-02e672e0e21f", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', 'bb3f383a-8c59-4700-9649-93b334c30618', 'INSERT', '{"op": "UPDATE", "uuid": "bb3f383a-8c59-4700-9649-93b334c30618", "objectuuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '44fca42e-72d7-4010-8897-88d762a6ca2b', 'INSERT', '{"uuid": "44fca42e-72d7-4010-8897-88d762a6ca2b", "assumed": true, "ascendantuuid": "788ffc41-ac92-4dfe-b5ac-0e18e2249262", "descendantuuid": "bb3f383a-8c59-4700-9649-93b334c30618", "grantedbyroleuuid": null, "grantedbytriggerof": "6191fa62-0cc3-4172-9696-4145049b64ce"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '6191fa62-0cc3-4172-9696-4145049b64ce', 'INSERT', '{"uuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "vatid": "DE 236 109 136", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "rar", "debitorreluuid": "ddb4f0d0-83d2-43de-8024-a98953c1e821", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', 'INSERT', '{"uuid": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4", "serialid": 126, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'cc02eeda-e39f-478b-aa91-db5469ac2971', 'INSERT', '{"uuid": "cc02eeda-e39f-478b-aa91-db5469ac2971", "assumed": true, "ascendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "descendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'b5954b57-d68b-4653-95d0-2c0c40980e4d', 'INSERT', '{"uuid": "b5954b57-d68b-4653-95d0-2c0c40980e4d", "assumed": true, "ascendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "descendantuuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'cf46c1f6-55f8-4e41-9480-b91981853995', 'INSERT', '{"uuid": "cf46c1f6-55f8-4e41-9480-b91981853995", "assumed": true, "ascendantuuid": "2243d1b8-20ff-4556-8185-69dedd3fce8f", "descendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '59ce399b-d575-419d-80be-1fd04dce418f', 'INSERT', '{"op": "DELETE", "uuid": "59ce399b-d575-419d-80be-1fd04dce418f", "objectuuid": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'a05a3e0e-f80f-458f-9f40-77d0fbcf24ac', 'INSERT', '{"uuid": "a05a3e0e-f80f-458f-9f40-77d0fbcf24ac", "assumed": true, "ascendantuuid": "6a17b24d-e8b3-4659-b391-b1f72ef80029", "descendantuuid": "59ce399b-d575-419d-80be-1fd04dce418f", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '9f9c733b-5461-4e93-9d09-8b5ae9e091dc', 'INSERT', '{"op": "SELECT", "uuid": "9f9c733b-5461-4e93-9d09-8b5ae9e091dc", "objectuuid": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '315e837c-e8c6-4a09-b85d-2a80ae2d5879', 'INSERT', '{"uuid": "315e837c-e8c6-4a09-b85d-2a80ae2d5879", "assumed": true, "ascendantuuid": "4f843b40-95b0-4bfe-af06-2fc65df2ee56", "descendantuuid": "9f9c733b-5461-4e93-9d09-8b5ae9e091dc", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '32ce098d-facd-426b-9405-d0a10f7e4b42', 'INSERT', '{"op": "UPDATE", "uuid": "32ce098d-facd-426b-9405-d0a10f7e4b42", "objectuuid": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '681e9154-0801-469c-9812-e5e818cce38c', 'INSERT', '{"uuid": "681e9154-0801-469c-9812-e5e818cce38c", "assumed": true, "ascendantuuid": "79bfede0-cffe-46c4-b27c-0e40846e2447", "descendantuuid": "32ce098d-facd-426b-9405-d0a10f7e4b42", "grantedbyroleuuid": null, "grantedbytriggerof": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', 'INSERT', '{"uuid": "d93f1bac-c54d-4215-9831-ec3ebd08fcd4", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "yyy", "debitorreluuid": "3c0abfbb-0006-426a-903f-6f435e03276e", "vatcountrycode": null, "vatreversecharge": true, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 'INSERT', '{"uuid": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a", "serialid": 127, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '14490e1d-9a8f-4503-a844-4e8d93123da3', 'INSERT', '{"uuid": "14490e1d-9a8f-4503-a844-4e8d93123da3", "assumed": true, "ascendantuuid": "59461651-6e8b-4e92-a992-c6361933f78a", "descendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '66c7b170-3b4b-4725-92bb-0e22e02930e0', 'INSERT', '{"uuid": "66c7b170-3b4b-4725-92bb-0e22e02930e0", "assumed": true, "ascendantuuid": "00922fe9-7f32-4a66-9e9e-959719b12c5a", "descendantuuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '0dd57645-c77c-4471-b59c-49abc35378a4', 'INSERT', '{"uuid": "0dd57645-c77c-4471-b59c-49abc35378a4", "assumed": true, "ascendantuuid": "647db241-3be3-4ba7-b34b-d971ad566a37", "descendantuuid": "78721925-7bdb-4e4a-b6d6-a1a2822efcf3", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '5f1474a1-2c97-4780-88ae-dea97e8d2f75', 'INSERT', '{"op": "DELETE", "uuid": "5f1474a1-2c97-4780-88ae-dea97e8d2f75", "objectuuid": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'd081e7ef-b63b-43af-980d-9cac9e3e1b5b', 'INSERT', '{"uuid": "d081e7ef-b63b-43af-980d-9cac9e3e1b5b", "assumed": true, "ascendantuuid": "cee3b153-5528-4547-abf6-0abfb951c3e5", "descendantuuid": "5f1474a1-2c97-4780-88ae-dea97e8d2f75", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '91aa9300-0511-44f7-8b57-72da36d8c521', 'INSERT', '{"op": "SELECT", "uuid": "91aa9300-0511-44f7-8b57-72da36d8c521", "objectuuid": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '97663173-d5a4-4aca-8055-2e34176205ff', 'INSERT', '{"uuid": "97663173-d5a4-4aca-8055-2e34176205ff", "assumed": true, "ascendantuuid": "c0fd6753-8f4c-444b-81b8-bc779d1cc7c1", "descendantuuid": "91aa9300-0511-44f7-8b57-72da36d8c521", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab', 'INSERT', '{"op": "UPDATE", "uuid": "2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab", "objectuuid": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'ebb09d4a-7177-4cbb-b812-48c43742167a', 'INSERT', '{"uuid": "ebb09d4a-7177-4cbb-b812-48c43742167a", "assumed": true, "ascendantuuid": "c7155b13-a749-4856-9832-3b2c3f652e08", "descendantuuid": "2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab", "grantedbyroleuuid": null, "grantedbytriggerof": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 'INSERT', '{"uuid": "2e32f3de-2bd2-43bc-aae7-dbd8276d589a", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "hsh", "debitorreluuid": "17c6fe53-5c84-46e5-800e-2ab62bcf8a4e", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'INSERT', '{"uuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "serialid": 128, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '703c2e14-9432-45b6-84c4-3c8fb6461f5c', 'INSERT', '{"uuid": "703c2e14-9432-45b6-84c4-3c8fb6461f5c", "assumed": true, "ascendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "descendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'a55dfd4b-64c3-466c-82c3-6a5d1f6ef4e1', 'INSERT', '{"uuid": "a55dfd4b-64c3-466c-82c3-6a5d1f6ef4e1", "assumed": true, "ascendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "descendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'af05c306-5ccb-4690-8868-1ded5a27a447', 'INSERT', '{"uuid": "af05c306-5ccb-4690-8868-1ded5a27a447", "assumed": true, "ascendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "descendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '804e3de0-66a5-45e3-8275-1222ec0dc1d5', 'INSERT', '{"op": "DELETE", "uuid": "804e3de0-66a5-45e3-8275-1222ec0dc1d5", "objectuuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '3648889f-7e04-4de1-ae46-f43927fc709c', 'INSERT', '{"uuid": "3648889f-7e04-4de1-ae46-f43927fc709c", "assumed": true, "ascendantuuid": "0458c878-07f7-48cc-8cde-866110a379b2", "descendantuuid": "804e3de0-66a5-45e3-8275-1222ec0dc1d5", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '8e0dfa97-8845-4071-9569-500922447918', 'INSERT', '{"op": "SELECT", "uuid": "8e0dfa97-8845-4071-9569-500922447918", "objectuuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '1a7b7431-c9f7-455d-96ef-b3403cc8285f', 'INSERT', '{"uuid": "1a7b7431-c9f7-455d-96ef-b3403cc8285f", "assumed": true, "ascendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "descendantuuid": "8e0dfa97-8845-4071-9569-500922447918", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', 'e0cd0949-f2a1-4ce1-b442-31dd601dfc50', 'INSERT', '{"op": "UPDATE", "uuid": "e0cd0949-f2a1-4ce1-b442-31dd601dfc50", "objectuuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'a90faff3-7a3c-40ff-85e5-7e4df2953506', 'INSERT', '{"uuid": "a90faff3-7a3c-40ff-85e5-7e4df2953506", "assumed": true, "ascendantuuid": "9843689f-18c7-472f-833c-262d2348ae61", "descendantuuid": "e0cd0949-f2a1-4ce1-b442-31dd601dfc50", "grantedbyroleuuid": null, "grantedbytriggerof": "eab4b615-a7ab-438d-953d-b5da6485baa4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'INSERT', '{"uuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "wws", "debitorreluuid": "6263942d-84d3-40de-b460-04c52e2a7f36", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.object', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', 'INSERT', '{"uuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "serialid": 129, "objecttable": "hs_office.debitor"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'dadd487b-84b7-457b-95bd-61dc76c197f9', 'INSERT', '{"uuid": "dadd487b-84b7-457b-95bd-61dc76c197f9", "assumed": true, "ascendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "descendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '42a1656f-f248-462c-80ca-86fbd7506ca8', 'INSERT', '{"uuid": "42a1656f-f248-462c-80ca-86fbd7506ca8", "assumed": true, "ascendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "descendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '5d6567c1-bc20-4972-ae1a-ab4e8c53cca7', 'INSERT', '{"op": "DELETE", "uuid": "5d6567c1-bc20-4972-ae1a-ab4e8c53cca7", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '82c40f75-0113-4fe0-a492-3adf5fba1999', 'INSERT', '{"uuid": "82c40f75-0113-4fe0-a492-3adf5fba1999", "assumed": true, "ascendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "descendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '0e7d000d-a925-48f8-9111-2b2f0a06d4bc', 'INSERT', '{"op": "DELETE", "uuid": "0e7d000d-a925-48f8-9111-2b2f0a06d4bc", "objectuuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '1bd9c53c-8737-458e-baf9-7c3e9f60f97d', 'INSERT', '{"uuid": "1bd9c53c-8737-458e-baf9-7c3e9f60f97d", "assumed": true, "ascendantuuid": "cff56822-3173-4489-ba4e-eeb10924cefd", "descendantuuid": "0e7d000d-a925-48f8-9111-2b2f0a06d4bc", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '5aa9a6ff-dadb-44c2-9951-1146ce5d3888', 'INSERT', '{"op": "SELECT", "uuid": "5aa9a6ff-dadb-44c2-9951-1146ce5d3888", "objectuuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', 'f0289a5d-cb23-4fef-831e-7060788ce7d8', 'INSERT', '{"uuid": "f0289a5d-cb23-4fef-831e-7060788ce7d8", "assumed": true, "ascendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "descendantuuid": "5aa9a6ff-dadb-44c2-9951-1146ce5d3888", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.permission', '8a5628fa-a845-4284-b719-da86a4bd10e4', 'INSERT', '{"op": "UPDATE", "uuid": "8a5628fa-a845-4284-b719-da86a4bd10e4", "objectuuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'rbac.grant', '3989ae75-b5a8-4638-a6d7-0f3a9317bd07', 'INSERT', '{"uuid": "3989ae75-b5a8-4638-a6d7-0f3a9317bd07", "assumed": true, "ascendantuuid": "c9a6a7ba-a1fb-48dc-a3a9-98822c90c102", "descendantuuid": "8a5628fa-a845-4284-b719-da86a4bd10e4", "grantedbyroleuuid": null, "grantedbytriggerof": "50eef0ed-3045-4b45-9fa4-3d4038c626e7"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1576', 'hs_office.debitor', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', 'INSERT', '{"uuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "dph", "debitorreluuid": "7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'INSERT', '{"uuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "serialid": 130, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'e45e9efc-c353-496b-ae01-2cdd1a377189', 'INSERT', '{"uuid": "e45e9efc-c353-496b-ae01-2cdd1a377189", "roletype": "OWNER", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'b7377d17-5cba-4788-b025-a7c516f3cf09', 'INSERT', '{"uuid": "b7377d17-5cba-4788-b025-a7c516f3cf09", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "e45e9efc-c353-496b-ae01-2cdd1a377189", "grantedbyroleuuid": "e45e9efc-c353-496b-ae01-2cdd1a377189", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'e17798f5-5150-4fb9-8501-a736ac4aa461', 'INSERT', '{"uuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "roletype": "ADMIN", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '4f27a565-bea2-4099-870e-9ddac69a927d', 'INSERT', '{"op": "DELETE", "uuid": "4f27a565-bea2-4099-870e-9ddac69a927d", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7c59868f-73ad-4908-a21b-a3e8071b7332', 'INSERT', '{"uuid": "7c59868f-73ad-4908-a21b-a3e8071b7332", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "4f27a565-bea2-4099-870e-9ddac69a927d", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '94f0bc67-0f4f-4f6e-b804-e6329e6d6278', 'INSERT', '{"op": "UPDATE", "uuid": "94f0bc67-0f4f-4f6e-b804-e6329e6d6278", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '45c68c75-502b-4c86-aa09-48b669787b3b', 'INSERT', '{"uuid": "45c68c75-502b-4c86-aa09-48b669787b3b", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "94f0bc67-0f4f-4f6e-b804-e6329e6d6278", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '571b93af-9074-4a78-b80f-04459388b25c', 'INSERT', '{"uuid": "571b93af-9074-4a78-b80f-04459388b25c", "assumed": true, "ascendantuuid": "e45e9efc-c353-496b-ae01-2cdd1a377189", "descendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '3dd6731c-d9d0-46c8-854e-f4effdd6f572', 'INSERT', '{"uuid": "3dd6731c-d9d0-46c8-854e-f4effdd6f572", "assumed": true, "ascendantuuid": "79f6ac07-1368-42f4-a1ae-a9a357a8426e", "descendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'INSERT', '{"uuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "roletype": "AGENT", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'eeed5149-ffda-41b5-986f-ebe44198b6ed', 'INSERT', '{"op": "SELECT", "uuid": "eeed5149-ffda-41b5-986f-ebe44198b6ed", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7017d19d-b60d-433a-bb19-adaf11bd4a94', 'INSERT', '{"uuid": "7017d19d-b60d-433a-bb19-adaf11bd4a94", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "eeed5149-ffda-41b5-986f-ebe44198b6ed", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'ab87a931-b6d1-4e3a-a131-4beef69f07b7', 'INSERT', '{"uuid": "ab87a931-b6d1-4e3a-a131-4beef69f07b7", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '472173e6-2c97-48b5-82ae-a7e58c07a4fa', 'INSERT', '{"uuid": "472173e6-2c97-48b5-82ae-a7e58c07a4fa", "assumed": true, "ascendantuuid": "9e239542-d709-4bd3-9286-29c94c37908a", "descendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '0501460b-80da-4177-b55a-8bf270b6cfe1', 'INSERT', '{"uuid": "0501460b-80da-4177-b55a-8bf270b6cfe1", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "c0087469-c932-4639-9f7c-577e275791df", "grantedbyroleuuid": null, "grantedbytriggerof": "860a931c-5819-4cc8-9379-c2d530cd30f6"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e', 'INSERT', '{"op": "INSERT", "uuid": "5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'ba928bc8-eff9-4ab8-9071-68795636bc39', 'INSERT', '{"uuid": "ba928bc8-eff9-4ab8-9071-68795636bc39", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '7204bc19-f28b-4ca8-b72b-026c38298527', 'INSERT', '{"op": "INSERT", "uuid": "7204bc19-f28b-4ca8-b72b-026c38298527", "objectuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'cd61e99b-dce1-4c92-b2be-bcc4d975e9af', 'INSERT', '{"uuid": "cd61e99b-dce1-4c92-b2be-bcc4d975e9af", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "7204bc19-f28b-4ca8-b72b-026c38298527", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'INSERT', '{"uuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "status": "ACTIVE", "version": 0, "validity": "[2000-12-06,)", "partneruuid": "c73dc87f-990b-4c2a-8809-7be08b6d1535", "membernumbersuffix": "00", "membershipfeebillable": false}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'INSERT', '{"uuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "serialid": 131, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '06f20485-c8a0-4c8f-b197-473da910ad4c', 'INSERT', '{"uuid": "06f20485-c8a0-4c8f-b197-473da910ad4c", "roletype": "OWNER", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'c721f095-62f5-4e37-9201-f53299af0554', 'INSERT', '{"uuid": "c721f095-62f5-4e37-9201-f53299af0554", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "06f20485-c8a0-4c8f-b197-473da910ad4c", "grantedbyroleuuid": "06f20485-c8a0-4c8f-b197-473da910ad4c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'INSERT', '{"uuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "roletype": "ADMIN", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'c61e32e1-48c1-4bf3-882f-77382110700f', 'INSERT', '{"op": "DELETE", "uuid": "c61e32e1-48c1-4bf3-882f-77382110700f", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'b4f94475-ff0c-4e5c-8032-d6868c9f64ac', 'INSERT', '{"uuid": "b4f94475-ff0c-4e5c-8032-d6868c9f64ac", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "c61e32e1-48c1-4bf3-882f-77382110700f", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'efc20691-4515-48c9-bbb2-ca411195d26c', 'INSERT', '{"op": "UPDATE", "uuid": "efc20691-4515-48c9-bbb2-ca411195d26c", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7f7b5d7d-8d7b-4a7a-9ba7-4feee5e54727', 'INSERT', '{"uuid": "7f7b5d7d-8d7b-4a7a-9ba7-4feee5e54727", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "efc20691-4515-48c9-bbb2-ca411195d26c", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '3388c1d5-9c33-4e10-8b86-ac3ea9c2c781', 'INSERT', '{"uuid": "3388c1d5-9c33-4e10-8b86-ac3ea9c2c781", "assumed": true, "ascendantuuid": "06f20485-c8a0-4c8f-b197-473da910ad4c", "descendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '057da41c-682e-4b5e-9b70-d0ee8397c9f1', 'INSERT', '{"uuid": "057da41c-682e-4b5e-9b70-d0ee8397c9f1", "assumed": true, "ascendantuuid": "f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9", "descendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'INSERT', '{"uuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "roletype": "AGENT", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'f992415c-81e3-4339-93d0-cd73fc15d324', 'INSERT', '{"op": "SELECT", "uuid": "f992415c-81e3-4339-93d0-cd73fc15d324", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'eb7c1d3d-d877-4401-be37-af8454fcc8be', 'INSERT', '{"uuid": "eb7c1d3d-d877-4401-be37-af8454fcc8be", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "f992415c-81e3-4339-93d0-cd73fc15d324", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '165c16e3-bf7c-4ce1-811b-cc795d520734', 'INSERT', '{"uuid": "165c16e3-bf7c-4ce1-811b-cc795d520734", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '2ad04173-7a9d-4359-b0bb-816b6a32c0af', 'INSERT', '{"uuid": "2ad04173-7a9d-4359-b0bb-816b6a32c0af", "assumed": true, "ascendantuuid": "c9c5a8e1-ad7c-48f0-b747-b574b96de461", "descendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '58486525-e310-4429-93ca-f1e0f71a967f', 'INSERT', '{"uuid": "58486525-e310-4429-93ca-f1e0f71a967f", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "0f4a2da3-f4bf-4454-9ff8-0fd71157fb45", "grantedbyroleuuid": null, "grantedbytriggerof": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '78c9542a-3595-4e01-8d35-036ad1c73852', 'INSERT', '{"op": "INSERT", "uuid": "78c9542a-3595-4e01-8d35-036ad1c73852", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '14e80e7c-3f57-4a50-9193-4aec64d3a00f', 'INSERT', '{"uuid": "14e80e7c-3f57-4a50-9193-4aec64d3a00f", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "78c9542a-3595-4e01-8d35-036ad1c73852", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1', 'INSERT', '{"op": "INSERT", "uuid": "2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1", "objectuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '0855b2ea-535a-467b-8053-b2f7ddfc91b4', 'INSERT', '{"uuid": "0855b2ea-535a-467b-8053-b2f7ddfc91b4", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'INSERT', '{"uuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "status": "UNKNOWN", "version": 0, "validity": "[2000-12-06,2016-01-01)", "partneruuid": "45fd8262-37b2-4d6d-b2f9-26d1561d307f", "membernumbersuffix": "00", "membershipfeebillable": true}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'INSERT', '{"uuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "serialid": 132, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', 'INSERT', '{"uuid": "1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea", "roletype": "OWNER", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '8dcd8505-fc84-4b55-895e-99513b1edd35', 'INSERT', '{"uuid": "8dcd8505-fc84-4b55-895e-99513b1edd35", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea", "grantedbyroleuuid": "1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '02367e67-e418-4eb2-92d7-241e3ece14e4', 'INSERT', '{"uuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "roletype": "ADMIN", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'ac02dd92-7f6d-40eb-9d06-f94bc88c3996', 'INSERT', '{"op": "DELETE", "uuid": "ac02dd92-7f6d-40eb-9d06-f94bc88c3996", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'e6d4f49d-e37c-4ef8-8de3-17996f1a5a99', 'INSERT', '{"uuid": "e6d4f49d-e37c-4ef8-8de3-17996f1a5a99", "assumed": true, "ascendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "descendantuuid": "ac02dd92-7f6d-40eb-9d06-f94bc88c3996", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '40698c45-9698-4294-97d4-c6cfa144af30', 'INSERT', '{"op": "UPDATE", "uuid": "40698c45-9698-4294-97d4-c6cfa144af30", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'e88c66d2-878b-46e7-8e05-fb918f1e67a0', 'INSERT', '{"uuid": "e88c66d2-878b-46e7-8e05-fb918f1e67a0", "assumed": true, "ascendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "descendantuuid": "40698c45-9698-4294-97d4-c6cfa144af30", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '328262f3-bb3a-4b79-af44-574a9578ea75', 'INSERT', '{"uuid": "328262f3-bb3a-4b79-af44-574a9578ea75", "assumed": true, "ascendantuuid": "1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea", "descendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '8ac96445-2f51-4d0e-84dd-8eb625c63db6', 'INSERT', '{"uuid": "8ac96445-2f51-4d0e-84dd-8eb625c63db6", "assumed": true, "ascendantuuid": "a115bf5c-94f4-46b0-8506-e41ead116a8d", "descendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'b56c72e1-8717-4238-8755-52de32b7e9a8', 'INSERT', '{"uuid": "b56c72e1-8717-4238-8755-52de32b7e9a8", "roletype": "AGENT", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '5992a7ec-141d-4ae3-9200-add7c7992cf9', 'INSERT', '{"op": "SELECT", "uuid": "5992a7ec-141d-4ae3-9200-add7c7992cf9", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'd70fbe78-d542-40c1-a322-3574298986b3', 'INSERT', '{"uuid": "d70fbe78-d542-40c1-a322-3574298986b3", "assumed": true, "ascendantuuid": "b56c72e1-8717-4238-8755-52de32b7e9a8", "descendantuuid": "5992a7ec-141d-4ae3-9200-add7c7992cf9", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'e34227d6-7dfa-4baa-aa04-dd1c0f2338fb', 'INSERT', '{"uuid": "e34227d6-7dfa-4baa-aa04-dd1c0f2338fb", "assumed": true, "ascendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "descendantuuid": "b56c72e1-8717-4238-8755-52de32b7e9a8", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '0cc3bbae-f76a-46a4-a730-14ae6467ecad', 'INSERT', '{"uuid": "0cc3bbae-f76a-46a4-a730-14ae6467ecad", "assumed": true, "ascendantuuid": "e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2", "descendantuuid": "b56c72e1-8717-4238-8755-52de32b7e9a8", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'dc0a83f5-257f-47fe-bd4a-c2c11d1f1811', 'INSERT', '{"uuid": "dc0a83f5-257f-47fe-bd4a-c2c11d1f1811", "assumed": true, "ascendantuuid": "b56c72e1-8717-4238-8755-52de32b7e9a8", "descendantuuid": "9fdc3c83-e6fc-4494-bba5-ec2f2b814448", "grantedbyroleuuid": null, "grantedbytriggerof": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '6389d1cf-ad59-4de0-b648-148dd127b6eb', 'INSERT', '{"op": "INSERT", "uuid": "6389d1cf-ad59-4de0-b648-148dd127b6eb", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '60879bf7-525f-4538-b27d-e5623d4c2b9d', 'INSERT', '{"uuid": "60879bf7-525f-4538-b27d-e5623d4c2b9d", "assumed": true, "ascendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "descendantuuid": "6389d1cf-ad59-4de0-b648-148dd127b6eb", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'c59d5910-8a41-46c0-bf1b-80493d1f8abe', 'INSERT', '{"op": "INSERT", "uuid": "c59d5910-8a41-46c0-bf1b-80493d1f8abe", "objectuuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '1125f9a5-68ea-4883-bc51-841178d8f2cc', 'INSERT', '{"uuid": "1125f9a5-68ea-4883-bc51-841178d8f2cc", "assumed": true, "ascendantuuid": "02367e67-e418-4eb2-92d7-241e3ece14e4", "descendantuuid": "c59d5910-8a41-46c0-bf1b-80493d1f8abe", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'INSERT', '{"uuid": "4e047029-cd6a-4cd8-9022-bdf092aa7b7b", "status": "ACTIVE", "version": 0, "validity": "[2021-04-01,)", "partneruuid": "af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c", "membernumbersuffix": "00", "membershipfeebillable": true}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'INSERT', '{"uuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "serialid": 133, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '67ba7d20-5994-4a7d-a326-d68ce566bbd0', 'INSERT', '{"uuid": "67ba7d20-5994-4a7d-a326-d68ce566bbd0", "roletype": "OWNER", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '049b15bf-a6fc-4f25-9235-fe8bdea072f2', 'INSERT', '{"uuid": "049b15bf-a6fc-4f25-9235-fe8bdea072f2", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "67ba7d20-5994-4a7d-a326-d68ce566bbd0", "grantedbyroleuuid": "67ba7d20-5994-4a7d-a326-d68ce566bbd0", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '09a5131d-4cc7-4373-8aa0-7183cd6cee62', 'INSERT', '{"uuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "roletype": "ADMIN", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '27a90c0f-4e31-4ffb-b287-109a77448a9d', 'INSERT', '{"op": "DELETE", "uuid": "27a90c0f-4e31-4ffb-b287-109a77448a9d", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '235761bf-879c-4527-a5af-493d3ddcf8d5', 'INSERT', '{"uuid": "235761bf-879c-4527-a5af-493d3ddcf8d5", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "27a90c0f-4e31-4ffb-b287-109a77448a9d", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '1e14521e-b924-423d-bc52-5dd8447ececa', 'INSERT', '{"op": "UPDATE", "uuid": "1e14521e-b924-423d-bc52-5dd8447ececa", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '5874d757-304f-49ce-a511-3cefc35665c4', 'INSERT', '{"uuid": "5874d757-304f-49ce-a511-3cefc35665c4", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "1e14521e-b924-423d-bc52-5dd8447ececa", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '1021fbfb-13df-4585-96a0-d5215e4f354e', 'INSERT', '{"uuid": "1021fbfb-13df-4585-96a0-d5215e4f354e", "assumed": true, "ascendantuuid": "67ba7d20-5994-4a7d-a326-d68ce566bbd0", "descendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '6c8ba8b3-76a2-40f0-8228-9c5c3e365263', 'INSERT', '{"uuid": "6c8ba8b3-76a2-40f0-8228-9c5c3e365263", "assumed": true, "ascendantuuid": "63952462-0544-485e-8e6f-a344be47cc97", "descendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '08903550-662d-4b46-bfe2-74f263288b3c', 'INSERT', '{"uuid": "08903550-662d-4b46-bfe2-74f263288b3c", "roletype": "AGENT", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '30091ef3-0aef-47a7-8020-8ea49254a578', 'INSERT', '{"op": "SELECT", "uuid": "30091ef3-0aef-47a7-8020-8ea49254a578", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '8eefd25c-0dbc-4e0b-9c6e-4f4748994f3c', 'INSERT', '{"uuid": "8eefd25c-0dbc-4e0b-9c6e-4f4748994f3c", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "30091ef3-0aef-47a7-8020-8ea49254a578", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'INSERT', '{"uuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "status": "INVALID", "version": 0, "validity": "empty", "partneruuid": "f32722ac-acac-46cd-b3d9-171c1921f2bc", "membernumbersuffix": "00", "membershipfeebillable": false}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '0baefe56-992b-44b9-862a-3b81fb7db9b3', 'INSERT', '{"uuid": "0baefe56-992b-44b9-862a-3b81fb7db9b3", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'fcec3400-bfe7-47eb-83a6-b0117d8eea44', 'INSERT', '{"uuid": "fcec3400-bfe7-47eb-83a6-b0117d8eea44", "assumed": true, "ascendantuuid": "03613dc7-4ec1-430b-a213-291b587700d5", "descendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'bb7108d3-ff7d-4b5a-8758-dc5d51fa6657', 'INSERT', '{"uuid": "bb7108d3-ff7d-4b5a-8758-dc5d51fa6657", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "06736882-96b1-4e48-bcb0-b897a5929f8d", "grantedbyroleuuid": null, "grantedbytriggerof": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'd56e6f97-db5c-4dee-8d84-90a0e35c9714', 'INSERT', '{"op": "INSERT", "uuid": "d56e6f97-db5c-4dee-8d84-90a0e35c9714", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'f9028bf0-53fa-4c9a-8259-3dae01bc6f31', 'INSERT', '{"uuid": "f9028bf0-53fa-4c9a-8259-3dae01bc6f31", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "d56e6f97-db5c-4dee-8d84-90a0e35c9714", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '281c7961-4b81-479e-b441-760bfeeabd46', 'INSERT', '{"op": "INSERT", "uuid": "281c7961-4b81-479e-b441-760bfeeabd46", "objectuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '29400559-9d31-4525-9b35-345918926d3c', 'INSERT', '{"uuid": "29400559-9d31-4525-9b35-345918926d3c", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "281c7961-4b81-479e-b441-760bfeeabd46", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'INSERT', '{"uuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "status": "ACTIVE", "version": 0, "validity": "[2003-07-12,)", "partneruuid": "94c3062b-ec85-469d-824d-885a125e5a52", "membernumbersuffix": "00", "membershipfeebillable": true}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'INSERT', '{"uuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "serialid": 134, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '3561c528-a2d8-4291-966e-3ba044436e56', 'INSERT', '{"uuid": "3561c528-a2d8-4291-966e-3ba044436e56", "roletype": "OWNER", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'c1b6a841-21e0-451d-8637-00b91ed8e6c1', 'INSERT', '{"uuid": "c1b6a841-21e0-451d-8637-00b91ed8e6c1", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "3561c528-a2d8-4291-966e-3ba044436e56", "grantedbyroleuuid": "3561c528-a2d8-4291-966e-3ba044436e56", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '202a6508-7fef-459d-b5b6-890b088d82be', 'INSERT', '{"uuid": "202a6508-7fef-459d-b5b6-890b088d82be", "roletype": "ADMIN", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'b40304e8-ff14-4532-81c2-e4fa4cb70e42', 'INSERT', '{"op": "DELETE", "uuid": "b40304e8-ff14-4532-81c2-e4fa4cb70e42", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '2f59e2f2-9a88-4a32-8694-3a45d1d8914b', 'INSERT', '{"uuid": "2f59e2f2-9a88-4a32-8694-3a45d1d8914b", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "b40304e8-ff14-4532-81c2-e4fa4cb70e42", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '524a333e-aec2-483e-862c-679039cafcde', 'INSERT', '{"op": "UPDATE", "uuid": "524a333e-aec2-483e-862c-679039cafcde", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '14a9a6ef-29fa-4b9d-bcdd-798447d227d1', 'INSERT', '{"uuid": "14a9a6ef-29fa-4b9d-bcdd-798447d227d1", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "524a333e-aec2-483e-862c-679039cafcde", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '98378014-eb47-4d1b-8eb9-13bb6972d7a2', 'INSERT', '{"uuid": "98378014-eb47-4d1b-8eb9-13bb6972d7a2", "assumed": true, "ascendantuuid": "3561c528-a2d8-4291-966e-3ba044436e56", "descendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'da1c6cdb-eb3d-4694-a82b-1b895e14ec87', 'INSERT', '{"uuid": "da1c6cdb-eb3d-4694-a82b-1b895e14ec87", "assumed": true, "ascendantuuid": "7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397", "descendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', 'INSERT', '{"uuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "roletype": "AGENT", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee', 'INSERT', '{"op": "SELECT", "uuid": "aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '3ccd61f2-2323-4412-94aa-405dc5f50fcb', 'INSERT', '{"uuid": "3ccd61f2-2323-4412-94aa-405dc5f50fcb", "assumed": true, "ascendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "descendantuuid": "aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7df094a5-b6b6-4f9f-9cb8-c2d24c9710c2', 'INSERT', '{"uuid": "7df094a5-b6b6-4f9f-9cb8-c2d24c9710c2", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'af6decfd-ae97-4518-9c84-b9e2f74fbdb6', 'INSERT', '{"uuid": "af6decfd-ae97-4518-9c84-b9e2f74fbdb6", "assumed": true, "ascendantuuid": "c7434ab2-1e19-4777-a38e-14330f4a02a7", "descendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '51e411ea-37c9-4cbd-b924-447f678d398a', 'INSERT', '{"uuid": "51e411ea-37c9-4cbd-b924-447f678d398a", "assumed": true, "ascendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "descendantuuid": "7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540", "grantedbyroleuuid": null, "grantedbytriggerof": "ca0baf78-f634-430f-b9d3-351a6d1a6723"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '8cafc9fc-e7ff-440c-b8a1-394e601aa944', 'INSERT', '{"op": "INSERT", "uuid": "8cafc9fc-e7ff-440c-b8a1-394e601aa944", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '6d9f83fb-9790-4d98-8afa-b64a66d1a52e', 'INSERT', '{"uuid": "6d9f83fb-9790-4d98-8afa-b64a66d1a52e", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "8cafc9fc-e7ff-440c-b8a1-394e601aa944", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '7242332d-8f72-4e28-9c45-fdfbeb6118f9', 'INSERT', '{"op": "INSERT", "uuid": "7242332d-8f72-4e28-9c45-fdfbeb6118f9", "objectuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '5e5497a1-dbe9-4ede-9d8e-f76773a2bf8b', 'INSERT', '{"uuid": "5e5497a1-dbe9-4ede-9d8e-f76773a2bf8b", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "7242332d-8f72-4e28-9c45-fdfbeb6118f9", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7da8121d-e963-4da6-b973-a78d3fcac3cc', 'INSERT', '{"uuid": "7da8121d-e963-4da6-b973-a78d3fcac3cc", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1e716d6d-cae9-45ed-bb67-28deecf8f459", "grantedbyroleuuid": "1e716d6d-cae9-45ed-bb67-28deecf8f459", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'INSERT', '{"uuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "roletype": "ADMIN", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'd7932082-e9af-417f-af27-37946e0b7a49', 'INSERT', '{"op": "DELETE", "uuid": "d7932082-e9af-417f-af27-37946e0b7a49", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '10aa6583-6376-4a25-b50d-07b67ba9bb8c', 'INSERT', '{"uuid": "10aa6583-6376-4a25-b50d-07b67ba9bb8c", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "d7932082-e9af-417f-af27-37946e0b7a49", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '7799ed00-0de6-4ce5-9547-649369ca4a63', 'INSERT', '{"op": "UPDATE", "uuid": "7799ed00-0de6-4ce5-9547-649369ca4a63", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '46c72983-7091-447d-8abb-91e22d2ffd92', 'INSERT', '{"uuid": "46c72983-7091-447d-8abb-91e22d2ffd92", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "7799ed00-0de6-4ce5-9547-649369ca4a63", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '8d848fcb-c098-4ab9-82c8-11013c258b63', 'INSERT', '{"uuid": "8d848fcb-c098-4ab9-82c8-11013c258b63", "assumed": true, "ascendantuuid": "1e716d6d-cae9-45ed-bb67-28deecf8f459", "descendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '1b8e1ea3-9f07-4ca0-a40a-8f19f381996b', 'INSERT', '{"uuid": "1b8e1ea3-9f07-4ca0-a40a-8f19f381996b", "assumed": true, "ascendantuuid": "cf45ba5b-f46e-4638-96c3-8fff424da6a7", "descendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'ff268833-fd94-40f4-8a00-65ec735997c1', 'INSERT', '{"uuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "roletype": "AGENT", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '56be9a1f-28b0-4c6a-818f-53df9138fed0', 'INSERT', '{"op": "SELECT", "uuid": "56be9a1f-28b0-4c6a-818f-53df9138fed0", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'ea62e499-bdc3-46e0-8f3d-8577b5ee925d', 'INSERT', '{"uuid": "ea62e499-bdc3-46e0-8f3d-8577b5ee925d", "assumed": true, "ascendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "descendantuuid": "56be9a1f-28b0-4c6a-818f-53df9138fed0", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '5daf322f-f507-442a-a6e1-ac4aab6ae7a1', 'INSERT', '{"uuid": "5daf322f-f507-442a-a6e1-ac4aab6ae7a1", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'b4c4ed2d-ed12-4ddf-87a5-7c40a5fb403f', 'INSERT', '{"uuid": "b4c4ed2d-ed12-4ddf-87a5-7c40a5fb403f", "assumed": true, "ascendantuuid": "3edbc6f6-bd84-4390-970d-5e344664f86e", "descendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'f7a11f0e-43fd-4e33-9ad0-8f11b9938968', 'INSERT', '{"uuid": "f7a11f0e-43fd-4e33-9ad0-8f11b9938968", "assumed": true, "ascendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "descendantuuid": "d9fa8f0e-e40f-45da-a3fc-37a6e973cf13", "grantedbyroleuuid": null, "grantedbytriggerof": "8a6743f8-ecf2-4500-8983-d657b9d61b18"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'b1baabe9-2f07-4bb5-9c8a-40d00394e9e3', 'INSERT', '{"op": "INSERT", "uuid": "b1baabe9-2f07-4bb5-9c8a-40d00394e9e3", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', 'd594af8c-0903-4ef0-aa57-8e421e91705f', 'INSERT', '{"uuid": "d594af8c-0903-4ef0-aa57-8e421e91705f", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "b1baabe9-2f07-4bb5-9c8a-40d00394e9e3", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'adaca50c-0efa-45bd-9d4c-ae790bd334bb', 'INSERT', '{"op": "INSERT", "uuid": "adaca50c-0efa-45bd-9d4c-ae790bd334bb", "objectuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '22f33f05-0dd0-4e39-b9d0-954f30d642df', 'INSERT', '{"uuid": "22f33f05-0dd0-4e39-b9d0-954f30d642df", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "adaca50c-0efa-45bd-9d4c-ae790bd334bb", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'INSERT', '{"uuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "status": "ACTIVE", "version": 0, "validity": "[2021-05-17,)", "partneruuid": "23272f3b-28e7-4777-9f86-5821646343ad", "membernumbersuffix": "00", "membershipfeebillable": true}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.object', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'INSERT', '{"uuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "serialid": 136, "objecttable": "hs_office.membership"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'ef169461-9c02-46f4-a6a9-6c36aad196ca', 'INSERT', '{"uuid": "ef169461-9c02-46f4-a6a9-6c36aad196ca", "roletype": "OWNER", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '8630c0e8-a967-4e09-8382-b90d34a5025e', 'INSERT', '{"uuid": "8630c0e8-a967-4e09-8382-b90d34a5025e", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "ef169461-9c02-46f4-a6a9-6c36aad196ca", "grantedbyroleuuid": "ef169461-9c02-46f4-a6a9-6c36aad196ca", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', 'INSERT', '{"uuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "roletype": "ADMIN", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '55638bc0-b003-4185-b805-b542b92cc07e', 'INSERT', '{"op": "DELETE", "uuid": "55638bc0-b003-4185-b805-b542b92cc07e", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '73c6f2a9-d88c-4332-a826-8c2e446237f8', 'INSERT', '{"uuid": "73c6f2a9-d88c-4332-a826-8c2e446237f8", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "55638bc0-b003-4185-b805-b542b92cc07e", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '162b3d0c-b3df-4afa-933c-e18986f7e216', 'INSERT', '{"op": "UPDATE", "uuid": "162b3d0c-b3df-4afa-933c-e18986f7e216", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '72d99da1-87a4-4e69-9efa-12efd439bab0', 'INSERT', '{"uuid": "72d99da1-87a4-4e69-9efa-12efd439bab0", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "162b3d0c-b3df-4afa-933c-e18986f7e216", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '2faf8105-e42c-4eda-940a-57ef030c6e73', 'INSERT', '{"uuid": "2faf8105-e42c-4eda-940a-57ef030c6e73", "assumed": true, "ascendantuuid": "ef169461-9c02-46f4-a6a9-6c36aad196ca", "descendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '4b8574e4-5323-4a11-b74b-70f3374ca551', 'INSERT', '{"uuid": "4b8574e4-5323-4a11-b74b-70f3374ca551", "assumed": true, "ascendantuuid": "5743e552-306b-4aa1-acf3-23d6d1ff26c2", "descendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.role', '34cc8a49-ea9b-466e-8579-7827e09f5d35', 'INSERT', '{"uuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "roletype": "AGENT", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '8fdd420e-b77f-4c42-addb-bc5310c9356d', 'INSERT', '{"op": "SELECT", "uuid": "8fdd420e-b77f-4c42-addb-bc5310c9356d", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '0b0c07a5-4c74-4af9-ac7e-e87cb24a498d', 'INSERT', '{"uuid": "0b0c07a5-4c74-4af9-ac7e-e87cb24a498d", "assumed": true, "ascendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "descendantuuid": "8fdd420e-b77f-4c42-addb-bc5310c9356d", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '36721c02-daf8-4709-9b34-617407b68b39', 'INSERT', '{"uuid": "36721c02-daf8-4709-9b34-617407b68b39", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '7a496207-2f3d-4305-bad3-a70636e28529', 'INSERT', '{"uuid": "7a496207-2f3d-4305-bad3-a70636e28529", "assumed": true, "ascendantuuid": "003086d1-689f-41da-9ea2-e61c50dc6c10", "descendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '9e906445-3560-46bf-a0f5-258a109800bf', 'INSERT', '{"uuid": "9e906445-3560-46bf-a0f5-258a109800bf", "assumed": true, "ascendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "descendantuuid": "face87b5-b7b2-4525-b615-9c917e6f11c9", "grantedbyroleuuid": null, "grantedbytriggerof": "cce6083f-6122-4759-85a9-5ac021b2c95d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', 'd4ccf9df-c982-496d-870c-2fee23971c8f', 'INSERT', '{"op": "INSERT", "uuid": "d4ccf9df-c982-496d-870c-2fee23971c8f", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "optablename": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '074f7799-14ed-42a9-8aee-97dd7ca03bdd', 'INSERT', '{"uuid": "074f7799-14ed-42a9-8aee-97dd7ca03bdd", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "d4ccf9df-c982-496d-870c-2fee23971c8f", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.permission', '86e9a040-1689-4e76-b581-1460b23a7c9c', 'INSERT', '{"op": "INSERT", "uuid": "86e9a040-1689-4e76-b581-1460b23a7c9c", "objectuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "optablename": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'rbac.grant', '9b4ef3d0-f5a3-4546-ab1d-afe7ec3421d6', 'INSERT', '{"uuid": "9b4ef3d0-f5a3-4546-ab1d-afe7ec3421d6", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "86e9a040-1689-4e76-b581-1460b23a7c9c", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1601', 'hs_office.membership', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'INSERT', '{"uuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "status": "ACTIVE", "version": 0, "validity": "[2021-05-25,)", "partneruuid": "fe1c641d-8afa-4435-be7f-ee01caf6e3b4", "membernumbersuffix": "00", "membershipfeebillable": true}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'INSERT', '{"uuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8", "serialid": 137, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'f08199e6-b59c-4cae-a738-6d37d2a484cd', 'INSERT', '{"uuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "roletype": "OWNER", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '24665c63-458a-46a0-890d-8a238f9d036f', 'INSERT', '{"op": "DELETE", "uuid": "24665c63-458a-46a0-890d-8a238f9d036f", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '0eac6b88-7427-4778-ac8c-628f3798ef5b', 'INSERT', '{"uuid": "0eac6b88-7427-4778-ac8c-628f3798ef5b", "assumed": true, "ascendantuuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "descendantuuid": "24665c63-458a-46a0-890d-8a238f9d036f", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '664aa0ab-5a78-408d-aa69-22aa07ebeef7', 'INSERT', '{"uuid": "664aa0ab-5a78-408d-aa69-22aa07ebeef7", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'eaee75a5-a7f2-4322-b7e2-1201c4eb3aa2', 'INSERT', '{"uuid": "eaee75a5-a7f2-4322-b7e2-1201c4eb3aa2", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "grantedbyroleuuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '1c0c395e-a062-423c-b153-d17fcfdc42f8', 'INSERT', '{"uuid": "1c0c395e-a062-423c-b153-d17fcfdc42f8", "roletype": "ADMIN", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '5b9d578c-9d05-4480-9256-1e091ce93f25', 'INSERT', '{"op": "UPDATE", "uuid": "5b9d578c-9d05-4480-9256-1e091ce93f25", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '96e3ba4c-4fd0-401e-89a8-9f38d78d0d98', 'INSERT', '{"uuid": "96e3ba4c-4fd0-401e-89a8-9f38d78d0d98", "assumed": true, "ascendantuuid": "1c0c395e-a062-423c-b153-d17fcfdc42f8", "descendantuuid": "5b9d578c-9d05-4480-9256-1e091ce93f25", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'c2385c4b-af2a-4066-83da-60955349465b', 'INSERT', '{"uuid": "c2385c4b-af2a-4066-83da-60955349465b", "assumed": true, "ascendantuuid": "f08199e6-b59c-4cae-a738-6d37d2a484cd", "descendantuuid": "1c0c395e-a062-423c-b153-d17fcfdc42f8", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '180970e6-4774-43ba-be24-92cc46a1e9f7', 'INSERT', '{"uuid": "180970e6-4774-43ba-be24-92cc46a1e9f7", "roletype": "REFERRER", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'dbe17345-adae-4bee-97f2-e3a13fc45e70', 'INSERT', '{"op": "SELECT", "uuid": "dbe17345-adae-4bee-97f2-e3a13fc45e70", "objectuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '8d3808c3-484e-472b-afbe-27ad14b45295', 'INSERT', '{"uuid": "8d3808c3-484e-472b-afbe-27ad14b45295", "assumed": true, "ascendantuuid": "180970e6-4774-43ba-be24-92cc46a1e9f7", "descendantuuid": "dbe17345-adae-4bee-97f2-e3a13fc45e70", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '93f58fad-e0e6-41d0-bd62-bcc36fe22134', 'INSERT', '{"uuid": "93f58fad-e0e6-41d0-bd62-bcc36fe22134", "assumed": true, "ascendantuuid": "1c0c395e-a062-423c-b153-d17fcfdc42f8", "descendantuuid": "180970e6-4774-43ba-be24-92cc46a1e9f7", "grantedbyroleuuid": null, "grantedbytriggerof": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'INSERT', '{"bic": "GENODEM1GLS", "iban": "DE02300209000106531065", "uuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8", "holder": "Ragnar Richter", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', '7761056f-60a1-4981-a45f-55097922cfcb', 'INSERT', '{"uuid": "7761056f-60a1-4981-a45f-55097922cfcb", "serialid": 138, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'cddf6529-abe4-42be-a8e9-a0f635cded95', 'INSERT', '{"uuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "roletype": "OWNER", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '7d143aec-5212-42af-8d68-c3b48010cbc5', 'INSERT', '{"uuid": "7d143aec-5212-42af-8d68-c3b48010cbc5", "assumed": true, "ascendantuuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "descendantuuid": "5d6567c1-bc20-4972-ae1a-ab4e8c53cca7", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '02f1f344-5c49-4279-b791-11df4937f50c', 'INSERT', '{"uuid": "02f1f344-5c49-4279-b791-11df4937f50c", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '04fcc555-4555-42f5-aa2a-1f12f8620dba', 'INSERT', '{"uuid": "04fcc555-4555-42f5-aa2a-1f12f8620dba", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "grantedbyroleuuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '70474bae-df93-4ba6-951e-5ca5fe0fc4a0', 'INSERT', '{"uuid": "70474bae-df93-4ba6-951e-5ca5fe0fc4a0", "roletype": "ADMIN", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'e4ac0185-4d56-457d-aff9-0f75357e048a', 'INSERT', '{"op": "UPDATE", "uuid": "e4ac0185-4d56-457d-aff9-0f75357e048a", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '9462f127-83b3-4ebb-9194-391ddbbaab45', 'INSERT', '{"uuid": "9462f127-83b3-4ebb-9194-391ddbbaab45", "assumed": true, "ascendantuuid": "70474bae-df93-4ba6-951e-5ca5fe0fc4a0", "descendantuuid": "e4ac0185-4d56-457d-aff9-0f75357e048a", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '4d8f2386-6293-443a-96f6-254b02af9b6f', 'INSERT', '{"uuid": "4d8f2386-6293-443a-96f6-254b02af9b6f", "assumed": true, "ascendantuuid": "cddf6529-abe4-42be-a8e9-a0f635cded95", "descendantuuid": "70474bae-df93-4ba6-951e-5ca5fe0fc4a0", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'f0394d0f-0314-4cc2-b77b-412362610ee8', 'INSERT', '{"uuid": "f0394d0f-0314-4cc2-b77b-412362610ee8", "roletype": "REFERRER", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '4d2894d1-adeb-4349-a7e4-47af15a0b9d3', 'INSERT', '{"op": "SELECT", "uuid": "4d2894d1-adeb-4349-a7e4-47af15a0b9d3", "objectuuid": "7761056f-60a1-4981-a45f-55097922cfcb", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'e67017e8-2879-42f2-a16b-5463dfa78014', 'INSERT', '{"uuid": "e67017e8-2879-42f2-a16b-5463dfa78014", "assumed": true, "ascendantuuid": "f0394d0f-0314-4cc2-b77b-412362610ee8", "descendantuuid": "4d2894d1-adeb-4349-a7e4-47af15a0b9d3", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '954a3361-c2a4-4d50-8bbb-f64aea9b548c', 'INSERT', '{"uuid": "954a3361-c2a4-4d50-8bbb-f64aea9b548c", "assumed": true, "ascendantuuid": "70474bae-df93-4ba6-951e-5ca5fe0fc4a0", "descendantuuid": "f0394d0f-0314-4cc2-b77b-412362610ee8", "grantedbyroleuuid": null, "grantedbytriggerof": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', '7761056f-60a1-4981-a45f-55097922cfcb', 'INSERT', '{"bic": "GENODEF1HH2", "iban": "DE37500105177419788228", "uuid": "7761056f-60a1-4981-a45f-55097922cfcb", "holder": "Michael Mellis", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'INSERT', '{"uuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a", "serialid": 139, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '0f4bdccc-973c-4465-9692-110165157e47', 'INSERT', '{"uuid": "0f4bdccc-973c-4465-9692-110165157e47", "roletype": "OWNER", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3', 'INSERT', '{"op": "DELETE", "uuid": "3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '3de7e0d1-a1b4-4214-be54-142aabeef335', 'INSERT', '{"uuid": "3de7e0d1-a1b4-4214-be54-142aabeef335", "assumed": true, "ascendantuuid": "0f4bdccc-973c-4465-9692-110165157e47", "descendantuuid": "3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'b0a2a605-4fc6-43c9-acb0-a99d09bfbc57', 'INSERT', '{"uuid": "b0a2a605-4fc6-43c9-acb0-a99d09bfbc57", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0f4bdccc-973c-4465-9692-110165157e47", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '336df55b-f323-4c29-a395-79f25d0df5c7', 'INSERT', '{"uuid": "336df55b-f323-4c29-a395-79f25d0df5c7", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0f4bdccc-973c-4465-9692-110165157e47", "grantedbyroleuuid": "0f4bdccc-973c-4465-9692-110165157e47", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '07cea3ae-e400-49b3-bf50-8653f7d4d0bf', 'INSERT', '{"uuid": "07cea3ae-e400-49b3-bf50-8653f7d4d0bf", "roletype": "ADMIN", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '21cce335-ee2c-474a-934f-0f8a264be7ab', 'INSERT', '{"op": "UPDATE", "uuid": "21cce335-ee2c-474a-934f-0f8a264be7ab", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'b52638e1-25a5-400a-8b05-d8cf6683190e', 'INSERT', '{"uuid": "b52638e1-25a5-400a-8b05-d8cf6683190e", "assumed": true, "ascendantuuid": "07cea3ae-e400-49b3-bf50-8653f7d4d0bf", "descendantuuid": "21cce335-ee2c-474a-934f-0f8a264be7ab", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'b08ffa62-b3bb-4f2f-8cbb-700111f8d112', 'INSERT', '{"uuid": "b08ffa62-b3bb-4f2f-8cbb-700111f8d112", "assumed": true, "ascendantuuid": "0f4bdccc-973c-4465-9692-110165157e47", "descendantuuid": "07cea3ae-e400-49b3-bf50-8653f7d4d0bf", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'f843e0df-6c28-4d29-bfce-0dce1e8220ba', 'INSERT', '{"uuid": "f843e0df-6c28-4d29-bfce-0dce1e8220ba", "roletype": "REFERRER", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '73c78c16-6eb7-4874-9487-fa9cb9414be9', 'INSERT', '{"op": "SELECT", "uuid": "73c78c16-6eb7-4874-9487-fa9cb9414be9", "objectuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '7e5cd561-ba8e-4dfd-b345-9f9612f71ce0', 'INSERT', '{"uuid": "7e5cd561-ba8e-4dfd-b345-9f9612f71ce0", "assumed": true, "ascendantuuid": "f843e0df-6c28-4d29-bfce-0dce1e8220ba", "descendantuuid": "73c78c16-6eb7-4874-9487-fa9cb9414be9", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'f12146ab-8cfc-4be6-850a-e0144f844008', 'INSERT', '{"uuid": "f12146ab-8cfc-4be6-850a-e0144f844008", "assumed": true, "ascendantuuid": "07cea3ae-e400-49b3-bf50-8653f7d4d0bf", "descendantuuid": "f843e0df-6c28-4d29-bfce-0dce1e8220ba", "grantedbyroleuuid": null, "grantedbytriggerof": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'INSERT', '{"bic": "NOLADE21WHO", "iban": "DE49500105174516484892", "uuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a", "holder": "Wasserwerk Suedholstein", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'INSERT', '{"uuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337", "serialid": 140, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', 'INSERT', '{"uuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "roletype": "OWNER", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'c3681b32-5274-48e8-babe-b8a7577b1999', 'INSERT', '{"op": "DELETE", "uuid": "c3681b32-5274-48e8-babe-b8a7577b1999", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'a4439e95-ce59-4308-9d26-75a5e3fa26d9', 'INSERT', '{"uuid": "a4439e95-ce59-4308-9d26-75a5e3fa26d9", "assumed": true, "ascendantuuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "descendantuuid": "c3681b32-5274-48e8-babe-b8a7577b1999", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '0a5c7cd5-8902-487c-b510-b81a5ef7d848', 'INSERT', '{"uuid": "0a5c7cd5-8902-487c-b510-b81a5ef7d848", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '832e207d-f1f1-482f-9987-fe27daad5af6', 'INSERT', '{"uuid": "832e207d-f1f1-482f-9987-fe27daad5af6", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "grantedbyroleuuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '4d60a0ec-e76a-4f0e-896a-56aa061b60a6', 'INSERT', '{"uuid": "4d60a0ec-e76a-4f0e-896a-56aa061b60a6", "roletype": "ADMIN", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'c503eb92-c2d2-46b8-adcf-cd84d92e9eb3', 'INSERT', '{"op": "UPDATE", "uuid": "c503eb92-c2d2-46b8-adcf-cd84d92e9eb3", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '51292c45-c1a1-4f9c-868b-ff81f16c78b5', 'INSERT', '{"uuid": "51292c45-c1a1-4f9c-868b-ff81f16c78b5", "assumed": true, "ascendantuuid": "4d60a0ec-e76a-4f0e-896a-56aa061b60a6", "descendantuuid": "c503eb92-c2d2-46b8-adcf-cd84d92e9eb3", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'b2f20bc4-a74d-4b03-8637-da43c1ab2823', 'INSERT', '{"uuid": "b2f20bc4-a74d-4b03-8637-da43c1ab2823", "assumed": true, "ascendantuuid": "0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6", "descendantuuid": "4d60a0ec-e76a-4f0e-896a-56aa061b60a6", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '2203cdf2-5069-406b-87f0-6e600142edd8', 'INSERT', '{"uuid": "2203cdf2-5069-406b-87f0-6e600142edd8", "roletype": "REFERRER", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca', 'INSERT', '{"op": "SELECT", "uuid": "3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca", "objectuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '82fe742e-d711-48f2-8d63-7bd8c727d032', 'INSERT', '{"uuid": "82fe742e-d711-48f2-8d63-7bd8c727d032", "assumed": true, "ascendantuuid": "2203cdf2-5069-406b-87f0-6e600142edd8", "descendantuuid": "3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'a27edb37-ea08-4d1b-9527-d60ca543309e', 'INSERT', '{"uuid": "a27edb37-ea08-4d1b-9527-d60ca543309e", "assumed": true, "ascendantuuid": "4d60a0ec-e76a-4f0e-896a-56aa061b60a6", "descendantuuid": "2203cdf2-5069-406b-87f0-6e600142edd8", "grantedbyroleuuid": null, "grantedbytriggerof": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'INSERT', '{"bic": "COBADEFFXXX", "iban": "DE89370400440532013000", "uuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337", "holder": "Richard Wiese Das Perfekte Haus", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'INSERT', '{"uuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5", "serialid": 141, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', 'INSERT', '{"uuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "roletype": "OWNER", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '04c59a4f-0eb8-4812-82b3-663f3a084c65', 'INSERT', '{"op": "DELETE", "uuid": "04c59a4f-0eb8-4812-82b3-663f3a084c65", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '6f738286-8e0d-4124-b4e6-795d50e3b6ea', 'INSERT', '{"uuid": "6f738286-8e0d-4124-b4e6-795d50e3b6ea", "assumed": true, "ascendantuuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "descendantuuid": "04c59a4f-0eb8-4812-82b3-663f3a084c65", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'ba5cae18-1e95-4522-a780-6a4eafcd6eb9', 'INSERT', '{"uuid": "ba5cae18-1e95-4522-a780-6a4eafcd6eb9", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '1bb9244e-8862-46a7-a74c-80e4e1d292ec', 'INSERT', '{"uuid": "1bb9244e-8862-46a7-a74c-80e4e1d292ec", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "grantedbyroleuuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'f9a40c25-3b07-4043-90fb-ac2826818923', 'INSERT', '{"uuid": "f9a40c25-3b07-4043-90fb-ac2826818923", "roletype": "ADMIN", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '2959d438-b8bb-43f9-b70b-dd40951fca4f', 'INSERT', '{"op": "UPDATE", "uuid": "2959d438-b8bb-43f9-b70b-dd40951fca4f", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '6e40f806-cd63-49b9-a1b3-d83663f27d53', 'INSERT', '{"uuid": "6e40f806-cd63-49b9-a1b3-d83663f27d53", "assumed": true, "ascendantuuid": "f9a40c25-3b07-4043-90fb-ac2826818923", "descendantuuid": "2959d438-b8bb-43f9-b70b-dd40951fca4f", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '56e9ea61-c685-4108-926b-c55adf34dc7b', 'INSERT', '{"uuid": "56e9ea61-c685-4108-926b-c55adf34dc7b", "assumed": true, "ascendantuuid": "f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6", "descendantuuid": "f9a40c25-3b07-4043-90fb-ac2826818923", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '22be1e9a-65f6-4c35-8b28-39dc7982770f', 'INSERT', '{"uuid": "22be1e9a-65f6-4c35-8b28-39dc7982770f", "roletype": "REFERRER", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'cd189b0e-6c05-405a-b560-d0c75937e2d8', 'INSERT', '{"op": "SELECT", "uuid": "cd189b0e-6c05-405a-b560-d0c75937e2d8", "objectuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '511f8430-3c93-4c56-bc5f-a0cd189a03ce', 'INSERT', '{"uuid": "511f8430-3c93-4c56-bc5f-a0cd189a03ce", "assumed": true, "ascendantuuid": "22be1e9a-65f6-4c35-8b28-39dc7982770f", "descendantuuid": "cd189b0e-6c05-405a-b560-d0c75937e2d8", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '6c3f3f1f-e09b-4b13-9f4a-690cc037cf69', 'INSERT', '{"uuid": "6c3f3f1f-e09b-4b13-9f4a-690cc037cf69", "assumed": true, "ascendantuuid": "f9a40c25-3b07-4043-90fb-ac2826818923", "descendantuuid": "22be1e9a-65f6-4c35-8b28-39dc7982770f", "grantedbyroleuuid": null, "grantedbytriggerof": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'INSERT', '{"bic": "INGDDEFFXXX", "iban": "DE37500105177419788228", "uuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5", "holder": "Michael Mellis", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', '0e352061-8280-491d-9125-d1547e3662f8', 'INSERT', '{"uuid": "0e352061-8280-491d-9125-d1547e3662f8", "serialid": 142, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '0cd1afc1-d446-425d-8f2e-10982a72bcf5', 'INSERT', '{"uuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "roletype": "OWNER", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '4728de28-7e67-4cca-80c0-6221bb0cb4b3', 'INSERT', '{"op": "DELETE", "uuid": "4728de28-7e67-4cca-80c0-6221bb0cb4b3", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '0f12388e-7167-450e-a309-7b0951faec0e', 'INSERT', '{"uuid": "0f12388e-7167-450e-a309-7b0951faec0e", "assumed": true, "ascendantuuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "descendantuuid": "4728de28-7e67-4cca-80c0-6221bb0cb4b3", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '933f96cf-f1b9-441c-ab7e-5ca7b6bff52d', 'INSERT', '{"uuid": "933f96cf-f1b9-441c-ab7e-5ca7b6bff52d", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '0f94b6bc-835a-4d81-a61e-17119f2f89a1', 'INSERT', '{"uuid": "0f94b6bc-835a-4d81-a61e-17119f2f89a1", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "grantedbyroleuuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '5b835d54-b474-480d-96a4-668e762a5c15', 'INSERT', '{"uuid": "5b835d54-b474-480d-96a4-668e762a5c15", "roletype": "ADMIN", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', 'a386961b-e8c0-4e7d-98c4-3e983a2d8d1f', 'INSERT', '{"op": "UPDATE", "uuid": "a386961b-e8c0-4e7d-98c4-3e983a2d8d1f", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '3166eb9d-a068-4fed-9291-896b263bb425', 'INSERT', '{"uuid": "3166eb9d-a068-4fed-9291-896b263bb425", "assumed": true, "ascendantuuid": "5b835d54-b474-480d-96a4-668e762a5c15", "descendantuuid": "a386961b-e8c0-4e7d-98c4-3e983a2d8d1f", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '73a3210a-e9bb-4a3d-8454-2bc929d90a89', 'INSERT', '{"uuid": "73a3210a-e9bb-4a3d-8454-2bc929d90a89", "assumed": true, "ascendantuuid": "0cd1afc1-d446-425d-8f2e-10982a72bcf5", "descendantuuid": "5b835d54-b474-480d-96a4-668e762a5c15", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', 'INSERT', '{"uuid": "3b5bb3e5-0965-4129-8d2e-6d3d09a64c60", "roletype": "REFERRER", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '82638ccd-1407-47aa-8918-3a1329d6b038', 'INSERT', '{"op": "SELECT", "uuid": "82638ccd-1407-47aa-8918-3a1329d6b038", "objectuuid": "0e352061-8280-491d-9125-d1547e3662f8", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'e68a7757-2c5e-4259-9087-29c6d2e58a44', 'INSERT', '{"uuid": "e68a7757-2c5e-4259-9087-29c6d2e58a44", "assumed": true, "ascendantuuid": "3b5bb3e5-0965-4129-8d2e-6d3d09a64c60", "descendantuuid": "82638ccd-1407-47aa-8918-3a1329d6b038", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'a896be90-e18d-4229-9234-5700fa68e3a9', 'INSERT', '{"uuid": "a896be90-e18d-4229-9234-5700fa68e3a9", "assumed": true, "ascendantuuid": "5b835d54-b474-480d-96a4-668e762a5c15", "descendantuuid": "3b5bb3e5-0965-4129-8d2e-6d3d09a64c60", "grantedbyroleuuid": null, "grantedbytriggerof": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', '0e352061-8280-491d-9125-d1547e3662f8', 'INSERT', '{"bic": "CMCIDEDD", "iban": "DE02300209000106531065", "uuid": "0e352061-8280-491d-9125-d1547e3662f8", "holder": "JM e.K.", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.object', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'INSERT', '{"uuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0", "serialid": 143, "objecttable": "hs_office.bankaccount"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', 'd15aa4b2-c357-4a70-85a6-5c997a88356c', 'INSERT', '{"uuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "roletype": "OWNER", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '5e780b12-da7a-4fcb-a760-cea6abdab8b0', 'INSERT', '{"op": "DELETE", "uuid": "5e780b12-da7a-4fcb-a760-cea6abdab8b0", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'f7f5fb86-c0f6-4920-ae8b-146671f3f53d', 'INSERT', '{"uuid": "f7f5fb86-c0f6-4920-ae8b-146671f3f53d", "assumed": true, "ascendantuuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "descendantuuid": "5e780b12-da7a-4fcb-a760-cea6abdab8b0", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'e0a9916a-b36a-4f63-9fbd-49f32e45efee', 'INSERT', '{"uuid": "e0a9916a-b36a-4f63-9fbd-49f32e45efee", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'ed4f4dc4-bce4-4a37-90fa-10159b6f9c35', 'INSERT', '{"uuid": "ed4f4dc4-bce4-4a37-90fa-10159b6f9c35", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "grantedbyroleuuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', 'INSERT', '{"uuid": "7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2", "roletype": "ADMIN", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '32ac9ba4-2a55-44b0-b636-e69d71a16cb6', 'INSERT', '{"op": "UPDATE", "uuid": "32ac9ba4-2a55-44b0-b636-e69d71a16cb6", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '666f6075-56a3-49c5-82e8-25356e980c3b', 'INSERT', '{"uuid": "666f6075-56a3-49c5-82e8-25356e980c3b", "assumed": true, "ascendantuuid": "7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2", "descendantuuid": "32ac9ba4-2a55-44b0-b636-e69d71a16cb6", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', '38985a04-5f18-48ba-b7cb-ab73449f092c', 'INSERT', '{"uuid": "38985a04-5f18-48ba-b7cb-ab73449f092c", "assumed": true, "ascendantuuid": "d15aa4b2-c357-4a70-85a6-5c997a88356c", "descendantuuid": "7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.role', '33999dfe-271e-493a-a577-7d698ab46d63', 'INSERT', '{"uuid": "33999dfe-271e-493a-a577-7d698ab46d63", "roletype": "REFERRER", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.permission', '49975049-a2fc-4567-b65a-ff15d2482dee', 'INSERT', '{"op": "SELECT", "uuid": "49975049-a2fc-4567-b65a-ff15d2482dee", "objectuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'b19425a9-93e4-46ad-b4f5-4ac0a3dccfd4', 'INSERT', '{"uuid": "b19425a9-93e4-46ad-b4f5-4ac0a3dccfd4", "assumed": true, "ascendantuuid": "33999dfe-271e-493a-a577-7d698ab46d63", "descendantuuid": "49975049-a2fc-4567-b65a-ff15d2482dee", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'rbac.grant', 'c323a1ed-bdf3-4597-bfe6-4e46d2cbfb43', 'INSERT', '{"uuid": "c323a1ed-bdf3-4597-bfe6-4e46d2cbfb43", "assumed": true, "ascendantuuid": "7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2", "descendantuuid": "33999dfe-271e-493a-a577-7d698ab46d63", "grantedbyroleuuid": null, "grantedbytriggerof": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1637', 'hs_office.bankaccount', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'INSERT', '{"bic": "INGDDEFFXXX", "iban": "DE49500105174516484892", "uuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0", "holder": "JM GmbH", "version": 0}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '41226c0f-ba77-41de-b709-9cddf9a77eb3', 'INSERT', '{"uuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "roletype": "OWNER", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '33368a0e-8458-4363-96b7-5140595e06e4', 'INSERT', '{"op": "DELETE", "uuid": "33368a0e-8458-4363-96b7-5140595e06e4", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '3f828e80-b839-4c00-a99a-e9f25cb2e283', 'INSERT', '{"uuid": "3f828e80-b839-4c00-a99a-e9f25cb2e283", "assumed": true, "ascendantuuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "descendantuuid": "33368a0e-8458-4363-96b7-5140595e06e4", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'd1abe0b7-d563-4079-aa08-75f0690c533d', 'INSERT', '{"uuid": "d1abe0b7-d563-4079-aa08-75f0690c533d", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '0547a1f2-1e85-4abe-b4c7-c6443aa52571', 'INSERT', '{"uuid": "0547a1f2-1e85-4abe-b4c7-c6443aa52571", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "grantedbyroleuuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '89eccc8e-de06-4a87-ba5e-1fa50e6daad0', 'INSERT', '{"uuid": "89eccc8e-de06-4a87-ba5e-1fa50e6daad0", "roletype": "ADMIN", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '40bce91b-955c-4802-ae87-8dd5d7c4a156', 'INSERT', '{"op": "UPDATE", "uuid": "40bce91b-955c-4802-ae87-8dd5d7c4a156", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '7d8081c3-433a-443c-a42f-9530c131f2a2', 'INSERT', '{"uuid": "7d8081c3-433a-443c-a42f-9530c131f2a2", "assumed": true, "ascendantuuid": "89eccc8e-de06-4a87-ba5e-1fa50e6daad0", "descendantuuid": "40bce91b-955c-4802-ae87-8dd5d7c4a156", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '74913b02-b9dd-46da-b5d8-af694fd2cd5b', 'INSERT', '{"uuid": "74913b02-b9dd-46da-b5d8-af694fd2cd5b", "assumed": true, "ascendantuuid": "41226c0f-ba77-41de-b709-9cddf9a77eb3", "descendantuuid": "89eccc8e-de06-4a87-ba5e-1fa50e6daad0", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'c12aea38-955c-4577-91b8-bb520d4b9579', 'INSERT', '{"uuid": "c12aea38-955c-4577-91b8-bb520d4b9579", "roletype": "AGENT", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '0b62a424-bf42-4239-b6af-f54d68ec3c8e', 'INSERT', '{"uuid": "0b62a424-bf42-4239-b6af-f54d68ec3c8e", "assumed": true, "ascendantuuid": "89eccc8e-de06-4a87-ba5e-1fa50e6daad0", "descendantuuid": "c12aea38-955c-4577-91b8-bb520d4b9579", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ddac40af-e4cf-4e7c-902d-8d6bbbaa15bf', 'INSERT', '{"uuid": "ddac40af-e4cf-4e7c-902d-8d6bbbaa15bf", "assumed": true, "ascendantuuid": "c12aea38-955c-4577-91b8-bb520d4b9579", "descendantuuid": "180970e6-4774-43ba-be24-92cc46a1e9f7", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '67407a51-6fe5-48dd-b33c-00de92d64025', 'INSERT', '{"uuid": "67407a51-6fe5-48dd-b33c-00de92d64025", "assumed": true, "ascendantuuid": "c12aea38-955c-4577-91b8-bb520d4b9579", "descendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', 'INSERT', '{"uuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "roletype": "REFERRER", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '92961c95-a80e-4032-9eb0-2a8f7757a422', 'INSERT', '{"op": "SELECT", "uuid": "92961c95-a80e-4032-9eb0-2a8f7757a422", "objectuuid": "23731ee7-5762-4c61-b825-d19a31217388", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '02737fef-9ca4-42a6-a29b-e881ba75be39', 'INSERT', '{"uuid": "02737fef-9ca4-42a6-a29b-e881ba75be39", "assumed": true, "ascendantuuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "descendantuuid": "92961c95-a80e-4032-9eb0-2a8f7757a422", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'da2c523a-4aff-474e-a328-4401efb9754e', 'INSERT', '{"uuid": "da2c523a-4aff-474e-a328-4401efb9754e", "assumed": true, "ascendantuuid": "1c0c395e-a062-423c-b153-d17fcfdc42f8", "descendantuuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '00c413f5-6898-47d2-88a7-463fe8fef360', 'INSERT', '{"uuid": "00c413f5-6898-47d2-88a7-463fe8fef360", "assumed": true, "ascendantuuid": "27f136ee-b3fa-4aa7-8806-45e856c2c56c", "descendantuuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '2d0c80bd-f561-45e4-88cd-093975fd04b9', 'INSERT', '{"uuid": "2d0c80bd-f561-45e4-88cd-093975fd04b9", "assumed": true, "ascendantuuid": "c12aea38-955c-4577-91b8-bb520d4b9579", "descendantuuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '1964598c-1263-45a9-9ae3-5e7fa27f09cd', 'INSERT', '{"uuid": "1964598c-1263-45a9-9ae3-5e7fa27f09cd", "assumed": true, "ascendantuuid": "4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a", "descendantuuid": "6b3fba1a-8703-476d-b6d4-077e0e94cdc6", "grantedbyroleuuid": null, "grantedbytriggerof": "23731ee7-5762-4c61-b825-d19a31217388"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', '23731ee7-5762-4c61-b825-d19a31217388', 'INSERT', '{"uuid": "23731ee7-5762-4c61-b825-d19a31217388", "version": 0, "validity": "[2013-12-01,2016-02-16)", "agreement": "2013-12-01", "reference": "HS-10152-20140801", "debitoruuid": "6191fa62-0cc3-4172-9696-4145049b64ce", "bankaccountuuid": "29a29c04-ddf1-45d7-b0be-d089bd41cfc8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'INSERT', '{"uuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88", "serialid": 145, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '5c012fc1-4d66-4247-b453-c318437c486e', 'INSERT', '{"uuid": "5c012fc1-4d66-4247-b453-c318437c486e", "roletype": "OWNER", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', 'b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5', 'INSERT', '{"op": "DELETE", "uuid": "b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '8f3a32d7-9fca-4131-8460-8225a5ad813a', 'INSERT', '{"uuid": "8f3a32d7-9fca-4131-8460-8225a5ad813a", "assumed": true, "ascendantuuid": "5c012fc1-4d66-4247-b453-c318437c486e", "descendantuuid": "b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ecb9208e-f85a-44e5-9080-18d3e0d724b2', 'INSERT', '{"uuid": "ecb9208e-f85a-44e5-9080-18d3e0d724b2", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "5c012fc1-4d66-4247-b453-c318437c486e", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'dfeead95-38b4-418f-b253-b9920900d268', 'INSERT', '{"uuid": "dfeead95-38b4-418f-b253-b9920900d268", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "5c012fc1-4d66-4247-b453-c318437c486e", "grantedbyroleuuid": "5c012fc1-4d66-4247-b453-c318437c486e", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', 'INSERT', '{"uuid": "fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a", "roletype": "ADMIN", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '13eda7e6-0b66-4978-8153-135556382aa9', 'INSERT', '{"op": "UPDATE", "uuid": "13eda7e6-0b66-4978-8153-135556382aa9", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ad945283-0fd0-4c90-a663-f48dc2412f02', 'INSERT', '{"uuid": "ad945283-0fd0-4c90-a663-f48dc2412f02", "assumed": true, "ascendantuuid": "fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a", "descendantuuid": "13eda7e6-0b66-4978-8153-135556382aa9", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'bcf153a7-2bc9-4b31-8fab-682138cd083d', 'INSERT', '{"uuid": "bcf153a7-2bc9-4b31-8fab-682138cd083d", "assumed": true, "ascendantuuid": "5c012fc1-4d66-4247-b453-c318437c486e", "descendantuuid": "fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', 'INSERT', '{"uuid": "9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6", "roletype": "AGENT", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'b223f01c-5411-49f2-97cb-856f3dff12c3', 'INSERT', '{"uuid": "b223f01c-5411-49f2-97cb-856f3dff12c3", "assumed": true, "ascendantuuid": "fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a", "descendantuuid": "9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'bdf920dd-365b-44e9-a5fc-2f1b024f5c4a', 'INSERT', '{"uuid": "bdf920dd-365b-44e9-a5fc-2f1b024f5c4a", "assumed": true, "ascendantuuid": "9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6", "descendantuuid": "f0394d0f-0314-4cc2-b77b-412362610ee8", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '95880c77-bde9-4b3a-8150-2eb537a8f03d', 'INSERT', '{"uuid": "95880c77-bde9-4b3a-8150-2eb537a8f03d", "assumed": true, "ascendantuuid": "9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6", "descendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', 'INSERT', '{"uuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "roletype": "REFERRER", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '0ba3f775-77c5-4c10-998c-b340b3ce8f98', 'INSERT', '{"op": "SELECT", "uuid": "0ba3f775-77c5-4c10-998c-b340b3ce8f98", "objectuuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '040aa792-5ee3-4646-939b-5913093590af', 'INSERT', '{"uuid": "040aa792-5ee3-4646-939b-5913093590af", "assumed": true, "ascendantuuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "descendantuuid": "0ba3f775-77c5-4c10-998c-b340b3ce8f98", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'beb62dae-43bc-49c1-9eeb-1a1120511698', 'INSERT', '{"uuid": "beb62dae-43bc-49c1-9eeb-1a1120511698", "assumed": true, "ascendantuuid": "70474bae-df93-4ba6-951e-5ca5fe0fc4a0", "descendantuuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '5143dc80-6e1d-4bbd-9917-1eba9e681b6e', 'INSERT', '{"uuid": "5143dc80-6e1d-4bbd-9917-1eba9e681b6e", "assumed": true, "ascendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "descendantuuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '8b31b263-f1d3-4fb3-9516-1fdf475c0cc6', 'INSERT', '{"uuid": "8b31b263-f1d3-4fb3-9516-1fdf475c0cc6", "assumed": true, "ascendantuuid": "9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6", "descendantuuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'fe0aff2a-b648-4110-b532-1a4346d6fa5c', 'INSERT', '{"uuid": "fe0aff2a-b648-4110-b532-1a4346d6fa5c", "assumed": true, "ascendantuuid": "19b377d6-3ffc-481f-a7e5-9ac48e47d16f", "descendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "grantedbyroleuuid": null, "grantedbytriggerof": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'INSERT', '{"uuid": "b60fcf6e-d16e-47d8-a3e4-9c55903f8c88", "version": 0, "validity": "[2013-12-01,)", "agreement": "2013-12-01", "reference": "HS-10003-20140801", "debitoruuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "bankaccountuuid": "7761056f-60a1-4981-a45f-55097922cfcb"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', 'a41933db-1aac-4207-a8be-1e90621d834a', 'INSERT', '{"uuid": "a41933db-1aac-4207-a8be-1e90621d834a", "serialid": 146, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', 'INSERT', '{"uuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "roletype": "OWNER", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '9ee7ec80-9893-48fa-a177-90538b8b66a5', 'INSERT', '{"op": "DELETE", "uuid": "9ee7ec80-9893-48fa-a177-90538b8b66a5", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'e3fd7b9b-e62f-4961-8262-81cafe2148c8', 'INSERT', '{"uuid": "e3fd7b9b-e62f-4961-8262-81cafe2148c8", "assumed": true, "ascendantuuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "descendantuuid": "9ee7ec80-9893-48fa-a177-90538b8b66a5", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ded429d2-5319-465f-98e7-04351a7b79c8', 'INSERT', '{"uuid": "ded429d2-5319-465f-98e7-04351a7b79c8", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '5b60167e-92b2-4afb-a9b6-e4e186e702ed', 'INSERT', '{"uuid": "5b60167e-92b2-4afb-a9b6-e4e186e702ed", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "grantedbyroleuuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '9c564fe3-deb7-434f-95c1-948c62421c70', 'INSERT', '{"uuid": "9c564fe3-deb7-434f-95c1-948c62421c70", "roletype": "ADMIN", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '6e151961-36ac-47e3-8094-571cf2bf94e1', 'INSERT', '{"op": "UPDATE", "uuid": "6e151961-36ac-47e3-8094-571cf2bf94e1", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '002ef660-f1ea-4808-9d5e-07945f3f573b', 'INSERT', '{"uuid": "002ef660-f1ea-4808-9d5e-07945f3f573b", "assumed": true, "ascendantuuid": "9c564fe3-deb7-434f-95c1-948c62421c70", "descendantuuid": "6e151961-36ac-47e3-8094-571cf2bf94e1", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '0657361d-e01c-478b-b6dc-7b5672c4d090', 'INSERT', '{"uuid": "0657361d-e01c-478b-b6dc-7b5672c4d090", "assumed": true, "ascendantuuid": "98d32fbb-e9d2-4b7c-be28-78849d7efa9f", "descendantuuid": "9c564fe3-deb7-434f-95c1-948c62421c70", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'b73eaf37-bae8-4421-b5b8-9073a14a8a74', 'INSERT', '{"uuid": "b73eaf37-bae8-4421-b5b8-9073a14a8a74", "roletype": "AGENT", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '1ff36364-1e09-4fcb-b008-22a9f664d1eb', 'INSERT', '{"op": "SELECT", "uuid": "1ff36364-1e09-4fcb-b008-22a9f664d1eb", "objectuuid": "ace9fec5-5880-4e30-96ea-b843d7001d83", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ca8f9324-4e76-4c66-9bb9-a3e2be4f9b49', 'INSERT', '{"uuid": "ca8f9324-4e76-4c66-9bb9-a3e2be4f9b49", "assumed": true, "ascendantuuid": "9c564fe3-deb7-434f-95c1-948c62421c70", "descendantuuid": "b73eaf37-bae8-4421-b5b8-9073a14a8a74", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'bc13f0fe-e57e-4f93-a59b-011fe8d2c8e8', 'INSERT', '{"uuid": "bc13f0fe-e57e-4f93-a59b-011fe8d2c8e8", "assumed": true, "ascendantuuid": "b73eaf37-bae8-4421-b5b8-9073a14a8a74", "descendantuuid": "f843e0df-6c28-4d29-bfce-0dce1e8220ba", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'e9f44a6c-5736-4169-9970-435331820814', 'INSERT', '{"uuid": "e9f44a6c-5736-4169-9970-435331820814", "assumed": true, "ascendantuuid": "b73eaf37-bae8-4421-b5b8-9073a14a8a74", "descendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '3b727500-318d-41eb-8a8e-5d71604a2cee', 'INSERT', '{"uuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "roletype": "REFERRER", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', 'bae797f4-38a0-4a9f-b285-692472190900', 'INSERT', '{"op": "SELECT", "uuid": "bae797f4-38a0-4a9f-b285-692472190900", "objectuuid": "a41933db-1aac-4207-a8be-1e90621d834a", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'aa6c8de9-6b71-4ee3-abb8-889177e99e37', 'INSERT', '{"uuid": "aa6c8de9-6b71-4ee3-abb8-889177e99e37", "assumed": true, "ascendantuuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "descendantuuid": "bae797f4-38a0-4a9f-b285-692472190900", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'a9a3b412-aab5-48dc-b9c1-7f6771220191', 'INSERT', '{"uuid": "a9a3b412-aab5-48dc-b9c1-7f6771220191", "assumed": true, "ascendantuuid": "07cea3ae-e400-49b3-bf50-8653f7d4d0bf", "descendantuuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '6efb1679-d0fb-411b-9015-a8a3cb60c339', 'INSERT', '{"uuid": "6efb1679-d0fb-411b-9015-a8a3cb60c339", "assumed": true, "ascendantuuid": "133d043e-f9e7-462d-9519-1ae05a47a1be", "descendantuuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '79589c8d-515b-4e19-bf63-a5fe732bb7d6', 'INSERT', '{"uuid": "79589c8d-515b-4e19-bf63-a5fe732bb7d6", "assumed": true, "ascendantuuid": "b73eaf37-bae8-4421-b5b8-9073a14a8a74", "descendantuuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '25c59829-d191-4b13-b35a-a1b477443799', 'INSERT', '{"uuid": "25c59829-d191-4b13-b35a-a1b477443799", "assumed": true, "ascendantuuid": "3b727500-318d-41eb-8a8e-5d71604a2cee", "descendantuuid": "ac14c959-2f96-4fbd-9970-87a2b07dff95", "grantedbyroleuuid": null, "grantedbytriggerof": "a41933db-1aac-4207-a8be-1e90621d834a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', 'a41933db-1aac-4207-a8be-1e90621d834a', 'INSERT', '{"uuid": "a41933db-1aac-4207-a8be-1e90621d834a", "version": 0, "validity": "[2021-05-17,)", "agreement": "2021-05-12", "reference": "HS-11018-20210512", "debitoruuid": "eab4b615-a7ab-438d-953d-b5da6485baa4", "bankaccountuuid": "ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'INSERT', '{"uuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56", "serialid": 147, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '1f9f0c05-8408-46f5-a02e-48dc02568dca', 'INSERT', '{"uuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "roletype": "OWNER", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '07cad025-9a71-410c-b80f-30258a65d0d4', 'INSERT', '{"op": "DELETE", "uuid": "07cad025-9a71-410c-b80f-30258a65d0d4", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'bbea7beb-6d73-4419-90d2-b60612ba1940', 'INSERT', '{"uuid": "bbea7beb-6d73-4419-90d2-b60612ba1940", "assumed": true, "ascendantuuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "descendantuuid": "07cad025-9a71-410c-b80f-30258a65d0d4", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '7c51b78f-2b2b-458f-a3cf-4cb65ebbc4a4', 'INSERT', '{"uuid": "7c51b78f-2b2b-458f-a3cf-4cb65ebbc4a4", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '5a5c0b96-0aa4-4347-8ad2-0ec1e8561213', 'INSERT', '{"uuid": "5a5c0b96-0aa4-4347-8ad2-0ec1e8561213", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "grantedbyroleuuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'a139736b-5ae1-4b92-912f-b1fdcf04bbf5', 'INSERT', '{"uuid": "a139736b-5ae1-4b92-912f-b1fdcf04bbf5", "roletype": "ADMIN", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '2e3acc28-cb00-466b-8128-317d0eb56915', 'INSERT', '{"op": "UPDATE", "uuid": "2e3acc28-cb00-466b-8128-317d0eb56915", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '370db5fb-10e8-464b-b332-46606369059e', 'INSERT', '{"uuid": "370db5fb-10e8-464b-b332-46606369059e", "assumed": true, "ascendantuuid": "a139736b-5ae1-4b92-912f-b1fdcf04bbf5", "descendantuuid": "2e3acc28-cb00-466b-8128-317d0eb56915", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '62f84e53-0c12-4c71-bad3-40bd17671413', 'INSERT', '{"uuid": "62f84e53-0c12-4c71-bad3-40bd17671413", "assumed": true, "ascendantuuid": "1f9f0c05-8408-46f5-a02e-48dc02568dca", "descendantuuid": "a139736b-5ae1-4b92-912f-b1fdcf04bbf5", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '2cb21268-8efd-4310-9230-4a84852e79de', 'INSERT', '{"uuid": "2cb21268-8efd-4310-9230-4a84852e79de", "roletype": "AGENT", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '746f1a33-e8f4-4561-9cd7-fbd1ed476712', 'INSERT', '{"uuid": "746f1a33-e8f4-4561-9cd7-fbd1ed476712", "assumed": true, "ascendantuuid": "a139736b-5ae1-4b92-912f-b1fdcf04bbf5", "descendantuuid": "2cb21268-8efd-4310-9230-4a84852e79de", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '8c658ed6-b7a0-41ca-a868-594c8d598bb6', 'INSERT', '{"uuid": "8c658ed6-b7a0-41ca-a868-594c8d598bb6", "assumed": true, "ascendantuuid": "2cb21268-8efd-4310-9230-4a84852e79de", "descendantuuid": "2203cdf2-5069-406b-87f0-6e600142edd8", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '5cf65e65-b92b-4519-be26-98f7d8728237', 'INSERT', '{"uuid": "5cf65e65-b92b-4519-be26-98f7d8728237", "assumed": true, "ascendantuuid": "2cb21268-8efd-4310-9230-4a84852e79de", "descendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '7133241d-d238-495f-96c2-bff68b98065f', 'INSERT', '{"uuid": "7133241d-d238-495f-96c2-bff68b98065f", "roletype": "REFERRER", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '7aabf410-a7ad-4afa-8af6-0a727127e2a0', 'INSERT', '{"op": "SELECT", "uuid": "7aabf410-a7ad-4afa-8af6-0a727127e2a0", "objectuuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '75b1a5b5-2097-4cd0-92a2-1498cc2818a9', 'INSERT', '{"uuid": "75b1a5b5-2097-4cd0-92a2-1498cc2818a9", "assumed": true, "ascendantuuid": "7133241d-d238-495f-96c2-bff68b98065f", "descendantuuid": "7aabf410-a7ad-4afa-8af6-0a727127e2a0", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '4cdde7a8-9711-4d25-a939-6f3dd072c9c2', 'INSERT', '{"uuid": "4cdde7a8-9711-4d25-a939-6f3dd072c9c2", "assumed": true, "ascendantuuid": "4d60a0ec-e76a-4f0e-896a-56aa061b60a6", "descendantuuid": "7133241d-d238-495f-96c2-bff68b98065f", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'b2288be0-bd56-42b8-860d-682cb0bf4b13', 'INSERT', '{"uuid": "b2288be0-bd56-42b8-860d-682cb0bf4b13", "assumed": true, "ascendantuuid": "ece49845-4b04-434a-a12e-2e5ea1d2c241", "descendantuuid": "7133241d-d238-495f-96c2-bff68b98065f", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '546ee1e4-e3b1-458c-9c23-14a2818bb0f8', 'INSERT', '{"uuid": "546ee1e4-e3b1-458c-9c23-14a2818bb0f8", "assumed": true, "ascendantuuid": "2cb21268-8efd-4310-9230-4a84852e79de", "descendantuuid": "7133241d-d238-495f-96c2-bff68b98065f", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '0abf6db7-fa47-40c6-8521-655a695f2d08', 'INSERT', '{"uuid": "0abf6db7-fa47-40c6-8521-655a695f2d08", "assumed": true, "ascendantuuid": "7133241d-d238-495f-96c2-bff68b98065f", "descendantuuid": "3412d5e9-9e1e-470b-af39-015652349d4f", "grantedbyroleuuid": null, "grantedbytriggerof": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'INSERT', '{"uuid": "43cdf6ca-6e2d-4fa2-8615-e6a368679a56", "version": 0, "validity": "[2021-05-25,)", "agreement": "2021-05-19", "reference": "HS-11019-20210519", "debitoruuid": "50eef0ed-3045-4b45-9fa4-3d4038c626e7", "bankaccountuuid": "1ee9f29b-08b9-4651-a866-24e3c6c1f337"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'INSERT', '{"uuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075", "serialid": 148, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '88bcfc80-afa2-49fa-886f-a1e913ab448f', 'INSERT', '{"uuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "roletype": "OWNER", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '723b6dcc-04cf-4444-a95b-534bdea15e9b', 'INSERT', '{"op": "DELETE", "uuid": "723b6dcc-04cf-4444-a95b-534bdea15e9b", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'bae577b0-bf7e-4b60-9cfc-3e4e2b3ed4ac', 'INSERT', '{"uuid": "bae577b0-bf7e-4b60-9cfc-3e4e2b3ed4ac", "assumed": true, "ascendantuuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "descendantuuid": "723b6dcc-04cf-4444-a95b-534bdea15e9b", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'c17544f7-5cd8-4567-b3da-25d51c0fcc3c', 'INSERT', '{"uuid": "c17544f7-5cd8-4567-b3da-25d51c0fcc3c", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'd0218bf5-2c79-42a5-8d58-e640e9395f58', 'INSERT', '{"uuid": "d0218bf5-2c79-42a5-8d58-e640e9395f58", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "grantedbyroleuuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '8a21ac5c-af4c-46e8-8938-180d6467bec8', 'INSERT', '{"uuid": "8a21ac5c-af4c-46e8-8938-180d6467bec8", "roletype": "ADMIN", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', 'cd4715a4-96a4-4297-8660-32c2e95da604', 'INSERT', '{"op": "UPDATE", "uuid": "cd4715a4-96a4-4297-8660-32c2e95da604", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '1868fc4b-6e8e-463b-8693-bfc491b66f87', 'INSERT', '{"uuid": "1868fc4b-6e8e-463b-8693-bfc491b66f87", "assumed": true, "ascendantuuid": "8a21ac5c-af4c-46e8-8938-180d6467bec8", "descendantuuid": "cd4715a4-96a4-4297-8660-32c2e95da604", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '26213706-6c6e-4756-9649-ac1b4cbd2be2', 'INSERT', '{"uuid": "26213706-6c6e-4756-9649-ac1b4cbd2be2", "assumed": true, "ascendantuuid": "88bcfc80-afa2-49fa-886f-a1e913ab448f", "descendantuuid": "8a21ac5c-af4c-46e8-8938-180d6467bec8", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '1f10356b-7796-4761-8f7a-53bf2e82b4e8', 'INSERT', '{"uuid": "1f10356b-7796-4761-8f7a-53bf2e82b4e8", "roletype": "AGENT", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '2ef90acc-6f76-4aeb-958d-236d1cb8666c', 'INSERT', '{"uuid": "2ef90acc-6f76-4aeb-958d-236d1cb8666c", "assumed": true, "ascendantuuid": "8a21ac5c-af4c-46e8-8938-180d6467bec8", "descendantuuid": "1f10356b-7796-4761-8f7a-53bf2e82b4e8", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'e6dfb86d-b5fe-4451-b2c1-7e07237f9136', 'INSERT', '{"uuid": "e6dfb86d-b5fe-4451-b2c1-7e07237f9136", "assumed": true, "ascendantuuid": "1f10356b-7796-4761-8f7a-53bf2e82b4e8", "descendantuuid": "22be1e9a-65f6-4c35-8b28-39dc7982770f", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '5f1b8e42-a05a-4eb5-a48e-3ba294209185', 'INSERT', '{"uuid": "5f1b8e42-a05a-4eb5-a48e-3ba294209185", "assumed": true, "ascendantuuid": "1f10356b-7796-4761-8f7a-53bf2e82b4e8", "descendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '102906a0-8b36-402e-82da-1ba78bedc71f', 'INSERT', '{"uuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "roletype": "REFERRER", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '37f6ab5c-d190-4f1c-9732-da210239ae9c', 'INSERT', '{"op": "SELECT", "uuid": "37f6ab5c-d190-4f1c-9732-da210239ae9c", "objectuuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '39fa3d9f-eb11-4df5-844c-c471c1c61a8b', 'INSERT', '{"uuid": "39fa3d9f-eb11-4df5-844c-c471c1c61a8b", "assumed": true, "ascendantuuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "descendantuuid": "37f6ab5c-d190-4f1c-9732-da210239ae9c", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '26567d25-9347-416e-bd04-ddeae54e4ccf', 'INSERT', '{"uuid": "26567d25-9347-416e-bd04-ddeae54e4ccf", "assumed": true, "ascendantuuid": "f9a40c25-3b07-4043-90fb-ac2826818923", "descendantuuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '95354328-685f-4b09-b62d-43a8ea8a50a4', 'INSERT', '{"uuid": "95354328-685f-4b09-b62d-43a8ea8a50a4", "assumed": true, "ascendantuuid": "bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4", "descendantuuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '51344c24-1f7e-40b5-8eb2-19b2569453bd', 'INSERT', '{"uuid": "51344c24-1f7e-40b5-8eb2-19b2569453bd", "assumed": true, "ascendantuuid": "1f10356b-7796-4761-8f7a-53bf2e82b4e8", "descendantuuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', 'INSERT', '{"uuid": "9a9713e3-8f23-4acf-b260-234c6cd3afbe", "serialid": 162, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '8ab92329-edc5-497d-86e4-61bc4deb7d38', 'INSERT', '{"uuid": "8ab92329-edc5-497d-86e4-61bc4deb7d38", "assumed": true, "ascendantuuid": "102906a0-8b36-402e-82da-1ba78bedc71f", "descendantuuid": "85bc915b-2c1c-41de-a6ae-5a7ff1dd719b", "grantedbyroleuuid": null, "grantedbytriggerof": "2c3575e7-0ee8-414d-a7bb-f3604e526075"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'INSERT', '{"uuid": "2c3575e7-0ee8-414d-a7bb-f3604e526075", "version": 0, "validity": "[2004-06-15,)", "agreement": "2004-06-12", "reference": "MH12345", "debitoruuid": "3162b2b5-9fda-476a-94e8-4e0265758d31", "bankaccountuuid": "9a5d0728-35a4-4fed-8f48-9944255ddee5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'INSERT', '{"uuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c", "serialid": 149, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '611e8315-a98f-48b4-b284-10bcc905fa2d', 'INSERT', '{"uuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "roletype": "OWNER", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '546f844d-33bf-46de-8da5-982fb210d2ab', 'INSERT', '{"op": "DELETE", "uuid": "546f844d-33bf-46de-8da5-982fb210d2ab", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'ec4b6850-c222-4ee0-9f10-df8f3ee1ef3b', 'INSERT', '{"uuid": "ec4b6850-c222-4ee0-9f10-df8f3ee1ef3b", "assumed": true, "ascendantuuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "descendantuuid": "546f844d-33bf-46de-8da5-982fb210d2ab", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '955d6735-d592-4c28-bb0c-968a22dcb580', 'INSERT', '{"uuid": "955d6735-d592-4c28-bb0c-968a22dcb580", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '4efef6e9-1b91-41d9-91a0-5c8870e81c1b', 'INSERT', '{"uuid": "4efef6e9-1b91-41d9-91a0-5c8870e81c1b", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "grantedbyroleuuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'b772ba6a-40b5-443b-84b2-d447db62bf71', 'INSERT', '{"uuid": "b772ba6a-40b5-443b-84b2-d447db62bf71", "roletype": "ADMIN", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '9f1adce9-fe79-46cf-bf54-0e58f97556f1', 'INSERT', '{"op": "UPDATE", "uuid": "9f1adce9-fe79-46cf-bf54-0e58f97556f1", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '13f0b2f4-4f8e-44c2-a7b8-118504147386', 'INSERT', '{"uuid": "13f0b2f4-4f8e-44c2-a7b8-118504147386", "assumed": true, "ascendantuuid": "b772ba6a-40b5-443b-84b2-d447db62bf71", "descendantuuid": "9f1adce9-fe79-46cf-bf54-0e58f97556f1", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '3efc2aa5-c3b9-4eb2-a81f-f1bb82a3c484', 'INSERT', '{"uuid": "3efc2aa5-c3b9-4eb2-a81f-f1bb82a3c484", "assumed": true, "ascendantuuid": "611e8315-a98f-48b4-b284-10bcc905fa2d", "descendantuuid": "b772ba6a-40b5-443b-84b2-d447db62bf71", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '487b0fac-63eb-4188-a465-46610050184e', 'INSERT', '{"uuid": "487b0fac-63eb-4188-a465-46610050184e", "roletype": "AGENT", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '58a2591a-ffe4-43a7-9603-1fcc6ad781a6', 'INSERT', '{"uuid": "58a2591a-ffe4-43a7-9603-1fcc6ad781a6", "assumed": true, "ascendantuuid": "b772ba6a-40b5-443b-84b2-d447db62bf71", "descendantuuid": "487b0fac-63eb-4188-a465-46610050184e", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '78b66f5f-a46b-4732-80fb-98555b2ae8fa', 'INSERT', '{"uuid": "78b66f5f-a46b-4732-80fb-98555b2ae8fa", "assumed": true, "ascendantuuid": "487b0fac-63eb-4188-a465-46610050184e", "descendantuuid": "3b5bb3e5-0965-4129-8d2e-6d3d09a64c60", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '93b1b888-6aaa-4a26-8747-0574681e6a4a', 'INSERT', '{"uuid": "93b1b888-6aaa-4a26-8747-0574681e6a4a", "assumed": true, "ascendantuuid": "487b0fac-63eb-4188-a465-46610050184e", "descendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', 'INSERT', '{"uuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "roletype": "REFERRER", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '63f86482-0fdd-4dac-ac73-4b78d4442a57', 'INSERT', '{"op": "SELECT", "uuid": "63f86482-0fdd-4dac-ac73-4b78d4442a57", "objectuuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '4a338a04-d61d-4b3c-9078-e910d4ed9fd7', 'INSERT', '{"uuid": "4a338a04-d61d-4b3c-9078-e910d4ed9fd7", "assumed": true, "ascendantuuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "descendantuuid": "63f86482-0fdd-4dac-ac73-4b78d4442a57", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '7b3b27fd-cf86-4ed2-b17b-c8a1fdeca48c', 'INSERT', '{"uuid": "7b3b27fd-cf86-4ed2-b17b-c8a1fdeca48c", "assumed": true, "ascendantuuid": "5b835d54-b474-480d-96a4-668e762a5c15", "descendantuuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'c8300a18-42e5-4a85-a559-fd1c1017b4c3', 'INSERT', '{"uuid": "c8300a18-42e5-4a85-a559-fd1c1017b4c3", "assumed": true, "ascendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "descendantuuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '93f39f94-ebfc-48fa-bf19-88484928eb13', 'INSERT', '{"uuid": "93f39f94-ebfc-48fa-bf19-88484928eb13", "assumed": true, "ascendantuuid": "487b0fac-63eb-4188-a465-46610050184e", "descendantuuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '53c93593-7420-4d3d-a0f3-12f6421e98d7', 'INSERT', '{"uuid": "53c93593-7420-4d3d-a0f3-12f6421e98d7", "assumed": true, "ascendantuuid": "3949e0ac-bd4b-48fd-9094-f8eb7cddfa27", "descendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "grantedbyroleuuid": null, "grantedbytriggerof": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'INSERT', '{"uuid": "d5a9dca4-6dd4-43ea-b791-a80c27e2be9c", "version": 0, "validity": "[2004-01-20,2005-06-28)", "agreement": "2004-01-15", "reference": "JM33344", "debitoruuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "bankaccountuuid": "0e352061-8280-491d-9125-d1547e3662f8"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.object', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'INSERT', '{"uuid": "84f64b9f-3d8b-420a-b75a-782d6619028d", "serialid": 150, "objecttable": "hs_office.sepamandate"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', 'INSERT', '{"uuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "roletype": "OWNER", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', 'd0bde494-6f96-4369-98cc-82c2b633604b', 'INSERT', '{"op": "DELETE", "uuid": "d0bde494-6f96-4369-98cc-82c2b633604b", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '9542f37f-717d-4918-8985-a85b96c40e32', 'INSERT', '{"op": "SELECT", "uuid": "9542f37f-717d-4918-8985-a85b96c40e32", "objectuuid": "9a9713e3-8f23-4acf-b260-234c6cd3afbe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '868020f0-2904-4c38-aba9-8d27da7d4344', 'INSERT', '{"uuid": "868020f0-2904-4c38-aba9-8d27da7d4344", "assumed": true, "ascendantuuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "descendantuuid": "d0bde494-6f96-4369-98cc-82c2b633604b", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '1f479b11-db4b-4db6-9d64-3ff369977cf9', 'INSERT', '{"uuid": "1f479b11-db4b-4db6-9d64-3ff369977cf9", "assumed": true, "ascendantuuid": "9bd819fd-f91e-45a9-b2d5-1da33f69c33a", "descendantuuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'a78cd990-5118-448b-8910-a47a76e9c400', 'INSERT', '{"uuid": "a78cd990-5118-448b-8910-a47a76e9c400", "assumed": true, "ascendantuuid": "dcdfdea4-eec6-46fb-a006-1753a075201d", "descendantuuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "grantedbyroleuuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "grantedbytriggerof": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '2d11e79a-9df6-4d11-b192-1f7c1e25f658', 'INSERT', '{"uuid": "2d11e79a-9df6-4d11-b192-1f7c1e25f658", "roletype": "ADMIN", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', 'c990fb58-9aaa-43b8-b722-16486b8cd2d4', 'INSERT', '{"op": "UPDATE", "uuid": "c990fb58-9aaa-43b8-b722-16486b8cd2d4", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '22a5a61c-1df6-4672-b857-ce9184204d8b', 'INSERT', '{"uuid": "22a5a61c-1df6-4672-b857-ce9184204d8b", "assumed": true, "ascendantuuid": "2d11e79a-9df6-4d11-b192-1f7c1e25f658", "descendantuuid": "c990fb58-9aaa-43b8-b722-16486b8cd2d4", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '89205137-f22f-42a3-9f3d-1d9477ae95c6', 'INSERT', '{"uuid": "89205137-f22f-42a3-9f3d-1d9477ae95c6", "assumed": true, "ascendantuuid": "b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e", "descendantuuid": "2d11e79a-9df6-4d11-b192-1f7c1e25f658", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', 'c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', 'INSERT', '{"uuid": "c1e676bd-6b42-4e9f-be99-e7ae7553aa0f", "roletype": "AGENT", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '496ec08c-9190-4c96-898b-f2ccc8fd421e', 'INSERT', '{"uuid": "496ec08c-9190-4c96-898b-f2ccc8fd421e", "assumed": true, "ascendantuuid": "2d11e79a-9df6-4d11-b192-1f7c1e25f658", "descendantuuid": "c1e676bd-6b42-4e9f-be99-e7ae7553aa0f", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '61c41fa3-37fa-48b6-9619-6dcc1177b9a1', 'INSERT', '{"uuid": "61c41fa3-37fa-48b6-9619-6dcc1177b9a1", "assumed": true, "ascendantuuid": "c1e676bd-6b42-4e9f-be99-e7ae7553aa0f", "descendantuuid": "33999dfe-271e-493a-a577-7d698ab46d63", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'cd7be8c1-13c7-4f17-bcd9-cfd10d0d17f6', 'INSERT', '{"uuid": "cd7be8c1-13c7-4f17-bcd9-cfd10d0d17f6", "assumed": true, "ascendantuuid": "c1e676bd-6b42-4e9f-be99-e7ae7553aa0f", "descendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.role', '77059463-c7ac-49ce-80ae-d8bb2a312046', 'INSERT', '{"uuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "roletype": "REFERRER", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.permission', '0f3ad9b8-d3b8-4068-8483-81a43e388c23', 'INSERT', '{"op": "SELECT", "uuid": "0f3ad9b8-d3b8-4068-8483-81a43e388c23", "objectuuid": "84f64b9f-3d8b-420a-b75a-782d6619028d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '69d0b07a-47f1-4e52-ba3c-83a82549f85f', 'INSERT', '{"uuid": "69d0b07a-47f1-4e52-ba3c-83a82549f85f", "assumed": true, "ascendantuuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "descendantuuid": "0f3ad9b8-d3b8-4068-8483-81a43e388c23", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', 'f3ed6754-b656-43ce-94f8-d144f4a85c29', 'INSERT', '{"uuid": "f3ed6754-b656-43ce-94f8-d144f4a85c29", "assumed": true, "ascendantuuid": "7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2", "descendantuuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '9f2443e4-d124-483c-ab3e-7da9c3a9f937', 'INSERT', '{"uuid": "9f2443e4-d124-483c-ab3e-7da9c3a9f937", "assumed": true, "ascendantuuid": "ddcf6c5c-7d81-4399-825e-2c8f6639f869", "descendantuuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '1be0522b-a971-4eec-80f6-2ab78818d021', 'INSERT', '{"uuid": "1be0522b-a971-4eec-80f6-2ab78818d021", "assumed": true, "ascendantuuid": "c1e676bd-6b42-4e9f-be99-e7ae7553aa0f", "descendantuuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'rbac.grant', '1ea9657e-02d7-4986-b810-7a2df2110d3f', 'INSERT', '{"uuid": "1ea9657e-02d7-4986-b810-7a2df2110d3f", "assumed": true, "ascendantuuid": "77059463-c7ac-49ce-80ae-d8bb2a312046", "descendantuuid": "c15e0b81-002e-480e-93f8-93b06f87bbff", "grantedbyroleuuid": null, "grantedbytriggerof": "84f64b9f-3d8b-420a-b75a-782d6619028d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1659', 'hs_office.sepamandate', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'INSERT', '{"uuid": "84f64b9f-3d8b-420a-b75a-782d6619028d", "version": 0, "validity": "[2005-07-01,)", "agreement": "2005-06-28", "reference": "JM33344", "debitoruuid": "0db2a143-0ab2-473f-84f8-d570ee119e04", "bankaccountuuid": "e7f9797c-0871-4df4-b9ef-e658e97825c0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', 'cc866944-946f-4608-9ba0-fd309f0b67de', 'INSERT', '{"uuid": "cc866944-946f-4608-9ba0-fd309f0b67de", "serialid": 151, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '0604ecd0-bd4a-4f61-b8f7-0dbba0c54254', 'INSERT', '{"op": "SELECT", "uuid": "0604ecd0-bd4a-4f61-b8f7-0dbba0c54254", "objectuuid": "cc866944-946f-4608-9ba0-fd309f0b67de", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '2b33a5e5-6212-45ff-b4dc-172c2e8226c5', 'INSERT', '{"uuid": "2b33a5e5-6212-45ff-b4dc-172c2e8226c5", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "0604ecd0-bd4a-4f61-b8f7-0dbba0c54254", "grantedbyroleuuid": null, "grantedbytriggerof": "cc866944-946f-4608-9ba0-fd309f0b67de"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '90a30208-da55-479b-bf1c-d61c3ec10e15', 'INSERT', '{"op": "UPDATE", "uuid": "90a30208-da55-479b-bf1c-d61c3ec10e15", "objectuuid": "cc866944-946f-4608-9ba0-fd309f0b67de", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '6aef378d-cd68-4ab4-a1a0-d55311f4e495', 'INSERT', '{"uuid": "6aef378d-cd68-4ab4-a1a0-d55311f4e495", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "90a30208-da55-479b-bf1c-d61c3ec10e15", "grantedbyroleuuid": null, "grantedbytriggerof": "cc866944-946f-4608-9ba0-fd309f0b67de"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', 'cc866944-946f-4608-9ba0-fd309f0b67de', 'INSERT', '{"uuid": "cc866944-946f-4608-9ba0-fd309f0b67de", "comment": "initial share subscription", "version": 0, "reference": "1000300", "valuedate": "2000-12-06", "sharecount": 80, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 'INSERT', '{"uuid": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5", "serialid": 152, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '7c6b8392-322b-4cfe-9284-c17891c08eb0', 'INSERT', '{"op": "SELECT", "uuid": "7c6b8392-322b-4cfe-9284-c17891c08eb0", "objectuuid": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '38d43cf3-2605-4ddf-ba47-04327e63545c', 'INSERT', '{"uuid": "38d43cf3-2605-4ddf-ba47-04327e63545c", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "7c6b8392-322b-4cfe-9284-c17891c08eb0", "grantedbyroleuuid": null, "grantedbytriggerof": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'b229f023-5e44-49dc-93c5-bbece59ac530', 'INSERT', '{"op": "UPDATE", "uuid": "b229f023-5e44-49dc-93c5-bbece59ac530", "objectuuid": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', 'd36729e1-0c0f-40b9-a82d-898df0c5f934', 'INSERT', '{"uuid": "d36729e1-0c0f-40b9-a82d-898df0c5f934", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "b229f023-5e44-49dc-93c5-bbece59ac530", "grantedbyroleuuid": null, "grantedbytriggerof": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 'INSERT', '{"uuid": "0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2003-07-12", "sharecount": 1, "membershipuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '0344596f-43fe-4802-8b57-11cd9574b644', 'INSERT', '{"uuid": "0344596f-43fe-4802-8b57-11cd9574b644", "serialid": 153, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '854d7b9c-c1eb-48e7-978c-70a057b6feba', 'INSERT', '{"op": "SELECT", "uuid": "854d7b9c-c1eb-48e7-978c-70a057b6feba", "objectuuid": "0344596f-43fe-4802-8b57-11cd9574b644", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '300fa695-c623-4ce4-9baa-101a2b204cdf', 'INSERT', '{"uuid": "300fa695-c623-4ce4-9baa-101a2b204cdf", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "854d7b9c-c1eb-48e7-978c-70a057b6feba", "grantedbyroleuuid": null, "grantedbytriggerof": "0344596f-43fe-4802-8b57-11cd9574b644"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '95ce5834-6df9-483e-8d34-36a0240f2beb', 'INSERT', '{"op": "UPDATE", "uuid": "95ce5834-6df9-483e-8d34-36a0240f2beb", "objectuuid": "0344596f-43fe-4802-8b57-11cd9574b644", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '5338aa0e-22ae-4539-8486-e4bdbf6c07a6', 'INSERT', '{"uuid": "5338aa0e-22ae-4539-8486-e4bdbf6c07a6", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "95ce5834-6df9-483e-8d34-36a0240f2beb", "grantedbyroleuuid": null, "grantedbytriggerof": "0344596f-43fe-4802-8b57-11cd9574b644"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '0344596f-43fe-4802-8b57-11cd9574b644', 'INSERT', '{"uuid": "0344596f-43fe-4802-8b57-11cd9574b644", "comment": "", "version": 0, "reference": "1000300", "valuedate": "2011-12-05", "sharecount": 16, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '18b7c4ae-621f-4618-99c5-f22819b9bf32', 'INSERT', '{"uuid": "18b7c4ae-621f-4618-99c5-f22819b9bf32", "serialid": 154, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '74eb962e-1e8d-4e1b-92ac-6872669d7aa6', 'INSERT', '{"op": "SELECT", "uuid": "74eb962e-1e8d-4e1b-92ac-6872669d7aa6", "objectuuid": "18b7c4ae-621f-4618-99c5-f22819b9bf32", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '3a150549-2a36-4ca3-9440-2bf8a2ee1f3a', 'INSERT', '{"uuid": "3a150549-2a36-4ca3-9440-2bf8a2ee1f3a", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "74eb962e-1e8d-4e1b-92ac-6872669d7aa6", "grantedbyroleuuid": null, "grantedbytriggerof": "18b7c4ae-621f-4618-99c5-f22819b9bf32"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '71978dda-178b-491f-87aa-cb2054c0e68b', 'INSERT', '{"op": "UPDATE", "uuid": "71978dda-178b-491f-87aa-cb2054c0e68b", "objectuuid": "18b7c4ae-621f-4618-99c5-f22819b9bf32", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '81670f09-63b0-4da1-99a3-8a29e06cd785', 'INSERT', '{"uuid": "81670f09-63b0-4da1-99a3-8a29e06cd785", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "71978dda-178b-491f-87aa-cb2054c0e68b", "grantedbyroleuuid": null, "grantedbytriggerof": "18b7c4ae-621f-4618-99c5-f22819b9bf32"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '18b7c4ae-621f-4618-99c5-f22819b9bf32', 'INSERT', '{"uuid": "18b7c4ae-621f-4618-99c5-f22819b9bf32", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2013-10-21", "sharecount": 1, "membershipuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 'INSERT', '{"uuid": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31", "serialid": 155, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'c57554ca-2505-4d51-8e3e-6b999950e955', 'INSERT', '{"op": "SELECT", "uuid": "c57554ca-2505-4d51-8e3e-6b999950e955", "objectuuid": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '574ee219-af96-445c-9b8b-746a74d6ac04', 'INSERT', '{"uuid": "574ee219-af96-445c-9b8b-746a74d6ac04", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "c57554ca-2505-4d51-8e3e-6b999950e955", "grantedbyroleuuid": null, "grantedbytriggerof": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '9aa9507b-9c8e-4f80-8198-028c8d161272', 'INSERT', '{"op": "UPDATE", "uuid": "9aa9507b-9c8e-4f80-8198-028c8d161272", "objectuuid": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '08304c49-3528-4035-afb1-7ac56a9b22e7', 'INSERT', '{"uuid": "08304c49-3528-4035-afb1-7ac56a9b22e7", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "9aa9507b-9c8e-4f80-8198-028c8d161272", "grantedbyroleuuid": null, "grantedbytriggerof": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 'INSERT', '{"uuid": "58faf2d7-8b10-4bdf-b9d8-61b20ac08b31", "comment": "Kapitalerhoehung", "version": 0, "reference": "1000300", "valuedate": "2020-12-08", "sharecount": 96, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '9269215d-0c94-4114-90f7-faace9ddd667', 'INSERT', '{"uuid": "9269215d-0c94-4114-90f7-faace9ddd667", "serialid": 156, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '0910f61f-623e-4643-b439-67e4ae2017c8', 'INSERT', '{"op": "SELECT", "uuid": "0910f61f-623e-4643-b439-67e4ae2017c8", "objectuuid": "9269215d-0c94-4114-90f7-faace9ddd667", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '4964e33b-b41e-4c42-b17b-7750a8d08b6f', 'INSERT', '{"uuid": "4964e33b-b41e-4c42-b17b-7750a8d08b6f", "assumed": true, "ascendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "descendantuuid": "0910f61f-623e-4643-b439-67e4ae2017c8", "grantedbyroleuuid": null, "grantedbytriggerof": "9269215d-0c94-4114-90f7-faace9ddd667"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'b2689cf5-3067-44a6-8543-39b2e9d53d20', 'INSERT', '{"op": "UPDATE", "uuid": "b2689cf5-3067-44a6-8543-39b2e9d53d20", "objectuuid": "9269215d-0c94-4114-90f7-faace9ddd667", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '98869961-e693-4120-b237-c5bdb14ef288', 'INSERT', '{"uuid": "98869961-e693-4120-b237-c5bdb14ef288", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "b2689cf5-3067-44a6-8543-39b2e9d53d20", "grantedbyroleuuid": null, "grantedbytriggerof": "9269215d-0c94-4114-90f7-faace9ddd667"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '9269215d-0c94-4114-90f7-faace9ddd667', 'INSERT', '{"uuid": "9269215d-0c94-4114-90f7-faace9ddd667", "comment": "Beitritt", "version": 0, "reference": "1101800", "valuedate": "2021-05-17", "sharecount": 4, "membershipuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '480d20e9-4616-4ffa-a198-36f6a5177bfe', 'INSERT', '{"uuid": "480d20e9-4616-4ffa-a198-36f6a5177bfe", "assumed": true, "ascendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "descendantuuid": "1ff36364-1e09-4fcb-b008-22a9f664d1eb", "grantedbyroleuuid": null, "grantedbytriggerof": "ace9fec5-5880-4e30-96ea-b843d7001d83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '9034af89-66b3-47a1-9501-65a03ec68d8f', 'INSERT', '{"op": "UPDATE", "uuid": "9034af89-66b3-47a1-9501-65a03ec68d8f", "objectuuid": "ace9fec5-5880-4e30-96ea-b843d7001d83", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '01c06f4d-66b9-4caa-a7d2-252362730f09', 'INSERT', '{"uuid": "01c06f4d-66b9-4caa-a7d2-252362730f09", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "9034af89-66b3-47a1-9501-65a03ec68d8f", "grantedbyroleuuid": null, "grantedbytriggerof": "ace9fec5-5880-4e30-96ea-b843d7001d83"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', 'ace9fec5-5880-4e30-96ea-b843d7001d83', 'INSERT', '{"uuid": "ace9fec5-5880-4e30-96ea-b843d7001d83", "comment": "Beitritt", "version": 0, "reference": "1101900", "valuedate": "2021-05-25", "sharecount": 1, "membershipuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '7659fb30-f484-469b-8817-71f19eb71022', 'INSERT', '{"uuid": "7659fb30-f484-469b-8817-71f19eb71022", "serialid": 158, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '29ba9ce7-5327-4918-a1ac-5ceef43bf66d', 'INSERT', '{"op": "SELECT", "uuid": "29ba9ce7-5327-4918-a1ac-5ceef43bf66d", "objectuuid": "7659fb30-f484-469b-8817-71f19eb71022", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '26560451-f5df-416d-a352-31e43751d735', 'INSERT', '{"uuid": "26560451-f5df-416d-a352-31e43751d735", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "29ba9ce7-5327-4918-a1ac-5ceef43bf66d", "grantedbyroleuuid": null, "grantedbytriggerof": "7659fb30-f484-469b-8817-71f19eb71022"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '01eeac1e-ed6c-4f32-88f3-2a7484ff86ce', 'INSERT', '{"op": "UPDATE", "uuid": "01eeac1e-ed6c-4f32-88f3-2a7484ff86ce", "objectuuid": "7659fb30-f484-469b-8817-71f19eb71022", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', 'db14b13e-b1ee-47a7-96da-7bc9b54100c3', 'INSERT', '{"uuid": "db14b13e-b1ee-47a7-96da-7bc9b54100c3", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "01eeac1e-ed6c-4f32-88f3-2a7484ff86ce", "grantedbyroleuuid": null, "grantedbytriggerof": "7659fb30-f484-469b-8817-71f19eb71022"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '7659fb30-f484-469b-8817-71f19eb71022', 'INSERT', '{"uuid": "7659fb30-f484-469b-8817-71f19eb71022", "comment": "Kapitalerhoehung", "version": 0, "reference": "1000300", "valuedate": "2023-10-10", "sharecount": 96, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '4eb3b112-412d-46ec-b127-b9c76f7cde99', 'INSERT', '{"uuid": "4eb3b112-412d-46ec-b127-b9c76f7cde99", "serialid": 159, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'df73d77e-52a8-440a-b5d9-2d3e718ccdfe', 'INSERT', '{"op": "SELECT", "uuid": "df73d77e-52a8-440a-b5d9-2d3e718ccdfe", "objectuuid": "4eb3b112-412d-46ec-b127-b9c76f7cde99", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', 'f47eb8bc-278f-4d47-876a-edf2df692c16', 'INSERT', '{"uuid": "f47eb8bc-278f-4d47-876a-edf2df692c16", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "df73d77e-52a8-440a-b5d9-2d3e718ccdfe", "grantedbyroleuuid": null, "grantedbytriggerof": "4eb3b112-412d-46ec-b127-b9c76f7cde99"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'ebb8478f-4c98-4f44-bb0f-6036942d3a3b', 'INSERT', '{"op": "UPDATE", "uuid": "ebb8478f-4c98-4f44-bb0f-6036942d3a3b", "objectuuid": "4eb3b112-412d-46ec-b127-b9c76f7cde99", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '8703224c-7c1f-4336-b815-4770da720dce', 'INSERT', '{"uuid": "8703224c-7c1f-4336-b815-4770da720dce", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "ebb8478f-4c98-4f44-bb0f-6036942d3a3b", "grantedbyroleuuid": null, "grantedbytriggerof": "4eb3b112-412d-46ec-b127-b9c76f7cde99"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '4eb3b112-412d-46ec-b127-b9c76f7cde99', 'INSERT', '{"uuid": "4eb3b112-412d-46ec-b127-b9c76f7cde99", "comment": "initial share subscription", "version": 0, "reference": "1002000", "valuedate": "2000-12-06", "sharecount": 2, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '1acec5cf-f771-48ed-9c15-00505524d3b1', 'INSERT', '{"uuid": "1acec5cf-f771-48ed-9c15-00505524d3b1", "serialid": 160, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '5a818337-07d3-497b-8d97-740ec2dd07c7', 'INSERT', '{"op": "SELECT", "uuid": "5a818337-07d3-497b-8d97-740ec2dd07c7", "objectuuid": "1acec5cf-f771-48ed-9c15-00505524d3b1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '6179f68c-53ae-460e-bb57-e7af5832dc79', 'INSERT', '{"uuid": "6179f68c-53ae-460e-bb57-e7af5832dc79", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "5a818337-07d3-497b-8d97-740ec2dd07c7", "grantedbyroleuuid": null, "grantedbytriggerof": "1acec5cf-f771-48ed-9c15-00505524d3b1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', '904d1c20-82f2-4236-aaf8-5866a48f3de8', 'INSERT', '{"op": "UPDATE", "uuid": "904d1c20-82f2-4236-aaf8-5866a48f3de8", "objectuuid": "1acec5cf-f771-48ed-9c15-00505524d3b1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', 'f44cce76-6927-48ad-9260-6b792d862090', 'INSERT', '{"uuid": "f44cce76-6927-48ad-9260-6b792d862090", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "904d1c20-82f2-4236-aaf8-5866a48f3de8", "grantedbyroleuuid": null, "grantedbytriggerof": "1acec5cf-f771-48ed-9c15-00505524d3b1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '1acec5cf-f771-48ed-9c15-00505524d3b1', 'INSERT', '{"uuid": "1acec5cf-f771-48ed-9c15-00505524d3b1", "comment": "increase", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "sharecount": 40, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.object', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', 'INSERT', '{"uuid": "31289955-0d15-45b2-9ffc-07f7cdd6afd1", "serialid": 161, "objecttable": "hs_office.coopsharetx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'b471837f-604e-4fef-ba32-3265e73f9ced', 'INSERT', '{"op": "SELECT", "uuid": "b471837f-604e-4fef-ba32-3265e73f9ced", "objectuuid": "31289955-0d15-45b2-9ffc-07f7cdd6afd1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '499c70bf-ea43-4cbb-a57b-d9b36cf39fef', 'INSERT', '{"uuid": "499c70bf-ea43-4cbb-a57b-d9b36cf39fef", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "b471837f-604e-4fef-ba32-3265e73f9ced", "grantedbyroleuuid": null, "grantedbytriggerof": "31289955-0d15-45b2-9ffc-07f7cdd6afd1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.permission', 'd19a0b6b-0268-4d59-a3dd-176fe7f8cd94', 'INSERT', '{"op": "UPDATE", "uuid": "d19a0b6b-0268-4d59-a3dd-176fe7f8cd94", "objectuuid": "31289955-0d15-45b2-9ffc-07f7cdd6afd1", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'rbac.grant', '667c797a-2c96-45ea-8da3-1b3b7868938b', 'INSERT', '{"uuid": "667c797a-2c96-45ea-8da3-1b3b7868938b", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "d19a0b6b-0268-4d59-a3dd-176fe7f8cd94", "grantedbyroleuuid": null, "grantedbytriggerof": "31289955-0d15-45b2-9ffc-07f7cdd6afd1"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1681', 'hs_office.coopsharetx', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', 'INSERT', '{"uuid": "31289955-0d15-45b2-9ffc-07f7cdd6afd1", "comment": "membership ended", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "sharecount": 22, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "CANCELLATION", "revertedsharetxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'cf013d2b-5d36-449e-a889-c3c33276dcf1', 'INSERT', '{"uuid": "cf013d2b-5d36-449e-a889-c3c33276dcf1", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "9542f37f-717d-4918-8985-a85b96c40e32", "grantedbyroleuuid": null, "grantedbytriggerof": "9a9713e3-8f23-4acf-b260-234c6cd3afbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'a6141a35-6791-4d50-95ee-1e2f1e723d7f', 'INSERT', '{"op": "UPDATE", "uuid": "a6141a35-6791-4d50-95ee-1e2f1e723d7f", "objectuuid": "9a9713e3-8f23-4acf-b260-234c6cd3afbe", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'd8cfda8f-c3b4-4617-b246-68c9410ab3df', 'INSERT', '{"uuid": "d8cfda8f-c3b4-4617-b246-68c9410ab3df", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "a6141a35-6791-4d50-95ee-1e2f1e723d7f", "grantedbyroleuuid": null, "grantedbytriggerof": "9a9713e3-8f23-4acf-b260-234c6cd3afbe"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', 'INSERT', '{"uuid": "9a9713e3-8f23-4acf-b260-234c6cd3afbe", "comment": "for subscription A", "version": 0, "reference": "1000300", "valuedate": "2000-12-06", "assetvalue": 5120.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '768f09ac-20c4-4952-9175-cb46e5acb491', 'INSERT', '{"uuid": "768f09ac-20c4-4952-9175-cb46e5acb491", "serialid": 163, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '8bea3826-aaf0-4ae8-a346-a3ac0d8a8143', 'INSERT', '{"op": "SELECT", "uuid": "8bea3826-aaf0-4ae8-a346-a3ac0d8a8143", "objectuuid": "768f09ac-20c4-4952-9175-cb46e5acb491", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'ce0763bf-5fbd-46aa-b05c-51404055448e', 'INSERT', '{"uuid": "ce0763bf-5fbd-46aa-b05c-51404055448e", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "8bea3826-aaf0-4ae8-a346-a3ac0d8a8143", "grantedbyroleuuid": null, "grantedbytriggerof": "768f09ac-20c4-4952-9175-cb46e5acb491"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '6d4e829a-88fa-4b5b-9f36-ebdb17cb152d', 'INSERT', '{"op": "UPDATE", "uuid": "6d4e829a-88fa-4b5b-9f36-ebdb17cb152d", "objectuuid": "768f09ac-20c4-4952-9175-cb46e5acb491", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '4b024043-3a69-46f6-827a-53510fe9cbea', 'INSERT', '{"uuid": "4b024043-3a69-46f6-827a-53510fe9cbea", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "6d4e829a-88fa-4b5b-9f36-ebdb17cb152d", "grantedbyroleuuid": null, "grantedbytriggerof": "768f09ac-20c4-4952-9175-cb46e5acb491"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '768f09ac-20c4-4952-9175-cb46e5acb491', 'INSERT', '{"uuid": "768f09ac-20c4-4952-9175-cb46e5acb491", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2003-07-07", "assetvalue": 64.00, "membershipuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '7dd37099-29cb-4932-b412-443444dc0027', 'INSERT', '{"uuid": "7dd37099-29cb-4932-b412-443444dc0027", "serialid": 164, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'c130e3df-1643-43c5-8cb0-168d7d4046a3', 'INSERT', '{"op": "SELECT", "uuid": "c130e3df-1643-43c5-8cb0-168d7d4046a3", "objectuuid": "7dd37099-29cb-4932-b412-443444dc0027", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '1a50399a-6587-49bc-8b80-b15a63a22d54', 'INSERT', '{"uuid": "1a50399a-6587-49bc-8b80-b15a63a22d54", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "c130e3df-1643-43c5-8cb0-168d7d4046a3", "grantedbyroleuuid": null, "grantedbytriggerof": "7dd37099-29cb-4932-b412-443444dc0027"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '2a23b891-90b9-4724-b7be-c8e0457e53cb', 'INSERT', '{"op": "UPDATE", "uuid": "2a23b891-90b9-4724-b7be-c8e0457e53cb", "objectuuid": "7dd37099-29cb-4932-b412-443444dc0027", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '18daad9a-87f9-42d9-875d-fb6d6f4d3de9', 'INSERT', '{"uuid": "18daad9a-87f9-42d9-875d-fb6d6f4d3de9", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "2a23b891-90b9-4724-b7be-c8e0457e53cb", "grantedbyroleuuid": null, "grantedbytriggerof": "7dd37099-29cb-4932-b412-443444dc0027"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '7dd37099-29cb-4932-b412-443444dc0027', 'INSERT', '{"uuid": "7dd37099-29cb-4932-b412-443444dc0027", "comment": "", "version": 0, "reference": "1000300", "valuedate": "2011-12-12", "assetvalue": 1024.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '419e123b-0d37-4559-8a0e-61117c653510', 'INSERT', '{"uuid": "419e123b-0d37-4559-8a0e-61117c653510", "serialid": 165, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '8269d7c8-3ba1-4903-9cad-206d41ac89e6', 'INSERT', '{"op": "SELECT", "uuid": "8269d7c8-3ba1-4903-9cad-206d41ac89e6", "objectuuid": "419e123b-0d37-4559-8a0e-61117c653510", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'dca9b8ff-0ae5-45af-8aa2-60959023fdc5', 'INSERT', '{"uuid": "dca9b8ff-0ae5-45af-8aa2-60959023fdc5", "assumed": true, "ascendantuuid": "08903550-662d-4b46-bfe2-74f263288b3c", "descendantuuid": "8269d7c8-3ba1-4903-9cad-206d41ac89e6", "grantedbyroleuuid": null, "grantedbytriggerof": "419e123b-0d37-4559-8a0e-61117c653510"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'f25439cf-05db-4977-8ce4-359c8047c292', 'INSERT', '{"op": "UPDATE", "uuid": "f25439cf-05db-4977-8ce4-359c8047c292", "objectuuid": "419e123b-0d37-4559-8a0e-61117c653510", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '2c1dbb7a-5e74-4fe2-b85a-f084c73bc8a1', 'INSERT', '{"uuid": "2c1dbb7a-5e74-4fe2-b85a-f084c73bc8a1", "assumed": true, "ascendantuuid": "09a5131d-4cc7-4373-8aa0-7183cd6cee62", "descendantuuid": "f25439cf-05db-4977-8ce4-359c8047c292", "grantedbyroleuuid": null, "grantedbytriggerof": "419e123b-0d37-4559-8a0e-61117c653510"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '419e123b-0d37-4559-8a0e-61117c653510', 'INSERT', '{"uuid": "419e123b-0d37-4559-8a0e-61117c653510", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2013-10-21", "assetvalue": 64.00, "membershipuuid": "1afb5eea-6d05-4801-90b1-ee0e4ad420d1", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', 'INSERT', '{"uuid": "a65dde94-715d-4eb5-ab56-bf6646857bb0", "serialid": 166, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'b02aa4fe-dd9f-4754-9d4b-793794965b7f', 'INSERT', '{"op": "SELECT", "uuid": "b02aa4fe-dd9f-4754-9d4b-793794965b7f", "objectuuid": "a65dde94-715d-4eb5-ab56-bf6646857bb0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'cee6cb10-ccc6-42d5-9195-9ec2a1026660', 'INSERT', '{"uuid": "cee6cb10-ccc6-42d5-9195-9ec2a1026660", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "b02aa4fe-dd9f-4754-9d4b-793794965b7f", "grantedbyroleuuid": null, "grantedbytriggerof": "a65dde94-715d-4eb5-ab56-bf6646857bb0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '5249ca6b-cc39-4d6c-ba98-6def0fe2d52c', 'INSERT', '{"op": "UPDATE", "uuid": "5249ca6b-cc39-4d6c-ba98-6def0fe2d52c", "objectuuid": "a65dde94-715d-4eb5-ab56-bf6646857bb0", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '59e90c05-046b-4397-b635-6f27cd6ad9cf', 'INSERT', '{"uuid": "59e90c05-046b-4397-b635-6f27cd6ad9cf", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "5249ca6b-cc39-4d6c-ba98-6def0fe2d52c", "grantedbyroleuuid": null, "grantedbytriggerof": "a65dde94-715d-4eb5-ab56-bf6646857bb0"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '6ad66094-6bca-4ed1-8414-4df62e3ae4ff', 'INSERT', '{"op": "UPDATE", "uuid": "6ad66094-6bca-4ed1-8414-4df62e3ae4ff", "objectuuid": "8e9febfa-b05b-4374-97b1-68b1f23c317d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', 'INSERT', '{"uuid": "a65dde94-715d-4eb5-ab56-bf6646857bb0", "comment": "Einzahlung", "version": 0, "reference": "1000300", "valuedate": "2020-12-15", "assetvalue": 6144.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 'INSERT', '{"uuid": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c", "serialid": 167, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '364c5249-2ae1-4c0f-a732-7c816f4ee9a3', 'INSERT', '{"op": "SELECT", "uuid": "364c5249-2ae1-4c0f-a732-7c816f4ee9a3", "objectuuid": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '01a8f2ad-bb77-4f13-af82-b3ca151d4634', 'INSERT', '{"uuid": "01a8f2ad-bb77-4f13-af82-b3ca151d4634", "assumed": true, "ascendantuuid": "ff268833-fd94-40f4-8a00-65ec735997c1", "descendantuuid": "364c5249-2ae1-4c0f-a732-7c816f4ee9a3", "grantedbyroleuuid": null, "grantedbytriggerof": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f', 'INSERT', '{"op": "UPDATE", "uuid": "bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f", "objectuuid": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '124a3af2-0fd3-4333-b690-414e8119f137', 'INSERT', '{"uuid": "124a3af2-0fd3-4333-b690-414e8119f137", "assumed": true, "ascendantuuid": "14cd9303-6495-4df5-aae8-4e4c8fd6efe9", "descendantuuid": "bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f", "grantedbyroleuuid": null, "grantedbytriggerof": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 'INSERT', '{"uuid": "e7b2da8d-bbd0-4f70-a41e-81c4edca736c", "comment": "Beitritt - Lastschrift", "version": 0, "reference": "1101800", "valuedate": "2021-05-21", "assetvalue": 256.00, "membershipuuid": "8a6743f8-ecf2-4500-8983-d657b9d61b18", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'e5896125-6348-4a13-b947-71ebce17b19b', 'INSERT', '{"uuid": "e5896125-6348-4a13-b947-71ebce17b19b", "serialid": 168, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9', 'INSERT', '{"op": "SELECT", "uuid": "46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9", "objectuuid": "e5896125-6348-4a13-b947-71ebce17b19b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'f5f6bfe2-699c-459e-8cfc-f5db1dfbd769', 'INSERT', '{"uuid": "f5f6bfe2-699c-459e-8cfc-f5db1dfbd769", "assumed": true, "ascendantuuid": "34cc8a49-ea9b-466e-8579-7827e09f5d35", "descendantuuid": "46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9", "grantedbyroleuuid": null, "grantedbytriggerof": "e5896125-6348-4a13-b947-71ebce17b19b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '3c719489-1713-45e4-8689-d83c448c1369', 'INSERT', '{"op": "UPDATE", "uuid": "3c719489-1713-45e4-8689-d83c448c1369", "objectuuid": "e5896125-6348-4a13-b947-71ebce17b19b", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '8b4516f8-8506-48ec-9564-cdf83fcd86b1', 'INSERT', '{"uuid": "8b4516f8-8506-48ec-9564-cdf83fcd86b1", "assumed": true, "ascendantuuid": "dbcb84e9-2de9-47f9-88aa-3fce9c269877", "descendantuuid": "3c719489-1713-45e4-8689-d83c448c1369", "grantedbyroleuuid": null, "grantedbytriggerof": "e5896125-6348-4a13-b947-71ebce17b19b"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'e5896125-6348-4a13-b947-71ebce17b19b', 'INSERT', '{"uuid": "e5896125-6348-4a13-b947-71ebce17b19b", "comment": "Beitritt - Lastschrift", "version": 0, "reference": "1101900", "valuedate": "2021-05-31", "assetvalue": 64.00, "membershipuuid": "cce6083f-6122-4759-85a9-5ac021b2c95d", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 'INSERT', '{"uuid": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add", "serialid": 169, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '3fd7cb87-99f9-4b7a-b7ad-ed018d976aec', 'INSERT', '{"op": "SELECT", "uuid": "3fd7cb87-99f9-4b7a-b7ad-ed018d976aec", "objectuuid": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '8c22791d-05f9-4c59-90c8-502960d52ee1', 'INSERT', '{"uuid": "8c22791d-05f9-4c59-90c8-502960d52ee1", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "3fd7cb87-99f9-4b7a-b7ad-ed018d976aec", "grantedbyroleuuid": null, "grantedbytriggerof": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '782f02d8-7e18-4799-9985-4bcff3546cae', 'INSERT', '{"op": "UPDATE", "uuid": "782f02d8-7e18-4799-9985-4bcff3546cae", "objectuuid": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '0caf8300-c7a0-4b0e-b927-44bcf1cc58f3', 'INSERT', '{"uuid": "0caf8300-c7a0-4b0e-b927-44bcf1cc58f3", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "782f02d8-7e18-4799-9985-4bcff3546cae", "grantedbyroleuuid": null, "grantedbytriggerof": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 'INSERT', '{"uuid": "bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add", "comment": "Kapitalerhoehung - Ueberweisung", "version": 0, "reference": "1000300", "valuedate": "2023-10-05", "assetvalue": 3072.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 'INSERT', '{"uuid": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2", "serialid": 170, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '41f62d96-d6c7-4561-8ed4-209ad0ef8a83', 'INSERT', '{"op": "SELECT", "uuid": "41f62d96-d6c7-4561-8ed4-209ad0ef8a83", "objectuuid": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'd21481c7-3e7f-467a-97d7-74cf51148cb4', 'INSERT', '{"uuid": "d21481c7-3e7f-467a-97d7-74cf51148cb4", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "41f62d96-d6c7-4561-8ed4-209ad0ef8a83", "grantedbyroleuuid": null, "grantedbytriggerof": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'ae700224-c552-4c90-bf40-618f2de9b85e', 'INSERT', '{"op": "UPDATE", "uuid": "ae700224-c552-4c90-bf40-618f2de9b85e", "objectuuid": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'f23a5be3-da40-4deb-b2d7-b196d9323185', 'INSERT', '{"uuid": "f23a5be3-da40-4deb-b2d7-b196d9323185", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "ae700224-c552-4c90-bf40-618f2de9b85e", "grantedbyroleuuid": null, "grantedbytriggerof": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 'INSERT', '{"uuid": "9eaf2db1-940b-4f30-9fc6-a33464b6f7c2", "comment": "Kapitalerhoehung - Ueberweisung", "version": 0, "reference": "1000300", "valuedate": "2023-10-06", "assetvalue": 3072.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '8e9febfa-b05b-4374-97b1-68b1f23c317d', 'INSERT', '{"uuid": "8e9febfa-b05b-4374-97b1-68b1f23c317d", "serialid": 171, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '57862e6f-57a7-4b99-96b3-0c58334d0562', 'INSERT', '{"op": "SELECT", "uuid": "57862e6f-57a7-4b99-96b3-0c58334d0562", "objectuuid": "8e9febfa-b05b-4374-97b1-68b1f23c317d", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'b2282ba8-0cd2-433e-b91d-d317810e6bc8', 'INSERT', '{"uuid": "b2282ba8-0cd2-433e-b91d-d317810e6bc8", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "57862e6f-57a7-4b99-96b3-0c58334d0562", "grantedbyroleuuid": null, "grantedbytriggerof": "8e9febfa-b05b-4374-97b1-68b1f23c317d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '82ab848f-0f51-4083-a681-66b11bb73cd7', 'INSERT', '{"uuid": "82ab848f-0f51-4083-a681-66b11bb73cd7", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "6ad66094-6bca-4ed1-8414-4df62e3ae4ff", "grantedbyroleuuid": null, "grantedbytriggerof": "8e9febfa-b05b-4374-97b1-68b1f23c317d"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '8e9febfa-b05b-4374-97b1-68b1f23c317d', 'INSERT', '{"uuid": "8e9febfa-b05b-4374-97b1-68b1f23c317d", "comment": "for subscription B", "version": 0, "reference": "1002000", "valuedate": "2000-12-06", "assetvalue": 128.00, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 'INSERT', '{"uuid": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f", "serialid": 172, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'd4bf0380-30f8-4c1c-8530-950416296242', 'INSERT', '{"op": "SELECT", "uuid": "d4bf0380-30f8-4c1c-8530-950416296242", "objectuuid": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '155cad14-a432-4aa0-a18f-d4246cfbc15f', 'INSERT', '{"uuid": "155cad14-a432-4aa0-a18f-d4246cfbc15f", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "d4bf0380-30f8-4c1c-8530-950416296242", "grantedbyroleuuid": null, "grantedbytriggerof": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'bc19003a-f55d-462d-ab99-6a36030609ba', 'INSERT', '{"op": "UPDATE", "uuid": "bc19003a-f55d-462d-ab99-6a36030609ba", "objectuuid": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '76bdf214-2c72-4ee5-9c68-0bbbee6ca6d5', 'INSERT', '{"uuid": "76bdf214-2c72-4ee5-9c68-0bbbee6ca6d5", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "bc19003a-f55d-462d-ab99-6a36030609ba", "grantedbyroleuuid": null, "grantedbytriggerof": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 'INSERT', '{"uuid": "b48fc7fd-0648-46e0-a130-c42c82ce9b6f", "comment": "for subscription C", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "assetvalue": 2560.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '0abc3f6a-3232-409a-b81c-9416487b9290', 'INSERT', '{"uuid": "0abc3f6a-3232-409a-b81c-9416487b9290", "serialid": 173, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'd30dfdda-800d-4dfb-93f8-48ed5aa89159', 'INSERT', '{"op": "SELECT", "uuid": "d30dfdda-800d-4dfb-93f8-48ed5aa89159", "objectuuid": "0abc3f6a-3232-409a-b81c-9416487b9290", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '61a580f9-d45a-44ed-a867-88cd3e26af7c', 'INSERT', '{"uuid": "61a580f9-d45a-44ed-a867-88cd3e26af7c", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "d30dfdda-800d-4dfb-93f8-48ed5aa89159", "grantedbyroleuuid": null, "grantedbytriggerof": "0abc3f6a-3232-409a-b81c-9416487b9290"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '1a2abfca-78df-4f3b-906b-e7670f9f3b0b', 'INSERT', '{"op": "UPDATE", "uuid": "1a2abfca-78df-4f3b-906b-e7670f9f3b0b", "objectuuid": "0abc3f6a-3232-409a-b81c-9416487b9290", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'ab18c620-0a73-43df-9208-15a9ccaa7141', 'INSERT', '{"uuid": "ab18c620-0a73-43df-9208-15a9ccaa7141", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "1a2abfca-78df-4f3b-906b-e7670f9f3b0b", "grantedbyroleuuid": null, "grantedbytriggerof": "0abc3f6a-3232-409a-b81c-9416487b9290"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '0abc3f6a-3232-409a-b81c-9416487b9290', 'INSERT', '{"uuid": "0abc3f6a-3232-409a-b81c-9416487b9290", "comment": "for transfer from 7", "version": 0, "reference": "1002000", "valuedate": "2005-01-10", "assetvalue": 512.00, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "ADOPTION", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '80944291-bb84-40fa-bf0b-ac429f7f6220', 'INSERT', '{"uuid": "80944291-bb84-40fa-bf0b-ac429f7f6220", "serialid": 174, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '62bbba6a-e99d-489c-bd97-85556ef99db5', 'INSERT', '{"op": "SELECT", "uuid": "62bbba6a-e99d-489c-bd97-85556ef99db5", "objectuuid": "80944291-bb84-40fa-bf0b-ac429f7f6220", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'e574164f-e9e3-496d-98dd-c17012bbb064', 'INSERT', '{"uuid": "e574164f-e9e3-496d-98dd-c17012bbb064", "assumed": true, "ascendantuuid": "d3d639f3-61a3-46d3-8c6e-33af6f31f718", "descendantuuid": "62bbba6a-e99d-489c-bd97-85556ef99db5", "grantedbyroleuuid": null, "grantedbytriggerof": "80944291-bb84-40fa-bf0b-ac429f7f6220"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '40b75783-fa88-4ade-8f40-ba0b8ae2e99b', 'INSERT', '{"op": "UPDATE", "uuid": "40b75783-fa88-4ade-8f40-ba0b8ae2e99b", "objectuuid": "80944291-bb84-40fa-bf0b-ac429f7f6220", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '2a4f438a-b51b-4812-ae4c-2eab30b3adef', 'INSERT', '{"uuid": "2a4f438a-b51b-4812-ae4c-2eab30b3adef", "assumed": true, "ascendantuuid": "e17798f5-5150-4fb9-8501-a736ac4aa461", "descendantuuid": "40b75783-fa88-4ade-8f40-ba0b8ae2e99b", "grantedbyroleuuid": null, "grantedbytriggerof": "80944291-bb84-40fa-bf0b-ac429f7f6220"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '80944291-bb84-40fa-bf0b-ac429f7f6220', 'INSERT', '{"uuid": "80944291-bb84-40fa-bf0b-ac429f7f6220", "comment": "for transfer to 10", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "assetvalue": -512.00, "membershipuuid": "860a931c-5819-4cc8-9379-c2d530cd30f6", "transactiontype": "TRANSFER", "assetadoptiontxuuid": "0abc3f6a-3232-409a-b81c-9416487b9290", "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', 'INSERT', '{"uuid": "b3765c8e-2e21-4cfb-99fd-77a351c960e4", "serialid": 175, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'e9902d05-14e1-42e5-a601-5a29a7d7319b', 'INSERT', '{"op": "SELECT", "uuid": "e9902d05-14e1-42e5-a601-5a29a7d7319b", "objectuuid": "b3765c8e-2e21-4cfb-99fd-77a351c960e4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '8fb55779-7355-45de-b0a4-cfa6dafac929', 'INSERT', '{"uuid": "8fb55779-7355-45de-b0a4-cfa6dafac929", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "e9902d05-14e1-42e5-a601-5a29a7d7319b", "grantedbyroleuuid": null, "grantedbytriggerof": "b3765c8e-2e21-4cfb-99fd-77a351c960e4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '5c648ce8-7824-4460-9b63-937148d01f63', 'INSERT', '{"op": "UPDATE", "uuid": "5c648ce8-7824-4460-9b63-937148d01f63", "objectuuid": "b3765c8e-2e21-4cfb-99fd-77a351c960e4", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'f3c24661-da9a-4bdb-bafe-8e38c95a1f4e', 'INSERT', '{"uuid": "f3c24661-da9a-4bdb-bafe-8e38c95a1f4e", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "5c648ce8-7824-4460-9b63-937148d01f63", "grantedbyroleuuid": null, "grantedbytriggerof": "b3765c8e-2e21-4cfb-99fd-77a351c960e4"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', 'INSERT', '{"uuid": "b3765c8e-2e21-4cfb-99fd-77a351c960e4", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -8.00, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "CLEARING", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '9c34861c-1b7e-482c-8346-b68835f787c9', 'INSERT', '{"uuid": "9c34861c-1b7e-482c-8346-b68835f787c9", "serialid": 176, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '956a86e6-4e1c-446d-bc30-69a123398a70', 'INSERT', '{"op": "SELECT", "uuid": "956a86e6-4e1c-446d-bc30-69a123398a70", "objectuuid": "9c34861c-1b7e-482c-8346-b68835f787c9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'bc65dc23-67db-4d83-bb21-27acd205585f', 'INSERT', '{"uuid": "bc65dc23-67db-4d83-bb21-27acd205585f", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "956a86e6-4e1c-446d-bc30-69a123398a70", "grantedbyroleuuid": null, "grantedbytriggerof": "9c34861c-1b7e-482c-8346-b68835f787c9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'b0649894-6476-4ed0-97a1-7ca715d19ab4', 'INSERT', '{"op": "UPDATE", "uuid": "b0649894-6476-4ed0-97a1-7ca715d19ab4", "objectuuid": "9c34861c-1b7e-482c-8346-b68835f787c9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '38f9f188-52ba-4e38-b18c-0edc53da6348', 'INSERT', '{"uuid": "38f9f188-52ba-4e38-b18c-0edc53da6348", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "b0649894-6476-4ed0-97a1-7ca715d19ab4", "grantedbyroleuuid": null, "grantedbytriggerof": "9c34861c-1b7e-482c-8346-b68835f787c9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '9c34861c-1b7e-482c-8346-b68835f787c9', 'INSERT', '{"uuid": "9c34861c-1b7e-482c-8346-b68835f787c9", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -100.00, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "DISBURSAL", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', 'INSERT', '{"uuid": "fd978b61-e7ae-403e-82c1-d5f298ef01a9", "serialid": 177, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'a84239c3-b449-411e-aa56-d73fc50bbc3d', 'INSERT', '{"op": "SELECT", "uuid": "a84239c3-b449-411e-aa56-d73fc50bbc3d", "objectuuid": "fd978b61-e7ae-403e-82c1-d5f298ef01a9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '380a213e-6cc0-4b77-a731-7ca97cb2fda2', 'INSERT', '{"uuid": "380a213e-6cc0-4b77-a731-7ca97cb2fda2", "assumed": true, "ascendantuuid": "0ccb26b5-ca98-4998-8e94-18ebca2dc643", "descendantuuid": "a84239c3-b449-411e-aa56-d73fc50bbc3d", "grantedbyroleuuid": null, "grantedbytriggerof": "fd978b61-e7ae-403e-82c1-d5f298ef01a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '0bfe8308-de23-4b7e-b810-f13ca5f9e4ea', 'INSERT', '{"op": "UPDATE", "uuid": "0bfe8308-de23-4b7e-b810-f13ca5f9e4ea", "objectuuid": "fd978b61-e7ae-403e-82c1-d5f298ef01a9", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'd9c0a80b-da70-49fd-8924-2d0d1d837754', 'INSERT', '{"uuid": "d9c0a80b-da70-49fd-8924-2d0d1d837754", "assumed": true, "ascendantuuid": "be48fda3-4879-4578-ab53-7ef02cb2d316", "descendantuuid": "0bfe8308-de23-4b7e-b810-f13ca5f9e4ea", "grantedbyroleuuid": null, "grantedbytriggerof": "fd978b61-e7ae-403e-82c1-d5f298ef01a9"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', 'INSERT', '{"uuid": "fd978b61-e7ae-403e-82c1-d5f298ef01a9", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -20.00, "membershipuuid": "4f9ed0f7-dee6-4d25-afdf-9de24fc10c05", "transactiontype": "LOSS", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '53a9b0ea-3758-401c-bdcd-f100511d04dd', 'INSERT', '{"uuid": "53a9b0ea-3758-401c-bdcd-f100511d04dd", "serialid": 178, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', 'cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5', 'INSERT', '{"op": "SELECT", "uuid": "cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5", "objectuuid": "53a9b0ea-3758-401c-bdcd-f100511d04dd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'b18b116e-a936-4181-97f2-6abcfe54a178', 'INSERT', '{"uuid": "b18b116e-a936-4181-97f2-6abcfe54a178", "assumed": true, "ascendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "descendantuuid": "cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5", "grantedbyroleuuid": null, "grantedbytriggerof": "53a9b0ea-3758-401c-bdcd-f100511d04dd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '6a1678f0-fdd2-40ad-bc43-5f50e439646d', 'INSERT', '{"op": "UPDATE", "uuid": "6a1678f0-fdd2-40ad-bc43-5f50e439646d", "objectuuid": "53a9b0ea-3758-401c-bdcd-f100511d04dd", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', '703e7a71-8f54-4a88-9332-9b0bc3df58be', 'INSERT', '{"uuid": "703e7a71-8f54-4a88-9332-9b0bc3df58be", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "6a1678f0-fdd2-40ad-bc43-5f50e439646d", "grantedbyroleuuid": null, "grantedbytriggerof": "53a9b0ea-3758-401c-bdcd-f100511d04dd"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '53a9b0ea-3758-401c-bdcd-f100511d04dd', 'INSERT', '{"uuid": "53a9b0ea-3758-401c-bdcd-f100511d04dd", "comment": "for subscription E", "version": 0, "reference": "1909000", "valuedate": "2024-01-15", "assetvalue": 128.00, "membershipuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.object', '1f85fb03-656d-4abd-962c-a4f142f93652', 'INSERT', '{"uuid": "1f85fb03-656d-4abd-962c-a4f142f93652", "serialid": 179, "objecttable": "hs_office.coopassettx"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '6b94725d-3740-4d26-a324-10e4e3fcbd62', 'INSERT', '{"op": "SELECT", "uuid": "6b94725d-3740-4d26-a324-10e4e3fcbd62", "objectuuid": "1f85fb03-656d-4abd-962c-a4f142f93652", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'd639d1df-f00e-41fb-97e2-51240df937ee', 'INSERT', '{"uuid": "d639d1df-f00e-41fb-97e2-51240df937ee", "assumed": true, "ascendantuuid": "928d52ec-02f7-4765-b71c-7d3ee4e9c1d9", "descendantuuid": "6b94725d-3740-4d26-a324-10e4e3fcbd62", "grantedbyroleuuid": null, "grantedbytriggerof": "1f85fb03-656d-4abd-962c-a4f142f93652"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.permission', '8f7626fe-631f-4f63-b937-bc00e8f2267b', 'INSERT', '{"op": "UPDATE", "uuid": "8f7626fe-631f-4f63-b937-bc00e8f2267b", "objectuuid": "1f85fb03-656d-4abd-962c-a4f142f93652", "optablename": null}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'rbac.grant', 'f6baeba2-26b9-4844-a901-0d83dcefba1f', 'INSERT', '{"uuid": "f6baeba2-26b9-4844-a901-0d83dcefba1f", "assumed": true, "ascendantuuid": "202a6508-7fef-459d-b5b6-890b088d82be", "descendantuuid": "8f7626fe-631f-4f63-b937-bc00e8f2267b", "grantedbyroleuuid": null, "grantedbytriggerof": "1f85fb03-656d-4abd-962c-a4f142f93652"}'); -INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1704', 'hs_office.coopassettx', '1f85fb03-656d-4abd-962c-a4f142f93652', 'INSERT', '{"uuid": "1f85fb03-656d-4abd-962c-a4f142f93652", "comment": "chargeback for subscription E", "version": 0, "reference": "1909000", "valuedate": "2024-01-20", "assetvalue": -128.00, "membershipuuid": "ca0baf78-f634-430f-b9d3-351a6d1a6723", "transactiontype": "REVERSAL", "assetadoptiontxuuid": null, "revertedassettxuuid": "53a9b0ea-3758-401c-bdcd-f100511d04dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'INSERT', '{"uuid": "691db509-b67e-46ec-a859-c4cb05fbbd70", "serialid": 129, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '7fe86d82-1b9d-485e-a206-a4c9bb39125c', 'INSERT', '{"uuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "roletype": "OWNER", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '8a96713c-f52a-494b-9856-5a7cc869449b', 'INSERT', '{"op": "DELETE", "uuid": "8a96713c-f52a-494b-9856-5a7cc869449b", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '255896f7-49d0-4818-a8ef-ab89e09fe220', 'INSERT', '{"uuid": "255896f7-49d0-4818-a8ef-ab89e09fe220", "assumed": true, "ascendantuuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "descendantuuid": "8a96713c-f52a-494b-9856-5a7cc869449b", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'b7267fb0-0ba2-4e9a-ac10-7fa7d23b252b', 'INSERT', '{"uuid": "b7267fb0-0ba2-4e9a-ac10-7fa7d23b252b", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'dce4e633-96ab-42a0-91d8-d70d968fa9c3', 'INSERT', '{"uuid": "dce4e633-96ab-42a0-91d8-d70d968fa9c3", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "grantedbyroleuuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', 'INSERT', '{"uuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "roletype": "ADMIN", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '0debf423-4128-4959-94b6-c4e17adfd25f', 'INSERT', '{"op": "UPDATE", "uuid": "0debf423-4128-4959-94b6-c4e17adfd25f", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'aee0fd67-8819-4c8c-b2a1-9b6b2724d985', 'INSERT', '{"uuid": "aee0fd67-8819-4c8c-b2a1-9b6b2724d985", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "0debf423-4128-4959-94b6-c4e17adfd25f", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '6d33a2d2-8318-412a-b2a2-f4903e243634', 'INSERT', '{"uuid": "6d33a2d2-8318-412a-b2a2-f4903e243634", "assumed": true, "ascendantuuid": "7fe86d82-1b9d-485e-a206-a4c9bb39125c", "descendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '38aa2ac2-71e5-4805-94ae-61361288f235', 'INSERT', '{"uuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "roletype": "REFERRER", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'bd35e25f-a9d7-41f9-835d-55026654c03c', 'INSERT', '{"op": "SELECT", "uuid": "bd35e25f-a9d7-41f9-835d-55026654c03c", "objectuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '8886335c-b86c-4482-855a-8bba58430513', 'INSERT', '{"uuid": "8886335c-b86c-4482-855a-8bba58430513", "assumed": true, "ascendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "descendantuuid": "bd35e25f-a9d7-41f9-835d-55026654c03c", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '3fe9949e-fe13-4ebe-ac9c-175d91704d68', 'INSERT', '{"uuid": "3fe9949e-fe13-4ebe-ac9c-175d91704d68", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7', 'INSERT', '{"op": "SELECT", "uuid": "3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '9444adae-37a0-434e-97b7-3304b5577498', 'INSERT', '{"op": "DELETE", "uuid": "9444adae-37a0-434e-97b7-3304b5577498", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'INSERT', '{"uuid": "691db509-b67e-46ec-a859-c4cb05fbbd70", "caption": "Michael Mellis, Herr Michael Mellis", "version": 0, "phonenumbers": {"fax": "+49 40 912345-9", "phone_mobile": "+49/1522123455", "phone_office": "+49 4931/1234567"}, "postaladdress": {"city": "Hage", "firm": "Herr Michael Mellis", "name": "Herr Michael Mellis", "street": "Dr. Bolte Str. 50", "country": "Germany", "zipcode": "26524"}, "emailaddresses": {"main": "michael@Mellis.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'INSERT', '{"uuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42", "serialid": 130, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'eba5fbe1-b196-4df3-8d92-fd9023668744', 'INSERT', '{"uuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "roletype": "OWNER", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'd0ee13fb-5f61-40d3-b38e-02eafd89160f', 'INSERT', '{"op": "DELETE", "uuid": "d0ee13fb-5f61-40d3-b38e-02eafd89160f", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'cb309ec8-023d-4a2f-8fc7-33ea3b0a17ee', 'INSERT', '{"uuid": "cb309ec8-023d-4a2f-8fc7-33ea3b0a17ee", "assumed": true, "ascendantuuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "descendantuuid": "d0ee13fb-5f61-40d3-b38e-02eafd89160f", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'fff94117-2a2b-4640-912f-054e98076714', 'INSERT', '{"uuid": "fff94117-2a2b-4640-912f-054e98076714", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a5da7c37-b49f-481e-af99-be5f00420901', 'INSERT', '{"uuid": "a5da7c37-b49f-481e-af99-be5f00420901", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "grantedbyroleuuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'INSERT', '{"uuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "roletype": "ADMIN", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e6970814-b140-4805-95f3-610c215eb5ab', 'INSERT', '{"op": "UPDATE", "uuid": "e6970814-b140-4805-95f3-610c215eb5ab", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '9bf28023-0b2e-4ecf-8b19-e2c33708aac5', 'INSERT', '{"uuid": "9bf28023-0b2e-4ecf-8b19-e2c33708aac5", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "e6970814-b140-4805-95f3-610c215eb5ab", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ad469a06-3a5c-4501-947b-4cbff6d3c4be', 'INSERT', '{"uuid": "ad469a06-3a5c-4501-947b-4cbff6d3c4be", "assumed": true, "ascendantuuid": "eba5fbe1-b196-4df3-8d92-fd9023668744", "descendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '5c9372e0-cb21-4ae7-a461-df086ad19426', 'INSERT', '{"uuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "roletype": "REFERRER", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68', 'INSERT', '{"op": "SELECT", "uuid": "e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68", "objectuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '030d63fc-2357-4bb7-8828-527aeddb3f37', 'INSERT', '{"uuid": "030d63fc-2357-4bb7-8828-527aeddb3f37", "assumed": true, "ascendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "descendantuuid": "e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'dec9b37f-9f1c-414c-b499-15d6c2ac2633', 'INSERT', '{"uuid": "dec9b37f-9f1c-414c-b499-15d6c2ac2633", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'INSERT', '{"uuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42", "caption": "Ragnar IT-Beratung, Herr Ragnar Richter", "version": 0, "phonenumbers": {"fax": "+49 711 87654-3", "phone_office": "+49 711 987654-2", "phone_private": "+49 711 987654-1"}, "postaladdress": {"city": "Stuttgart", "firm": "Herr Ragnar Richter", "name": "Herr Ragnar Richter", "street": "Vioktoriastraße 114", "country": "Germany", "zipcode": "70197"}, "emailaddresses": {"main": "hostsharing@ragnar-richter.de"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'd363745a-e94f-48be-8397-4b361570a54d', 'INSERT', '{"uuid": "d363745a-e94f-48be-8397-4b361570a54d", "serialid": 131, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'a930208f-7ef8-4296-9f70-24c50656ac58', 'INSERT', '{"uuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "roletype": "OWNER", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'eb43edcb-0d20-4614-b45c-736ef4f56380', 'INSERT', '{"op": "DELETE", "uuid": "eb43edcb-0d20-4614-b45c-736ef4f56380", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd2fb1e9f-ccc3-4316-9aed-b4ddd25cd865', 'INSERT', '{"uuid": "d2fb1e9f-ccc3-4316-9aed-b4ddd25cd865", "assumed": true, "ascendantuuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "descendantuuid": "eb43edcb-0d20-4614-b45c-736ef4f56380", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '52f8abd9-2cc0-42d1-a514-8f03b8ae64db', 'INSERT', '{"uuid": "52f8abd9-2cc0-42d1-a514-8f03b8ae64db", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ee92f6ef-83f7-42c3-9987-7a2849b7392d', 'INSERT', '{"uuid": "ee92f6ef-83f7-42c3-9987-7a2849b7392d", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "grantedbyroleuuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'INSERT', '{"uuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "roletype": "ADMIN", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'db94672f-1fbf-4898-bff8-2bfb5b2450a3', 'INSERT', '{"op": "UPDATE", "uuid": "db94672f-1fbf-4898-bff8-2bfb5b2450a3", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '097f8881-5e6b-4870-8d07-307ee55359c9', 'INSERT', '{"uuid": "097f8881-5e6b-4870-8d07-307ee55359c9", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "db94672f-1fbf-4898-bff8-2bfb5b2450a3", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5dcf4fa9-caca-4c5f-911c-0556ee8526cc', 'INSERT', '{"uuid": "5dcf4fa9-caca-4c5f-911c-0556ee8526cc", "assumed": true, "ascendantuuid": "a930208f-7ef8-4296-9f70-24c50656ac58", "descendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '1280183b-c71a-4b86-bdec-7f3800679ef4', 'INSERT', '{"uuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "roletype": "REFERRER", "objectuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '18de6002-7109-44c8-b001-38af17fbb126', 'INSERT', '{"uuid": "18de6002-7109-44c8-b001-38af17fbb126", "assumed": true, "ascendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "descendantuuid": "3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '422119f8-cf6b-47a7-a6e5-f07fc59d1ff3', 'INSERT', '{"uuid": "422119f8-cf6b-47a7-a6e5-f07fc59d1ff3", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "grantedbyroleuuid": null, "grantedbytriggerof": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'd363745a-e94f-48be-8397-4b361570a54d', 'INSERT', '{"uuid": "d363745a-e94f-48be-8397-4b361570a54d", "caption": "Hostsharing e.G., Hostmaster Hostsharing", "version": 0, "phonenumbers": {}, "postaladdress": {"firm": "Hostmaster Hostsharing", "name": "Hostmaster Hostsharing", "country": "Germany"}, "emailaddresses": {"main": "hostmaster@hostsharing.net"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'INSERT', '{"uuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a", "serialid": 132, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', 'INSERT', '{"uuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "roletype": "OWNER", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '684d7313-c093-4da0-83e8-bd73c6cc0bb6', 'INSERT', '{"op": "DELETE", "uuid": "684d7313-c093-4da0-83e8-bd73c6cc0bb6", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5341c201-1e05-4750-ad24-7bba63bbb0a4', 'INSERT', '{"uuid": "5341c201-1e05-4750-ad24-7bba63bbb0a4", "assumed": true, "ascendantuuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "descendantuuid": "684d7313-c093-4da0-83e8-bd73c6cc0bb6", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '2fc7b67b-c746-475c-b2fb-f2140117db64', 'INSERT', '{"uuid": "2fc7b67b-c746-475c-b2fb-f2140117db64", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '069f69db-d07b-47c1-a7dc-2c02f32599b3', 'INSERT', '{"uuid": "069f69db-d07b-47c1-a7dc-2c02f32599b3", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "grantedbyroleuuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '939dafca-fe72-499d-979d-6fe0288e6807', 'INSERT', '{"uuid": "939dafca-fe72-499d-979d-6fe0288e6807", "roletype": "ADMIN", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '42a22abb-f604-4980-b6fa-adb1aa4e0adf', 'INSERT', '{"op": "UPDATE", "uuid": "42a22abb-f604-4980-b6fa-adb1aa4e0adf", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'dc86a67f-b62e-45b4-b14b-d93272c79756', 'INSERT', '{"uuid": "dc86a67f-b62e-45b4-b14b-d93272c79756", "assumed": true, "ascendantuuid": "939dafca-fe72-499d-979d-6fe0288e6807", "descendantuuid": "42a22abb-f604-4980-b6fa-adb1aa4e0adf", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '2296270c-0122-4ebf-a894-5eba96a788cc', 'INSERT', '{"uuid": "2296270c-0122-4ebf-a894-5eba96a788cc", "assumed": true, "ascendantuuid": "d1d8fae9-566a-4a6b-8a1c-372b63108fe6", "descendantuuid": "939dafca-fe72-499d-979d-6fe0288e6807", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', 'INSERT', '{"uuid": "b91f7dd8-b4a4-4f9b-9192-300f8e982c6d", "roletype": "REFERRER", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'd226bd12-192c-43f1-bc65-45803a17c4a3', 'INSERT', '{"op": "SELECT", "uuid": "d226bd12-192c-43f1-bc65-45803a17c4a3", "objectuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'b693f79e-8185-4c6f-9b30-5160c6f5d5fb', 'INSERT', '{"uuid": "b693f79e-8185-4c6f-9b30-5160c6f5d5fb", "assumed": true, "ascendantuuid": "b91f7dd8-b4a4-4f9b-9192-300f8e982c6d", "descendantuuid": "d226bd12-192c-43f1-bc65-45803a17c4a3", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '0485fd95-27e8-484c-8bba-e8144bc0ba15', 'INSERT', '{"uuid": "0485fd95-27e8-484c-8bba-e8144bc0ba15", "assumed": true, "ascendantuuid": "939dafca-fe72-499d-979d-6fe0288e6807", "descendantuuid": "b91f7dd8-b4a4-4f9b-9192-300f8e982c6d", "grantedbyroleuuid": null, "grantedbytriggerof": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'INSERT', '{"uuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a", "caption": "JM e.K.", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "", "street": "Wiesenweg 15", "country": "DE", "zipcode": "12335"}, "emailaddresses": {"main": "jm-ex-partner@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'INSERT', '{"uuid": "33b40eee-30ed-4924-859d-6c58b5aa4124", "serialid": 133, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', 'INSERT', '{"uuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "roletype": "OWNER", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'deebf94a-2ef8-40bd-8538-9227bb901fee', 'INSERT', '{"op": "DELETE", "uuid": "deebf94a-2ef8-40bd-8538-9227bb901fee", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e98e8e5a-a249-4da7-bfca-0c74d828d0db', 'INSERT', '{"uuid": "e98e8e5a-a249-4da7-bfca-0c74d828d0db", "assumed": true, "ascendantuuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "descendantuuid": "deebf94a-2ef8-40bd-8538-9227bb901fee", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '3a7316b4-ca96-4991-a2dd-b3404ebe7ccb', 'INSERT', '{"uuid": "3a7316b4-ca96-4991-a2dd-b3404ebe7ccb", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e3046b32-105c-45dd-a5e4-9684f43ef739', 'INSERT', '{"uuid": "e3046b32-105c-45dd-a5e4-9684f43ef739", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "grantedbyroleuuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '06bf2ac2-61c5-42e9-917b-8b68afcc0d47', 'INSERT', '{"uuid": "06bf2ac2-61c5-42e9-917b-8b68afcc0d47", "roletype": "ADMIN", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'a3aee0e9-b8f3-4262-80ae-5cc6154cdc10', 'INSERT', '{"op": "UPDATE", "uuid": "a3aee0e9-b8f3-4262-80ae-5cc6154cdc10", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd0c4f7e2-feb4-4559-894a-6d60593f7935', 'INSERT', '{"uuid": "d0c4f7e2-feb4-4559-894a-6d60593f7935", "assumed": true, "ascendantuuid": "06bf2ac2-61c5-42e9-917b-8b68afcc0d47", "descendantuuid": "a3aee0e9-b8f3-4262-80ae-5cc6154cdc10", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'caa58c78-6540-4f75-a24c-d4ea5f218cb0', 'INSERT', '{"op": "DELETE", "uuid": "caa58c78-6540-4f75-a24c-d4ea5f218cb0", "objectuuid": "eead6995-dd54-475f-8194-74445c421305", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd0480f7e-3066-4cc5-b5a4-dcbe3e661b2a', 'INSERT', '{"uuid": "d0480f7e-3066-4cc5-b5a4-dcbe3e661b2a", "assumed": true, "ascendantuuid": "2b70b335-e6b6-4b11-b138-4e7b3c4c50d4", "descendantuuid": "06bf2ac2-61c5-42e9-917b-8b68afcc0d47", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '7a8959c2-e6c0-4af3-9d64-117811ec0d02', 'INSERT', '{"uuid": "7a8959c2-e6c0-4af3-9d64-117811ec0d02", "roletype": "REFERRER", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '4fe450ed-3a24-49b8-98cc-fa85de9ce889', 'INSERT', '{"op": "SELECT", "uuid": "4fe450ed-3a24-49b8-98cc-fa85de9ce889", "objectuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '2edfcd56-1985-4bec-b683-f23909acb1ee', 'INSERT', '{"uuid": "2edfcd56-1985-4bec-b683-f23909acb1ee", "assumed": true, "ascendantuuid": "7a8959c2-e6c0-4af3-9d64-117811ec0d02", "descendantuuid": "4fe450ed-3a24-49b8-98cc-fa85de9ce889", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '558ee33d-5b2a-44e2-a5b8-31b80bcc32ca', 'INSERT', '{"uuid": "558ee33d-5b2a-44e2-a5b8-31b80bcc32ca", "assumed": true, "ascendantuuid": "06bf2ac2-61c5-42e9-917b-8b68afcc0d47", "descendantuuid": "7a8959c2-e6c0-4af3-9d64-117811ec0d02", "grantedbyroleuuid": null, "grantedbytriggerof": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'INSERT', '{"uuid": "33b40eee-30ed-4924-859d-6c58b5aa4124", "caption": "JM GmbH, Frau Dr. Jenny Meyer-Billing", "version": 0, "phonenumbers": {"fax": "+49 30 2222222", "phone_office": "+49 30 1111111", "phone_private": "+49 30 7777777"}, "postaladdress": {"city": "Berlin", "firm": "Frau Dr. Jenny Meyer-Billing", "name": "Frau Dr. Jenny Meyer-Billing", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "jm-billing@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'INSERT', '{"uuid": "16da0560-e134-41c5-aafb-1f7a5b33692b", "serialid": 134, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '9d6a3750-0d32-469a-a476-2d8525f7e692', 'INSERT', '{"uuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "roletype": "OWNER", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'c11382ee-e0e3-4b25-b8ba-640dde8c20bf', 'INSERT', '{"op": "DELETE", "uuid": "c11382ee-e0e3-4b25-b8ba-640dde8c20bf", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ea2432fa-f049-4858-8279-8a039d9c6d30', 'INSERT', '{"uuid": "ea2432fa-f049-4858-8279-8a039d9c6d30", "assumed": true, "ascendantuuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "descendantuuid": "c11382ee-e0e3-4b25-b8ba-640dde8c20bf", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5147ee1c-b04a-4add-96a7-c52e72186004', 'INSERT', '{"uuid": "5147ee1c-b04a-4add-96a7-c52e72186004", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a3c0ef7e-f9ac-43e3-9674-7d4a4d3f935a', 'INSERT', '{"uuid": "a3c0ef7e-f9ac-43e3-9674-7d4a4d3f935a", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "grantedbyroleuuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '82d6e2a0-3c2d-4a8e-8638-4903696927d5', 'INSERT', '{"uuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "roletype": "ADMIN", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '0d98be37-8ae9-48c8-9bff-6b7581e256fa', 'INSERT', '{"op": "UPDATE", "uuid": "0d98be37-8ae9-48c8-9bff-6b7581e256fa", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '25ec885b-5885-47a0-89ea-cbaf2838f16d', 'INSERT', '{"uuid": "25ec885b-5885-47a0-89ea-cbaf2838f16d", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "0d98be37-8ae9-48c8-9bff-6b7581e256fa", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '3e4bcbd6-e9e8-4667-b082-65ab49cdd047', 'INSERT', '{"uuid": "3e4bcbd6-e9e8-4667-b082-65ab49cdd047", "assumed": true, "ascendantuuid": "9d6a3750-0d32-469a-a476-2d8525f7e692", "descendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '25acc71c-db8f-46e4-950a-8ea76637bb9b', 'INSERT', '{"uuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "roletype": "REFERRER", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'de8da2bb-9e4d-44e7-ad03-e9763db4331f', 'INSERT', '{"op": "SELECT", "uuid": "de8da2bb-9e4d-44e7-ad03-e9763db4331f", "objectuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '7df1503a-19d3-4c58-bce8-72dcabf3ee17', 'INSERT', '{"uuid": "7df1503a-19d3-4c58-bce8-72dcabf3ee17", "assumed": true, "ascendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "descendantuuid": "de8da2bb-9e4d-44e7-ad03-e9763db4331f", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '97a3cb59-87c2-4aa5-a20d-c49726d852cb', 'INSERT', '{"uuid": "97a3cb59-87c2-4aa5-a20d-c49726d852cb", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "grantedbyroleuuid": null, "grantedbytriggerof": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'INSERT', '{"uuid": "16da0560-e134-41c5-aafb-1f7a5b33692b", "caption": "JM GmbH, Herr Andrew Meyer-Operation", "version": 0, "phonenumbers": {"fax": "+49 30 4444444", "phone_office": "+49 30 3333333", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "Herr Andrew Meyer-Operation", "name": "Herr Andrew Meyer-Operation", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "am-operation@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'INSERT', '{"uuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb", "serialid": 135, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '0b754d22-82a2-4349-af85-2cee67716f66', 'INSERT', '{"uuid": "0b754d22-82a2-4349-af85-2cee67716f66", "roletype": "OWNER", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '390087c9-9c6f-4c2f-9c77-af65112c520a', 'INSERT', '{"op": "DELETE", "uuid": "390087c9-9c6f-4c2f-9c77-af65112c520a", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1234271b-e26d-4f40-91ce-b88639be5579', 'INSERT', '{"uuid": "1234271b-e26d-4f40-91ce-b88639be5579", "assumed": true, "ascendantuuid": "0b754d22-82a2-4349-af85-2cee67716f66", "descendantuuid": "390087c9-9c6f-4c2f-9c77-af65112c520a", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '313ed510-dd9c-4336-94cc-49f4b9764237', 'INSERT', '{"uuid": "313ed510-dd9c-4336-94cc-49f4b9764237", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0b754d22-82a2-4349-af85-2cee67716f66", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '680b8464-0536-4f87-a952-56e549a70a99', 'INSERT', '{"uuid": "680b8464-0536-4f87-a952-56e549a70a99", "roletype": "OWNER", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '534ad46c-147e-4223-9965-14c1b80fc096', 'INSERT', '{"uuid": "534ad46c-147e-4223-9965-14c1b80fc096", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0b754d22-82a2-4349-af85-2cee67716f66", "grantedbyroleuuid": "0b754d22-82a2-4349-af85-2cee67716f66", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', 'INSERT', '{"uuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "roletype": "ADMIN", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'ea4baec8-4128-4e59-b0e1-69b450c46755', 'INSERT', '{"op": "UPDATE", "uuid": "ea4baec8-4128-4e59-b0e1-69b450c46755", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '482020d5-4755-47e3-8e37-2a53dbfc51da', 'INSERT', '{"uuid": "482020d5-4755-47e3-8e37-2a53dbfc51da", "assumed": true, "ascendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "descendantuuid": "ea4baec8-4128-4e59-b0e1-69b450c46755", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '7ba8e044-7762-4b42-9383-dfca5f38f2d5', 'INSERT', '{"uuid": "7ba8e044-7762-4b42-9383-dfca5f38f2d5", "assumed": true, "ascendantuuid": "0b754d22-82a2-4349-af85-2cee67716f66", "descendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '24f9488b-412f-4314-b160-2897f4dcff1b', 'INSERT', '{"uuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "roletype": "REFERRER", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e9887f07-65e4-4b5b-a134-f023fb127cbf', 'INSERT', '{"op": "SELECT", "uuid": "e9887f07-65e4-4b5b-a134-f023fb127cbf", "objectuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '04398c2b-0517-4dde-a377-c3bb6aa6acbb', 'INSERT', '{"uuid": "04398c2b-0517-4dde-a377-c3bb6aa6acbb", "assumed": true, "ascendantuuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "descendantuuid": "e9887f07-65e4-4b5b-a134-f023fb127cbf", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a48c0d05-44c2-4f14-9bf6-6872a0e643a3', 'INSERT', '{"uuid": "a48c0d05-44c2-4f14-9bf6-6872a0e643a3", "assumed": true, "ascendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "descendantuuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "grantedbyroleuuid": null, "grantedbytriggerof": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'INSERT', '{"uuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb", "caption": "JM GmbH, Herr Philip Meyer-Contract", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}, "postaladdress": {"city": "Berlin", "firm": "Herr Philip Meyer-Contract", "name": "Herr Philip Meyer-Contract", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "pm-partner@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'INSERT', '{"uuid": "caac18bd-9277-47ac-99bb-368e2d64dac0", "serialid": 136, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', 'INSERT', '{"uuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "roletype": "OWNER", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '2e07da63-f1f6-4342-b090-f3c465e9093a', 'INSERT', '{"op": "DELETE", "uuid": "2e07da63-f1f6-4342-b090-f3c465e9093a", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1ec460a0-94c2-4faf-869e-02a6edf7d16c', 'INSERT', '{"uuid": "1ec460a0-94c2-4faf-869e-02a6edf7d16c", "assumed": true, "ascendantuuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "descendantuuid": "2e07da63-f1f6-4342-b090-f3c465e9093a", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'be53f5ee-7a75-45fe-b438-2b11efbf210d', 'INSERT', '{"uuid": "be53f5ee-7a75-45fe-b438-2b11efbf210d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'eac7fcd2-b8db-4b32-834c-41c717ba4a56', 'INSERT', '{"uuid": "eac7fcd2-b8db-4b32-834c-41c717ba4a56", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "grantedbyroleuuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'f9d5ba94-1514-4400-88af-7b7d3798f473', 'INSERT', '{"uuid": "f9d5ba94-1514-4400-88af-7b7d3798f473", "roletype": "ADMIN", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'c8cc9a24-e3d0-412d-867b-8e617e40f1e3', 'INSERT', '{"op": "UPDATE", "uuid": "c8cc9a24-e3d0-412d-867b-8e617e40f1e3", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'f29ecf53-d978-406a-9b5d-06af83228fb2', 'INSERT', '{"uuid": "f29ecf53-d978-406a-9b5d-06af83228fb2", "assumed": true, "ascendantuuid": "f9d5ba94-1514-4400-88af-7b7d3798f473", "descendantuuid": "c8cc9a24-e3d0-412d-867b-8e617e40f1e3", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '6236b09e-2522-435a-850a-734c1951691b', 'INSERT', '{"uuid": "6236b09e-2522-435a-850a-734c1951691b", "assumed": true, "ascendantuuid": "310cdf00-c863-4ea0-9e4e-9eac8a74f51a", "descendantuuid": "f9d5ba94-1514-4400-88af-7b7d3798f473", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '20926d99-1f1f-497a-8e13-ce3cb4b1eb73', 'INSERT', '{"uuid": "20926d99-1f1f-497a-8e13-ce3cb4b1eb73", "roletype": "REFERRER", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '32b78d45-4a5c-48a5-bec2-efacd97dc76b', 'INSERT', '{"op": "SELECT", "uuid": "32b78d45-4a5c-48a5-bec2-efacd97dc76b", "objectuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '653a28d9-f2c5-414a-a31a-b9fc2afd9a08', 'INSERT', '{"uuid": "653a28d9-f2c5-414a-a31a-b9fc2afd9a08", "assumed": true, "ascendantuuid": "20926d99-1f1f-497a-8e13-ce3cb4b1eb73", "descendantuuid": "32b78d45-4a5c-48a5-bec2-efacd97dc76b", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1aaddb85-a79a-48fd-a09e-27aff2656351', 'INSERT', '{"uuid": "1aaddb85-a79a-48fd-a09e-27aff2656351", "assumed": true, "ascendantuuid": "f9d5ba94-1514-4400-88af-7b7d3798f473", "descendantuuid": "20926d99-1f1f-497a-8e13-ce3cb4b1eb73", "grantedbyroleuuid": null, "grantedbytriggerof": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'INSERT', '{"uuid": "caac18bd-9277-47ac-99bb-368e2d64dac0", "caption": "JM GmbH, Frau Tammy Meyer-VIP", "version": 0, "phonenumbers": {"fax": "+49 30 6666666", "phone_office": "+49 30 999999", "phone_private": "+49 30 999999"}, "postaladdress": {"city": "Berlin", "firm": "Frau Tammy Meyer-VIP", "name": "Frau Tammy Meyer-VIP", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}, "emailaddresses": {"main": "tm-vip@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'eead6995-dd54-475f-8194-74445c421305', 'INSERT', '{"uuid": "eead6995-dd54-475f-8194-74445c421305", "serialid": 137, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'b54d5034-1898-4712-a472-5ecac0e22a1a', 'INSERT', '{"uuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "roletype": "OWNER", "objectuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'c890dba3-59b0-43ce-b4a7-8b72d56c9bd5', 'INSERT', '{"uuid": "c890dba3-59b0-43ce-b4a7-8b72d56c9bd5", "assumed": true, "ascendantuuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "descendantuuid": "caa58c78-6540-4f75-a24c-d4ea5f218cb0", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '566a1aaa-cf4c-4af0-abab-f2df16e450e0', 'INSERT', '{"uuid": "566a1aaa-cf4c-4af0-abab-f2df16e450e0", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '4787badb-20d1-4e0e-864c-0077a956f204', 'INSERT', '{"uuid": "4787badb-20d1-4e0e-864c-0077a956f204", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "grantedbyroleuuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '57ee73c6-769e-461e-9cea-7bfe56970bf7', 'INSERT', '{"uuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "roletype": "ADMIN", "objectuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'ae30faa4-b82e-4e65-8324-360fdba2d504', 'INSERT', '{"op": "UPDATE", "uuid": "ae30faa4-b82e-4e65-8324-360fdba2d504", "objectuuid": "eead6995-dd54-475f-8194-74445c421305", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'aa6b4d7a-976f-4ae2-a60b-91e0db033b4f', 'INSERT', '{"uuid": "aa6b4d7a-976f-4ae2-a60b-91e0db033b4f", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "ae30faa4-b82e-4e65-8324-360fdba2d504", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '65aeb029-27df-41e0-9ece-d8530348e84f', 'INSERT', '{"uuid": "65aeb029-27df-41e0-9ece-d8530348e84f", "assumed": true, "ascendantuuid": "b54d5034-1898-4712-a472-5ecac0e22a1a", "descendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', 'INSERT', '{"uuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "roletype": "REFERRER", "objectuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'f38fcb66-ea16-41fb-abdc-ea3df857d5e4', 'INSERT', '{"op": "SELECT", "uuid": "f38fcb66-ea16-41fb-abdc-ea3df857d5e4", "objectuuid": "eead6995-dd54-475f-8194-74445c421305", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ba911597-a4e0-4850-80dc-570d22a66b38', 'INSERT', '{"uuid": "ba911597-a4e0-4850-80dc-570d22a66b38", "assumed": true, "ascendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "descendantuuid": "f38fcb66-ea16-41fb-abdc-ea3df857d5e4", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '180e3c3c-0f8f-4403-9892-fecd79374318', 'INSERT', '{"uuid": "180e3c3c-0f8f-4403-9892-fecd79374318", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "grantedbyroleuuid": null, "grantedbytriggerof": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'eead6995-dd54-475f-8194-74445c421305', 'INSERT', '{"uuid": "eead6995-dd54-475f-8194-74445c421305", "caption": "Test PS, Petra Schmidt", "version": 0, "phonenumbers": {}, "postaladdress": {"firm": "Petra Schmidt", "name": "Petra Schmidt"}, "emailaddresses": {"main": "ps@example.com"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'INSERT', '{"uuid": "4b68de11-a658-44bb-be49-ad592e73e3d8", "serialid": 138, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '97344c39-24d3-4df5-8dba-ba41ff28a020', 'INSERT', '{"uuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "roletype": "OWNER", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '81ea98dc-258a-4ab6-8537-8de22e9e90be', 'INSERT', '{"op": "DELETE", "uuid": "81ea98dc-258a-4ab6-8537-8de22e9e90be", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '03f51fe7-db78-4b8d-996f-cbee3ba752ab', 'INSERT', '{"uuid": "03f51fe7-db78-4b8d-996f-cbee3ba752ab", "assumed": true, "ascendantuuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "descendantuuid": "81ea98dc-258a-4ab6-8537-8de22e9e90be", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd0280cb3-1d1d-4ec4-b00b-c220caa3729f', 'INSERT', '{"uuid": "d0280cb3-1d1d-4ec4-b00b-c220caa3729f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '9682d9f3-0cd6-4a25-8d44-8adf95190ad3', 'INSERT', '{"uuid": "9682d9f3-0cd6-4a25-8d44-8adf95190ad3", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "grantedbyroleuuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'd206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', 'INSERT', '{"uuid": "d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e", "roletype": "ADMIN", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '0a2e575c-9d22-42e7-8446-546ac3cda8ed', 'INSERT', '{"op": "UPDATE", "uuid": "0a2e575c-9d22-42e7-8446-546ac3cda8ed", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e948b309-9135-4960-9694-a299c6b71082', 'INSERT', '{"uuid": "e948b309-9135-4960-9694-a299c6b71082", "assumed": true, "ascendantuuid": "d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e", "descendantuuid": "0a2e575c-9d22-42e7-8446-546ac3cda8ed", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '595b65be-6f68-4ec5-9413-e546774b27b7', 'INSERT', '{"uuid": "595b65be-6f68-4ec5-9413-e546774b27b7", "assumed": true, "ascendantuuid": "97344c39-24d3-4df5-8dba-ba41ff28a020", "descendantuuid": "d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '6c787015-c910-455d-8b2c-c3ae7bece7e7', 'INSERT', '{"uuid": "6c787015-c910-455d-8b2c-c3ae7bece7e7", "roletype": "REFERRER", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29', 'INSERT', '{"op": "SELECT", "uuid": "b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29", "objectuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ed3d99d6-01d6-47f4-afcd-fc6960dc94be', 'INSERT', '{"uuid": "ed3d99d6-01d6-47f4-afcd-fc6960dc94be", "assumed": true, "ascendantuuid": "6c787015-c910-455d-8b2c-c3ae7bece7e7", "descendantuuid": "b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '96aa9986-9d0c-4303-9eb3-34f0cc531cd0', 'INSERT', '{"uuid": "96aa9986-9d0c-4303-9eb3-34f0cc531cd0", "assumed": true, "ascendantuuid": "d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e", "descendantuuid": "6c787015-c910-455d-8b2c-c3ae7bece7e7", "grantedbyroleuuid": null, "grantedbytriggerof": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'INSERT', '{"uuid": "4b68de11-a658-44bb-be49-ad592e73e3d8", "caption": "Frau Frauke Fanninga", "version": 0, "phonenumbers": {}, "postaladdress": {"city": "Hitzacker", "name": "Frau Frauke Fanninga", "street": "Am Walde 1", "country": "DE", "zipcode": "29456"}, "emailaddresses": {"main": "ff@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'INSERT', '{"uuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f", "serialid": 139, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5e8e7789-e43a-4b38-8693-e79f25490293', 'INSERT', '{"uuid": "5e8e7789-e43a-4b38-8693-e79f25490293", "assumed": true, "ascendantuuid": "680b8464-0536-4f87-a952-56e549a70a99", "descendantuuid": "9444adae-37a0-434e-97b7-3304b5577498", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a939473c-c689-453d-a436-5abff20fa354', 'INSERT', '{"uuid": "a939473c-c689-453d-a436-5abff20fa354", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "680b8464-0536-4f87-a952-56e549a70a99", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '7691369b-8338-436e-b4c9-97fdda157ad9', 'INSERT', '{"uuid": "7691369b-8338-436e-b4c9-97fdda157ad9", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "680b8464-0536-4f87-a952-56e549a70a99", "grantedbyroleuuid": "680b8464-0536-4f87-a952-56e549a70a99", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '93ec1b20-de2b-4af1-924f-047a7afa0276', 'INSERT', '{"uuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "roletype": "ADMIN", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e17045f7-b4ef-4c12-beee-56b1b5ef7190', 'INSERT', '{"op": "UPDATE", "uuid": "e17045f7-b4ef-4c12-beee-56b1b5ef7190", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a2121061-5baa-4333-88da-95df06ddc21a', 'INSERT', '{"uuid": "a2121061-5baa-4333-88da-95df06ddc21a", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "e17045f7-b4ef-4c12-beee-56b1b5ef7190", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '0bcd4e3e-e6c5-48df-aa5e-bc4b31f241ec', 'INSERT', '{"uuid": "0bcd4e3e-e6c5-48df-aa5e-bc4b31f241ec", "assumed": true, "ascendantuuid": "680b8464-0536-4f87-a952-56e549a70a99", "descendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '4330591d-61d5-4435-827a-c71b8328a700', 'INSERT', '{"uuid": "4330591d-61d5-4435-827a-c71b8328a700", "roletype": "REFERRER", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'd6d69027-db1a-444c-be6a-e14232b71647', 'INSERT', '{"op": "SELECT", "uuid": "d6d69027-db1a-444c-be6a-e14232b71647", "objectuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '32bff958-41ea-4b9f-972c-c7dfbca82caa', 'INSERT', '{"uuid": "32bff958-41ea-4b9f-972c-c7dfbca82caa", "assumed": true, "ascendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "descendantuuid": "d6d69027-db1a-444c-be6a-e14232b71647", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '4ecaab39-97ff-4034-9826-0023beaa8f75', 'INSERT', '{"uuid": "4ecaab39-97ff-4034-9826-0023beaa8f75", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "grantedbyroleuuid": null, "grantedbytriggerof": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'INSERT', '{"uuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f", "caption": "Frau Cecilia Camus", "version": 0, "phonenumbers": {}, "postaladdress": {"city": "Orléans", "name": "Frau Cecilia Camus", "street": "Rue d''Avignion 60", "country": "FR", "zipcode": "45000"}, "emailaddresses": {"main": "cc@example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'INSERT', '{"uuid": "25358342-4f90-4397-b4c4-d90524ac0b7b", "serialid": 140, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '0ca35f5d-778f-4207-88ae-beb5a648a6f6', 'INSERT', '{"uuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "roletype": "OWNER", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '511d8f3d-266d-4c3a-9091-a7b16d8e61bc', 'INSERT', '{"op": "DELETE", "uuid": "511d8f3d-266d-4c3a-9091-a7b16d8e61bc", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '65143c28-70ba-4227-aca5-44d39e0fb9b0', 'INSERT', '{"uuid": "65143c28-70ba-4227-aca5-44d39e0fb9b0", "assumed": true, "ascendantuuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "descendantuuid": "511d8f3d-266d-4c3a-9091-a7b16d8e61bc", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '35ba2de2-3f5c-4f0d-82e0-ca7cfaf14bb4', 'INSERT', '{"uuid": "35ba2de2-3f5c-4f0d-82e0-ca7cfaf14bb4", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '261bdd26-069f-492d-94c1-37002eeeaad2', 'INSERT', '{"uuid": "261bdd26-069f-492d-94c1-37002eeeaad2", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "grantedbyroleuuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'INSERT', '{"uuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "roletype": "ADMIN", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '61aef2e8-ca62-4a62-8a4c-6a56f6fa6880', 'INSERT', '{"op": "UPDATE", "uuid": "61aef2e8-ca62-4a62-8a4c-6a56f6fa6880", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'b08f5236-cdc2-44b9-b9a9-d7696970d60e', 'INSERT', '{"uuid": "b08f5236-cdc2-44b9-b9a9-d7696970d60e", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "61aef2e8-ca62-4a62-8a4c-6a56f6fa6880", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '98c73e4b-bf68-4de3-8b95-522b70836830', 'INSERT', '{"uuid": "98c73e4b-bf68-4de3-8b95-522b70836830", "assumed": true, "ascendantuuid": "0ca35f5d-778f-4207-88ae-beb5a648a6f6", "descendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '5167487b-90ee-40b9-9c34-535b74b3186e', 'INSERT', '{"uuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "roletype": "REFERRER", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'f03d3fab-a32c-40a8-9fb3-ff456bbb7f45', 'INSERT', '{"op": "SELECT", "uuid": "f03d3fab-a32c-40a8-9fb3-ff456bbb7f45", "objectuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'cbc774db-9885-4387-89e7-a07bd21d1197', 'INSERT', '{"uuid": "cbc774db-9885-4387-89e7-a07bd21d1197", "assumed": true, "ascendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "descendantuuid": "f03d3fab-a32c-40a8-9fb3-ff456bbb7f45", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '639d2da7-6cde-485e-a12c-047e5345ec38', 'INSERT', '{"uuid": "639d2da7-6cde-485e-a12c-047e5345ec38", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'INSERT', '{"uuid": "25358342-4f90-4397-b4c4-d90524ac0b7b", "caption": "Wasserwerk Südholstein, Frau Christiane Milberg", "version": 0, "phonenumbers": {"phone_mobile": "+49 4103 12345-1"}, "postaladdress": {"city": "Hetlingen", "firm": "Frau Christiane Milberg", "name": "Frau Christiane Milberg", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}, "emailaddresses": {"main": "rechnung@ww-sholst.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'INSERT', '{"uuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9", "serialid": 141, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', 'INSERT', '{"uuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "roletype": "OWNER", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '4a861961-b89b-4ed1-8a22-076edb1fe182', 'INSERT', '{"op": "DELETE", "uuid": "4a861961-b89b-4ed1-8a22-076edb1fe182", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e58bbe06-9100-4157-8366-e69f6535d72c', 'INSERT', '{"uuid": "e58bbe06-9100-4157-8366-e69f6535d72c", "assumed": true, "ascendantuuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "descendantuuid": "4a861961-b89b-4ed1-8a22-076edb1fe182", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '0cb20f17-8aa9-462d-bae3-4f7cae45bb4a', 'INSERT', '{"uuid": "0cb20f17-8aa9-462d-bae3-4f7cae45bb4a", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '0489eda3-8f56-426a-9be6-f9f689c0e29c', 'INSERT', '{"uuid": "0489eda3-8f56-426a-9be6-f9f689c0e29c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "grantedbyroleuuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '4241127c-1c6d-41b4-9350-3aa73785f6c5', 'INSERT', '{"uuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "roletype": "ADMIN", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '0c9f6461-5ab3-4c39-870d-e66aacd5d522', 'INSERT', '{"op": "UPDATE", "uuid": "0c9f6461-5ab3-4c39-870d-e66aacd5d522", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '70d7d9f3-1b2e-4257-88c3-28884d0d6c03', 'INSERT', '{"uuid": "70d7d9f3-1b2e-4257-88c3-28884d0d6c03", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "0c9f6461-5ab3-4c39-870d-e66aacd5d522", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '88d40a3a-1282-4655-a268-c2095662d402', 'INSERT', '{"uuid": "88d40a3a-1282-4655-a268-c2095662d402", "assumed": true, "ascendantuuid": "a0a8a5e1-e11f-44ec-984f-163e049c81e1", "descendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '206fcdf2-c22e-480f-9029-42183cc2990e', 'INSERT', '{"uuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "roletype": "REFERRER", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '7d188b98-3755-4753-b776-7226df8db3bb', 'INSERT', '{"op": "SELECT", "uuid": "7d188b98-3755-4753-b776-7226df8db3bb", "objectuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '6d609f65-3a9a-4ef3-a184-29c63d54bb41', 'INSERT', '{"uuid": "6d609f65-3a9a-4ef3-a184-29c63d54bb41", "assumed": true, "ascendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "descendantuuid": "7d188b98-3755-4753-b776-7226df8db3bb", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'c84f3466-1307-4db5-87e0-69216ef0e261', 'INSERT', '{"uuid": "c84f3466-1307-4db5-87e0-69216ef0e261", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'INSERT', '{"uuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9", "caption": "Das Perfekte Haus, Herr Richard Wiese", "version": 0, "phonenumbers": {"phone_mobile": "+49-172-12345"}, "postaladdress": {"city": "Essen", "firm": "Herr Richard Wiese", "name": "Herr Richard Wiese", "street": "Kennedyplatz 11", "country": "Germany", "zipcode": "45279"}, "emailaddresses": {"main": "admin@das-perfekte-haus.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '9dcab961-1465-40e3-8d83-357b22af2674', 'INSERT', '{"uuid": "9dcab961-1465-40e3-8d83-357b22af2674", "serialid": 142, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '51c51fa2-3706-470a-9d15-0bad421ea7d4', 'INSERT', '{"uuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "roletype": "OWNER", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '8973550c-23a8-40d5-bd36-4b4f8608841e', 'INSERT', '{"op": "DELETE", "uuid": "8973550c-23a8-40d5-bd36-4b4f8608841e", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd18a6927-8a9f-45ce-8554-99aabdc230c0', 'INSERT', '{"uuid": "d18a6927-8a9f-45ce-8554-99aabdc230c0", "assumed": true, "ascendantuuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "descendantuuid": "8973550c-23a8-40d5-bd36-4b4f8608841e", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5b65a62a-3150-4e79-a90e-58b7a31cbada', 'INSERT', '{"uuid": "5b65a62a-3150-4e79-a90e-58b7a31cbada", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '7bc4246e-62a8-41a4-a057-93d2d0554b06', 'INSERT', '{"uuid": "7bc4246e-62a8-41a4-a057-93d2d0554b06", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "grantedbyroleuuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', 'INSERT', '{"uuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "roletype": "ADMIN", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e887ff28-0576-46a5-8faa-b4167f9cab6a', 'INSERT', '{"op": "UPDATE", "uuid": "e887ff28-0576-46a5-8faa-b4167f9cab6a", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '770efe1f-9453-43ee-afcb-5cd49c3892c3', 'INSERT', '{"uuid": "770efe1f-9453-43ee-afcb-5cd49c3892c3", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "e887ff28-0576-46a5-8faa-b4167f9cab6a", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1b729cee-fb30-418a-a54a-36e1451ff572', 'INSERT', '{"uuid": "1b729cee-fb30-418a-a54a-36e1451ff572", "assumed": true, "ascendantuuid": "51c51fa2-3706-470a-9d15-0bad421ea7d4", "descendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', 'INSERT', '{"uuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "roletype": "REFERRER", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '6becffbf-7ca9-422d-a429-c022f023d9ae', 'INSERT', '{"op": "SELECT", "uuid": "6becffbf-7ca9-422d-a429-c022f023d9ae", "objectuuid": "9dcab961-1465-40e3-8d83-357b22af2674", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '037d9131-fdbd-4a05-9713-571bc29a4c5f', 'INSERT', '{"uuid": "037d9131-fdbd-4a05-9713-571bc29a4c5f", "assumed": true, "ascendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "descendantuuid": "6becffbf-7ca9-422d-a429-c022f023d9ae", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'cc1ad7a3-7342-42a8-b4e7-7fb740cb582f', 'INSERT', '{"uuid": "cc1ad7a3-7342-42a8-b4e7-7fb740cb582f", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "grantedbyroleuuid": null, "grantedbytriggerof": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '9dcab961-1465-40e3-8d83-357b22af2674', 'INSERT', '{"uuid": "9dcab961-1465-40e3-8d83-357b22af2674", "caption": "Wasswerwerk Südholstein, Herr Karim Metzger", "version": 0, "phonenumbers": {"phone_office": "+49 4103 12345-2"}, "postaladdress": {"city": "Hetlingen", "firm": "Herr Karim Metzger", "name": "Herr Karim Metzger", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}, "emailaddresses": {"main": "karim.metzger@ww-sholst.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'INSERT', '{"uuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d", "serialid": 143, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'e1947aaf-5b7f-4597-b296-25830e9c945b', 'INSERT', '{"uuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "roletype": "OWNER", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '32860409-f9d0-41f3-b19e-25a38bdabc3f', 'INSERT', '{"op": "DELETE", "uuid": "32860409-f9d0-41f3-b19e-25a38bdabc3f", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'cfae6716-5c5d-4660-860a-23a4e38d7195', 'INSERT', '{"uuid": "cfae6716-5c5d-4660-860a-23a4e38d7195", "assumed": true, "ascendantuuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "descendantuuid": "32860409-f9d0-41f3-b19e-25a38bdabc3f", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'fae58d16-9c53-4135-b39d-992743c48c95', 'INSERT', '{"uuid": "fae58d16-9c53-4135-b39d-992743c48c95", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '45c1954e-b8f8-47fe-b0cc-d458567060f9', 'INSERT', '{"uuid": "45c1954e-b8f8-47fe-b0cc-d458567060f9", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "grantedbyroleuuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'a822e970-7b6a-417d-81d0-a8db0c985427', 'INSERT', '{"uuid": "a822e970-7b6a-417d-81d0-a8db0c985427", "roletype": "ADMIN", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '44f00bec-0091-4523-9235-84aa669de6df', 'INSERT', '{"op": "UPDATE", "uuid": "44f00bec-0091-4523-9235-84aa669de6df", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '97a6f3c4-8311-42b1-a519-cdf832ea682f', 'INSERT', '{"uuid": "97a6f3c4-8311-42b1-a519-cdf832ea682f", "assumed": true, "ascendantuuid": "a822e970-7b6a-417d-81d0-a8db0c985427", "descendantuuid": "44f00bec-0091-4523-9235-84aa669de6df", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'dbde9321-b71c-4e2e-a4d0-fc7233d09904', 'INSERT', '{"uuid": "dbde9321-b71c-4e2e-a4d0-fc7233d09904", "assumed": true, "ascendantuuid": "e1947aaf-5b7f-4597-b296-25830e9c945b", "descendantuuid": "a822e970-7b6a-417d-81d0-a8db0c985427", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '6fc5eacb-5328-41c3-a71b-e7712338862a', 'INSERT', '{"uuid": "6fc5eacb-5328-41c3-a71b-e7712338862a", "roletype": "REFERRER", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'efb67518-722d-4f1b-8280-e3f894406dd5', 'INSERT', '{"op": "SELECT", "uuid": "efb67518-722d-4f1b-8280-e3f894406dd5", "objectuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'db770b7e-a585-4a52-9bdb-586c846f50f4', 'INSERT', '{"uuid": "db770b7e-a585-4a52-9bdb-586c846f50f4", "assumed": true, "ascendantuuid": "6fc5eacb-5328-41c3-a71b-e7712338862a", "descendantuuid": "efb67518-722d-4f1b-8280-e3f894406dd5", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '9802498c-ba4f-455b-99e0-7d3d74aaf888', 'INSERT', '{"uuid": "9802498c-ba4f-455b-99e0-7d3d74aaf888", "assumed": true, "ascendantuuid": "a822e970-7b6a-417d-81d0-a8db0c985427", "descendantuuid": "6fc5eacb-5328-41c3-a71b-e7712338862a", "grantedbyroleuuid": null, "grantedbytriggerof": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'INSERT', '{"uuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d", "caption": "Das Perfekte Haus, Herr Inhaber R. Wiese", "version": 0, "phonenumbers": {}, "postaladdress": {"co": "Client-ID 515217", "city": "Hannover", "firm": "Herr Inhaber R. Wiese", "name": "Herr Inhaber R. Wiese", "street": "Essen, Kastanienallee 81", "country": "Germany", "zipcode": "30127"}, "emailaddresses": {"main": "515217@kkemail.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'INSERT', '{"uuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4", "serialid": 144, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '87f8ac1d-b082-4961-979c-cd3de0e46b21', 'INSERT', '{"uuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "roletype": "OWNER", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'b8a958a1-b18b-4198-995c-7057791c7b6f', 'INSERT', '{"op": "DELETE", "uuid": "b8a958a1-b18b-4198-995c-7057791c7b6f", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e0c6a190-5a5b-49cb-b6cd-3aa97d65effd', 'INSERT', '{"uuid": "e0c6a190-5a5b-49cb-b6cd-3aa97d65effd", "assumed": true, "ascendantuuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "descendantuuid": "b8a958a1-b18b-4198-995c-7057791c7b6f", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '7a7b3b25-55a2-45a7-8e73-3965f6d42114', 'INSERT', '{"uuid": "7a7b3b25-55a2-45a7-8e73-3965f6d42114", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '9cc8dbdf-4ffa-4c8c-9eeb-3dc4f291cb58', 'INSERT', '{"uuid": "9cc8dbdf-4ffa-4c8c-9eeb-3dc4f291cb58", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "grantedbyroleuuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'ba7a634b-c352-418c-a8c0-58918f32f8a7', 'INSERT', '{"uuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "roletype": "ADMIN", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e3eeab03-d7bd-4dcc-b076-3bca06fcedcd', 'INSERT', '{"op": "UPDATE", "uuid": "e3eeab03-d7bd-4dcc-b076-3bca06fcedcd", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'a24d7161-01ec-47ee-8290-1881e4330e97', 'INSERT', '{"uuid": "a24d7161-01ec-47ee-8290-1881e4330e97", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "e3eeab03-d7bd-4dcc-b076-3bca06fcedcd", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1f5371fd-18c4-452c-bf30-f45a8c955118', 'INSERT', '{"uuid": "1f5371fd-18c4-452c-bf30-f45a8c955118", "assumed": true, "ascendantuuid": "87f8ac1d-b082-4961-979c-cd3de0e46b21", "descendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'ed0f7762-a094-4a88-abde-8472da33bcfb', 'INSERT', '{"uuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "roletype": "REFERRER", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '1be4a900-49fe-4fef-b4f5-47643f463859', 'INSERT', '{"op": "SELECT", "uuid": "1be4a900-49fe-4fef-b4f5-47643f463859", "objectuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '8b2e92c5-76d2-44a9-88b8-72059bf35a81', 'INSERT', '{"uuid": "8b2e92c5-76d2-44a9-88b8-72059bf35a81", "assumed": true, "ascendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "descendantuuid": "1be4a900-49fe-4fef-b4f5-47643f463859", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '3b14bdbd-9cb9-4aeb-8e52-bec6d5560cda', 'INSERT', '{"uuid": "3b14bdbd-9cb9-4aeb-8e52-bec6d5560cda", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "grantedbyroleuuid": null, "grantedbytriggerof": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'INSERT', '{"uuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4", "caption": "Ragnar Richter", "version": 0, "phonenumbers": {}, "postaladdress": {"name": "Ragnar Richter"}, "emailaddresses": {"main": "mail@ragnar-richter..example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'INSERT', '{"uuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1", "serialid": 145, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '9455fccb-71fa-4cff-bf89-5dfc719f3374', 'INSERT', '{"uuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "roletype": "OWNER", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'ea674a43-6195-4c02-8bbf-88c2255030ce', 'INSERT', '{"op": "DELETE", "uuid": "ea674a43-6195-4c02-8bbf-88c2255030ce", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '77236f22-0606-4573-a7c3-7d5f21cf9486', 'INSERT', '{"uuid": "77236f22-0606-4573-a7c3-7d5f21cf9486", "assumed": true, "ascendantuuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "descendantuuid": "ea674a43-6195-4c02-8bbf-88c2255030ce", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'd13c0466-206b-4584-ac93-2be555771c4b', 'INSERT', '{"uuid": "d13c0466-206b-4584-ac93-2be555771c4b", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '4804c996-c47f-4784-beae-80a51ee0d044', 'INSERT', '{"uuid": "4804c996-c47f-4784-beae-80a51ee0d044", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "grantedbyroleuuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', 'INSERT', '{"uuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "roletype": "ADMIN", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'e6b918a1-edaa-4170-b6eb-9c8257b9a72a', 'INSERT', '{"op": "UPDATE", "uuid": "e6b918a1-edaa-4170-b6eb-9c8257b9a72a", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '6f889e57-27bc-4441-be05-633783ab6321', 'INSERT', '{"uuid": "6f889e57-27bc-4441-be05-633783ab6321", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "e6b918a1-edaa-4170-b6eb-9c8257b9a72a", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'bd9e86d9-db1d-4fae-9ad6-79692780436a', 'INSERT', '{"uuid": "bd9e86d9-db1d-4fae-9ad6-79692780436a", "assumed": true, "ascendantuuid": "9455fccb-71fa-4cff-bf89-5dfc719f3374", "descendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '67b756a8-aff9-439d-8ac8-b8965b63ac32', 'INSERT', '{"uuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "roletype": "REFERRER", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d', 'INSERT', '{"op": "SELECT", "uuid": "c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d", "objectuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '090e641c-573b-47d3-b254-f0ce4c80861b', 'INSERT', '{"uuid": "090e641c-573b-47d3-b254-f0ce4c80861b", "assumed": true, "ascendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "descendantuuid": "c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'c65ea937-2e00-4ac5-8662-3411d66bca56', 'INSERT', '{"uuid": "c65ea937-2e00-4ac5-8662-3411d66bca56", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "grantedbyroleuuid": null, "grantedbytriggerof": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'INSERT', '{"uuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1", "caption": "Eike Henning", "version": 0, "phonenumbers": {}, "postaladdress": {"name": "Eike Henning"}, "emailaddresses": {"main": "hostsharing@eike-henning..example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'INSERT', '{"uuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007", "serialid": 146, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'd85c013c-e791-4bec-ac0d-a217472cf425', 'INSERT', '{"uuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "roletype": "OWNER", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'c21abea9-6973-44c7-91f4-2d163d97764d', 'INSERT', '{"op": "DELETE", "uuid": "c21abea9-6973-44c7-91f4-2d163d97764d", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '47db507d-3dd0-47db-bed5-e37816975659', 'INSERT', '{"uuid": "47db507d-3dd0-47db-bed5-e37816975659", "assumed": true, "ascendantuuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "descendantuuid": "c21abea9-6973-44c7-91f4-2d163d97764d", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'cd5c0a3d-5b3c-4f9f-953d-a2950af2ca73', 'INSERT', '{"uuid": "cd5c0a3d-5b3c-4f9f-953d-a2950af2ca73", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'ce7f6e0e-e793-4c9f-921c-4432f946d110', 'INSERT', '{"uuid": "ce7f6e0e-e793-4c9f-921c-4432f946d110", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "grantedbyroleuuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', 'INSERT', '{"uuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "roletype": "ADMIN", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'b94eb65e-0105-4cf9-b238-cd3e4715c08d', 'INSERT', '{"op": "UPDATE", "uuid": "b94eb65e-0105-4cf9-b238-cd3e4715c08d", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'e3dd23a9-7be6-4ba0-8799-4a420de0b930', 'INSERT', '{"uuid": "e3dd23a9-7be6-4ba0-8799-4a420de0b930", "assumed": true, "ascendantuuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "descendantuuid": "b94eb65e-0105-4cf9-b238-cd3e4715c08d", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '31a6e718-6d5a-4c09-b12f-076bec7e334d', 'INSERT', '{"uuid": "31a6e718-6d5a-4c09-b12f-076bec7e334d", "assumed": true, "ascendantuuid": "d85c013c-e791-4bec-ac0d-a217472cf425", "descendantuuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', '7454ce37-a2ba-4f52-a5da-2190203ca089', 'INSERT', '{"uuid": "7454ce37-a2ba-4f52-a5da-2190203ca089", "roletype": "REFERRER", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '98ecef93-9816-44dc-a028-61cc9403efb9', 'INSERT', '{"op": "SELECT", "uuid": "98ecef93-9816-44dc-a028-61cc9403efb9", "objectuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'de0e18ad-bff5-42bd-9384-30a5eec6ef5f', 'INSERT', '{"uuid": "de0e18ad-bff5-42bd-9384-30a5eec6ef5f", "assumed": true, "ascendantuuid": "7454ce37-a2ba-4f52-a5da-2190203ca089", "descendantuuid": "98ecef93-9816-44dc-a028-61cc9403efb9", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'c58f4061-42f2-4606-9ea7-ffbcf8889610', 'INSERT', '{"uuid": "c58f4061-42f2-4606-9ea7-ffbcf8889610", "assumed": true, "ascendantuuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "descendantuuid": "7454ce37-a2ba-4f52-a5da-2190203ca089", "grantedbyroleuuid": null, "grantedbytriggerof": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'INSERT', '{"uuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007", "caption": "Jan Henning", "version": 0, "phonenumbers": {"phone_office": "01577 12345678"}, "postaladdress": {"name": "Jan Henning"}, "emailaddresses": {"main": "mail@jan-henning.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.object', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'INSERT', '{"uuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14", "serialid": 147, "objecttable": "hs_office.contact"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'd8bc6523-20de-42c3-93e6-5884924a7cdb', 'INSERT', '{"uuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "roletype": "OWNER", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'eed193d1-f65d-4738-b8ee-d991aeea4389', 'INSERT', '{"op": "DELETE", "uuid": "eed193d1-f65d-4738-b8ee-d991aeea4389", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '54f14461-8203-4ba6-a130-81ece6161f31', 'INSERT', '{"uuid": "54f14461-8203-4ba6-a130-81ece6161f31", "assumed": true, "ascendantuuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "descendantuuid": "eed193d1-f65d-4738-b8ee-d991aeea4389", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '5b48c930-e321-426a-a187-8f91c01d9e35', 'INSERT', '{"uuid": "5b48c930-e321-426a-a187-8f91c01d9e35", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'c5de6e0e-6325-4985-b5da-83c71d1cfd7e', 'INSERT', '{"uuid": "c5de6e0e-6325-4985-b5da-83c71d1cfd7e", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "grantedbyroleuuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'da9600c2-7dcc-4a7d-87f1-33f4a441e807', 'INSERT', '{"uuid": "da9600c2-7dcc-4a7d-87f1-33f4a441e807", "roletype": "ADMIN", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', '03602c91-9c55-4264-8c24-9f9d3cbaf869', 'INSERT', '{"op": "UPDATE", "uuid": "03602c91-9c55-4264-8c24-9f9d3cbaf869", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', 'f52af204-37d3-428e-a836-5ee0b68136e2', 'INSERT', '{"uuid": "f52af204-37d3-428e-a836-5ee0b68136e2", "assumed": true, "ascendantuuid": "da9600c2-7dcc-4a7d-87f1-33f4a441e807", "descendantuuid": "03602c91-9c55-4264-8c24-9f9d3cbaf869", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '3bdcb54f-c406-4e62-9240-b03ed38f3589', 'INSERT', '{"uuid": "3bdcb54f-c406-4e62-9240-b03ed38f3589", "assumed": true, "ascendantuuid": "d8bc6523-20de-42c3-93e6-5884924a7cdb", "descendantuuid": "da9600c2-7dcc-4a7d-87f1-33f4a441e807", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.role', 'f1afc7a2-588d-4b7e-9975-7b0eda21f846', 'INSERT', '{"uuid": "f1afc7a2-588d-4b7e-9975-7b0eda21f846", "roletype": "REFERRER", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.permission', 'f8a806d8-a37b-4513-a77d-26cf05108c68', 'INSERT', '{"op": "SELECT", "uuid": "f8a806d8-a37b-4513-a77d-26cf05108c68", "objectuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '4ab945c4-6298-4b12-84ab-6df6fd717d71', 'INSERT', '{"uuid": "4ab945c4-6298-4b12-84ab-6df6fd717d71", "assumed": true, "ascendantuuid": "f1afc7a2-588d-4b7e-9975-7b0eda21f846", "descendantuuid": "f8a806d8-a37b-4513-a77d-26cf05108c68", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'rbac.grant', '1543772a-3456-474b-926f-6b03d2c47866', 'INSERT', '{"uuid": "1543772a-3456-474b-926f-6b03d2c47866", "assumed": true, "ascendantuuid": "da9600c2-7dcc-4a7d-87f1-33f4a441e807", "descendantuuid": "f1afc7a2-588d-4b7e-9975-7b0eda21f846", "grantedbyroleuuid": null, "grantedbytriggerof": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1692', 'hs_office.contact', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'INSERT', '{"uuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14", "caption": "Jan Henning", "version": 0, "phonenumbers": {"phone_office": "01577 12345678"}, "postaladdress": {"name": "Jan Henning"}, "emailaddresses": {"main": "lists@jan-henning.example.org"}}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'INSERT', '{"uuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "serialid": 148, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'c184a3f4-ab4e-4263-a14c-70243c83e166', 'INSERT', '{"uuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "roletype": "OWNER", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'd53e98ff-47a8-4be8-a668-c3b45398f278', 'INSERT', '{"op": "DELETE", "uuid": "d53e98ff-47a8-4be8-a668-c3b45398f278", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '8d35045d-6964-481a-8073-ddc2553fe80f', 'INSERT', '{"uuid": "8d35045d-6964-481a-8073-ddc2553fe80f", "assumed": true, "ascendantuuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "descendantuuid": "d53e98ff-47a8-4be8-a668-c3b45398f278", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '2fb0cd1f-5746-4352-8eab-99c9c7b253be', 'INSERT', '{"uuid": "2fb0cd1f-5746-4352-8eab-99c9c7b253be", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '068b7e74-a547-4ad7-988a-ec1193a9b829', 'INSERT', '{"uuid": "068b7e74-a547-4ad7-988a-ec1193a9b829", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "grantedbyroleuuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'INSERT', '{"uuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "roletype": "ADMIN", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'cad96a06-91b7-43d8-897d-7bfb1d7054fc', 'INSERT', '{"op": "UPDATE", "uuid": "cad96a06-91b7-43d8-897d-7bfb1d7054fc", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '5091c7fa-0b70-4a94-a588-925d1f424c62', 'INSERT', '{"uuid": "5091c7fa-0b70-4a94-a588-925d1f424c62", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "cad96a06-91b7-43d8-897d-7bfb1d7054fc", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '23447319-b6db-408b-8619-4b5dff4af765', 'INSERT', '{"uuid": "23447319-b6db-408b-8619-4b5dff4af765", "assumed": true, "ascendantuuid": "c184a3f4-ab4e-4263-a14c-70243c83e166", "descendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '8806c446-5551-4059-ba53-850a2d147c7c', 'INSERT', '{"uuid": "8806c446-5551-4059-ba53-850a2d147c7c", "roletype": "REFERRER", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '11749bf4-1bba-4698-93cc-41cd8d261166', 'INSERT', '{"op": "SELECT", "uuid": "11749bf4-1bba-4698-93cc-41cd8d261166", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '309ef53b-eb20-4341-b25e-cff936c534e5', 'INSERT', '{"uuid": "309ef53b-eb20-4341-b25e-cff936c534e5", "assumed": true, "ascendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "descendantuuid": "11749bf4-1bba-4698-93cc-41cd8d261166", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a7fd6d4d-db5f-422b-a4bc-6784cf5276ac', 'INSERT', '{"uuid": "a7fd6d4d-db5f-422b-a4bc-6784cf5276ac", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "137fb47a-07d4-42cc-b2ef-8e371041cf41"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '3807de9b-30c6-4a1a-a434-85e80560d3b5', 'INSERT', '{"op": "INSERT", "uuid": "3807de9b-30c6-4a1a-a434-85e80560d3b5", "objectuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '6f3efb91-1a3a-45a2-8026-5c961b89178c', 'INSERT', '{"uuid": "6f3efb91-1a3a-45a2-8026-5c961b89178c", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "3807de9b-30c6-4a1a-a434-85e80560d3b5", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'INSERT', '{"uuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "title": "", "version": 0, "givenname": "Michael", "tradename": "Michael Mellis", "familyname": "Mellis", "persontype": "??", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'INSERT', '{"uuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "serialid": 149, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', 'INSERT', '{"uuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "roletype": "OWNER", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '0beca0d8-2895-476e-afce-0923bba7e701', 'INSERT', '{"op": "DELETE", "uuid": "0beca0d8-2895-476e-afce-0923bba7e701", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3ac85c19-6eb7-47d7-8f20-537a040385bb', 'INSERT', '{"uuid": "3ac85c19-6eb7-47d7-8f20-537a040385bb", "assumed": true, "ascendantuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "descendantuuid": "0beca0d8-2895-476e-afce-0923bba7e701", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '5ec2354d-edde-4757-96da-970c87e89500', 'INSERT', '{"uuid": "5ec2354d-edde-4757-96da-970c87e89500", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f4f90dbf-44f4-492a-a6b4-8d7991d8fcc0', 'INSERT', '{"uuid": "f4f90dbf-44f4-492a-a6b4-8d7991d8fcc0", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "grantedbyroleuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'e03da822-f071-4c66-890f-f93a458aec28', 'INSERT', '{"uuid": "e03da822-f071-4c66-890f-f93a458aec28", "roletype": "ADMIN", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c8f5fe32-5429-4991-8d88-ba9a79aead8a', 'INSERT', '{"op": "UPDATE", "uuid": "c8f5fe32-5429-4991-8d88-ba9a79aead8a", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0b9344e1-c62d-4e82-b513-5b45513dc96b', 'INSERT', '{"uuid": "0b9344e1-c62d-4e82-b513-5b45513dc96b", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "c8f5fe32-5429-4991-8d88-ba9a79aead8a", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'dad9011e-c9c9-4779-b743-fdf4f50a3bbe', 'INSERT', '{"uuid": "dad9011e-c9c9-4779-b743-fdf4f50a3bbe", "assumed": true, "ascendantuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "descendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', 'INSERT', '{"uuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "roletype": "REFERRER", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e', 'INSERT', '{"op": "SELECT", "uuid": "ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '6ed6fa54-5b96-4dbb-a5c7-c3fbedf24aee', 'INSERT', '{"uuid": "6ed6fa54-5b96-4dbb-a5c7-c3fbedf24aee", "assumed": true, "ascendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "descendantuuid": "ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0d0534a7-6e05-4f81-b748-0402a99351b1', 'INSERT', '{"uuid": "0d0534a7-6e05-4f81-b748-0402a99351b1", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '7880ca8d-9bf6-4ae4-9056-5677ef591442', 'INSERT', '{"op": "INSERT", "uuid": "7880ca8d-9bf6-4ae4-9056-5677ef591442", "objectuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '26da6601-35ce-4b64-98c7-96c61c2a2f2f', 'INSERT', '{"uuid": "26da6601-35ce-4b64-98c7-96c61c2a2f2f", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "7880ca8d-9bf6-4ae4-9056-5677ef591442", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'INSERT', '{"uuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "title": "", "version": 0, "givenname": "Ragnar", "tradename": "Ragnar IT-Beratung", "familyname": "Richter", "persontype": "??", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'INSERT', '{"uuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "serialid": 150, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'e811eb41-9645-43d9-86b4-d3b522acede9', 'INSERT', '{"uuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "roletype": "OWNER", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '3f16c617-f9ff-4634-b4b6-2cee590e2cd0', 'INSERT', '{"op": "DELETE", "uuid": "3f16c617-f9ff-4634-b4b6-2cee590e2cd0", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '5e5b44c3-3e7d-4fe2-bde4-97dbb16454ed', 'INSERT', '{"uuid": "5e5b44c3-3e7d-4fe2-bde4-97dbb16454ed", "assumed": true, "ascendantuuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "descendantuuid": "3f16c617-f9ff-4634-b4b6-2cee590e2cd0", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '823337c9-d747-4b49-8790-14852096547c', 'INSERT', '{"uuid": "823337c9-d747-4b49-8790-14852096547c", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '22225af4-299f-4f44-b72c-c6be5446566b', 'INSERT', '{"uuid": "22225af4-299f-4f44-b72c-c6be5446566b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "grantedbyroleuuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'INSERT', '{"uuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "roletype": "ADMIN", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '4812d3ef-02dc-4a03-8d13-7661dd92477d', 'INSERT', '{"op": "UPDATE", "uuid": "4812d3ef-02dc-4a03-8d13-7661dd92477d", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '21b50e96-4f64-4e8d-8165-3801e3f86512', 'INSERT', '{"uuid": "21b50e96-4f64-4e8d-8165-3801e3f86512", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "4812d3ef-02dc-4a03-8d13-7661dd92477d", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'c45c3ae4-41a5-4285-92ab-e00121bee2ab', 'INSERT', '{"uuid": "c45c3ae4-41a5-4285-92ab-e00121bee2ab", "assumed": true, "ascendantuuid": "e811eb41-9645-43d9-86b4-d3b522acede9", "descendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', 'INSERT', '{"uuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "roletype": "REFERRER", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '624f1c38-a8ba-40a3-8f6b-dfe76cc36034', 'INSERT', '{"op": "SELECT", "uuid": "624f1c38-a8ba-40a3-8f6b-dfe76cc36034", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '204f5c32-4252-4adc-9fd7-469b54468378', 'INSERT', '{"uuid": "204f5c32-4252-4adc-9fd7-469b54468378", "assumed": true, "ascendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "descendantuuid": "624f1c38-a8ba-40a3-8f6b-dfe76cc36034", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '257ace34-9815-492a-b745-785738584840', 'INSERT', '{"uuid": "257ace34-9815-492a-b745-785738584840", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "cd48cfd6-6313-408f-ae7d-9af047d0c22e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '195afe34-3bc9-43cb-86f7-7eadfb5d25cf', 'INSERT', '{"op": "INSERT", "uuid": "195afe34-3bc9-43cb-86f7-7eadfb5d25cf", "objectuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'df3d2b46-0a7d-4aee-92b6-d54733b3eeea', 'INSERT', '{"uuid": "df3d2b46-0a7d-4aee-92b6-d54733b3eeea", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "195afe34-3bc9-43cb-86f7-7eadfb5d25cf", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'INSERT', '{"uuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "title": "", "version": 0, "givenname": "Hostmaster", "tradename": "Hostsharing e.G.", "familyname": "Hostsharing", "persontype": "LP", "salutation": "Firma"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'INSERT', '{"uuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "serialid": 151, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '02e3a73a-07fc-46df-a14f-569f31249c16', 'INSERT', '{"uuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "roletype": "OWNER", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '08a3ffd0-77e4-4759-ad73-d42ca4d2d807', 'INSERT', '{"op": "DELETE", "uuid": "08a3ffd0-77e4-4759-ad73-d42ca4d2d807", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'b3cbea4e-8ccf-4922-a338-052705e9d0ef', 'INSERT', '{"uuid": "b3cbea4e-8ccf-4922-a338-052705e9d0ef", "assumed": true, "ascendantuuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "descendantuuid": "08a3ffd0-77e4-4759-ad73-d42ca4d2d807", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '7f83a692-c740-4cff-a20e-92bcf4c18035', 'INSERT', '{"uuid": "7f83a692-c740-4cff-a20e-92bcf4c18035", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '64b9ff61-121d-43f0-b9a1-0f7eb0246a16', 'INSERT', '{"uuid": "64b9ff61-121d-43f0-b9a1-0f7eb0246a16", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "grantedbyroleuuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'f87398bc-225a-4eee-bea8-7983be6ae529', 'INSERT', '{"uuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "roletype": "ADMIN", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '6e962b9c-39cd-4cec-9750-c36419ff6319', 'INSERT', '{"op": "UPDATE", "uuid": "6e962b9c-39cd-4cec-9750-c36419ff6319", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'c2e7ae6a-e0db-4209-91b6-4999c8d03f73', 'INSERT', '{"uuid": "c2e7ae6a-e0db-4209-91b6-4999c8d03f73", "assumed": true, "ascendantuuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "descendantuuid": "6e962b9c-39cd-4cec-9750-c36419ff6319", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'bc56b982-1a71-4c2b-89e4-e0a39549780e', 'INSERT', '{"uuid": "bc56b982-1a71-4c2b-89e4-e0a39549780e", "assumed": true, "ascendantuuid": "02e3a73a-07fc-46df-a14f-569f31249c16", "descendantuuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '236b88d3-09bc-4750-9219-61529f7740af', 'INSERT', '{"uuid": "236b88d3-09bc-4750-9219-61529f7740af", "roletype": "REFERRER", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'a5eeaa7d-bf09-41e9-9414-470442665789', 'INSERT', '{"op": "SELECT", "uuid": "a5eeaa7d-bf09-41e9-9414-470442665789", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'e0827c85-5cc3-4910-97c3-583c99f782a1', 'INSERT', '{"uuid": "e0827c85-5cc3-4910-97c3-583c99f782a1", "assumed": true, "ascendantuuid": "236b88d3-09bc-4750-9219-61529f7740af", "descendantuuid": "a5eeaa7d-bf09-41e9-9414-470442665789", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '13f0edf1-7d44-46bc-86d1-cc993ca16624', 'INSERT', '{"uuid": "13f0edf1-7d44-46bc-86d1-cc993ca16624", "assumed": true, "ascendantuuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "descendantuuid": "236b88d3-09bc-4750-9219-61529f7740af", "grantedbyroleuuid": null, "grantedbytriggerof": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '1f552123-71ce-43f0-b091-a43adb7a8a0c', 'INSERT', '{"op": "INSERT", "uuid": "1f552123-71ce-43f0-b091-a43adb7a8a0c", "objectuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '4a2a86e1-b2b5-40d2-b9f1-d1dfc4440845', 'INSERT', '{"uuid": "4a2a86e1-b2b5-40d2-b9f1-d1dfc4440845", "assumed": true, "ascendantuuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "descendantuuid": "1f552123-71ce-43f0-b091-a43adb7a8a0c", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'INSERT', '{"uuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "title": "", "version": 0, "givenname": "", "tradename": "JM e.K.", "familyname": "", "persontype": "LP", "salutation": ""}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'INSERT', '{"uuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "serialid": 152, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '09a6064d-a472-48e9-9755-d0117f2af6fe', 'INSERT', '{"uuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "roletype": "OWNER", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '4cc5242e-7cc3-426c-9025-ccab1d8a895a', 'INSERT', '{"op": "DELETE", "uuid": "4cc5242e-7cc3-426c-9025-ccab1d8a895a", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'e17d863a-af45-4f34-9af7-32054e6c8cd4', 'INSERT', '{"uuid": "e17d863a-af45-4f34-9af7-32054e6c8cd4", "assumed": true, "ascendantuuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "descendantuuid": "4cc5242e-7cc3-426c-9025-ccab1d8a895a", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '2cd5f7a6-1c48-40b6-85dd-97b4730d1e6e', 'INSERT', '{"uuid": "2cd5f7a6-1c48-40b6-85dd-97b4730d1e6e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'cfec797b-bb3f-460b-a498-1d3d18eb7ba5', 'INSERT', '{"uuid": "cfec797b-bb3f-460b-a498-1d3d18eb7ba5", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "grantedbyroleuuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'bab68a5a-2016-454e-b143-8c334188d2c4', 'INSERT', '{"uuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "roletype": "ADMIN", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '60dbf8ee-3263-4878-990f-ab43fe96e48c', 'INSERT', '{"op": "UPDATE", "uuid": "60dbf8ee-3263-4878-990f-ab43fe96e48c", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0f0fd76f-bd0f-47bf-b9a9-88c77f533484', 'INSERT', '{"uuid": "0f0fd76f-bd0f-47bf-b9a9-88c77f533484", "assumed": true, "ascendantuuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "descendantuuid": "60dbf8ee-3263-4878-990f-ab43fe96e48c", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'ed2e685b-1e10-4252-a32c-7377cf225c03', 'INSERT', '{"uuid": "ed2e685b-1e10-4252-a32c-7377cf225c03", "assumed": true, "ascendantuuid": "09a6064d-a472-48e9-9755-d0117f2af6fe", "descendantuuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '9115be3d-2bef-40ce-b0c9-339e460c751d', 'INSERT', '{"uuid": "9115be3d-2bef-40ce-b0c9-339e460c751d", "roletype": "REFERRER", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'ba27345e-0699-437d-b4ca-24a8e326c345', 'INSERT', '{"op": "SELECT", "uuid": "ba27345e-0699-437d-b4ca-24a8e326c345", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '10659beb-ccc1-47c6-afca-0821a2b3587e', 'INSERT', '{"uuid": "10659beb-ccc1-47c6-afca-0821a2b3587e", "assumed": true, "ascendantuuid": "9115be3d-2bef-40ce-b0c9-339e460c751d", "descendantuuid": "ba27345e-0699-437d-b4ca-24a8e326c345", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a4b8b81e-4b83-4a44-bc00-1496f9697af7', 'INSERT', '{"uuid": "a4b8b81e-4b83-4a44-bc00-1496f9697af7", "assumed": true, "ascendantuuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "descendantuuid": "9115be3d-2bef-40ce-b0c9-339e460c751d", "grantedbyroleuuid": null, "grantedbytriggerof": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'f2850544-cbc8-4add-ad35-4b634370b913', 'INSERT', '{"op": "INSERT", "uuid": "f2850544-cbc8-4add-ad35-4b634370b913", "objectuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '164308f2-2289-4518-bc42-3770b0725b15', 'INSERT', '{"uuid": "164308f2-2289-4518-bc42-3770b0725b15", "assumed": true, "ascendantuuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "descendantuuid": "f2850544-cbc8-4add-ad35-4b634370b913", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'INSERT', '{"uuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "title": "Dr.", "version": 0, "givenname": "Jenny", "tradename": "JM GmbH", "familyname": "Meyer-Billing", "persontype": "LP", "salutation": "Frau"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'INSERT', '{"uuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "serialid": 153, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', 'INSERT', '{"uuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "roletype": "OWNER", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'd1767f98-0fc1-48e6-ab30-0cab02504ee2', 'INSERT', '{"op": "DELETE", "uuid": "d1767f98-0fc1-48e6-ab30-0cab02504ee2", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a0d0e550-c7fd-4b7c-b33b-fdffba64003f', 'INSERT', '{"uuid": "a0d0e550-c7fd-4b7c-b33b-fdffba64003f", "assumed": true, "ascendantuuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "descendantuuid": "d1767f98-0fc1-48e6-ab30-0cab02504ee2", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '55281d1d-424a-4c7e-80a1-907d61c30b64', 'INSERT', '{"uuid": "55281d1d-424a-4c7e-80a1-907d61c30b64", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '910b67d8-af35-4af5-b349-023fdf38e40f', 'INSERT', '{"uuid": "910b67d8-af35-4af5-b349-023fdf38e40f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "grantedbyroleuuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'da979efd-9d87-4dc5-a839-493e883cf292', 'INSERT', '{"uuid": "da979efd-9d87-4dc5-a839-493e883cf292", "roletype": "ADMIN", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c1816e75-de8d-480d-9a62-30805b9d2f99', 'INSERT', '{"op": "UPDATE", "uuid": "c1816e75-de8d-480d-9a62-30805b9d2f99", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f9ae28dd-a2fb-4141-aa60-75c2faf05f18', 'INSERT', '{"uuid": "f9ae28dd-a2fb-4141-aa60-75c2faf05f18", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "c1816e75-de8d-480d-9a62-30805b9d2f99", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '9e773e6e-6a9a-45a0-870d-7b56be46e253', 'INSERT', '{"uuid": "9e773e6e-6a9a-45a0-870d-7b56be46e253", "assumed": true, "ascendantuuid": "ce0b0564-7cda-4c03-afcc-0854f3c5e519", "descendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'f913c978-1afc-4af0-9bb6-8c21eed95991', 'INSERT', '{"uuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "roletype": "REFERRER", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '374b8a48-00ec-4df2-9320-848bedfad9de', 'INSERT', '{"op": "SELECT", "uuid": "374b8a48-00ec-4df2-9320-848bedfad9de", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '5ea26201-6404-4ad8-a066-d6a4a355da56', 'INSERT', '{"uuid": "5ea26201-6404-4ad8-a066-d6a4a355da56", "assumed": true, "ascendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "descendantuuid": "374b8a48-00ec-4df2-9320-848bedfad9de", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '37ccbf6b-e3c7-4b19-b884-0bfef6a98517', 'INSERT', '{"uuid": "37ccbf6b-e3c7-4b19-b884-0bfef6a98517", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "grantedbyroleuuid": null, "grantedbytriggerof": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c55c0032-b1a4-47ac-89da-bb9c527a4a73', 'INSERT', '{"op": "INSERT", "uuid": "c55c0032-b1a4-47ac-89da-bb9c527a4a73", "objectuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '082d7c3b-6070-4ff0-999c-fb4be3b5dc62', 'INSERT', '{"uuid": "082d7c3b-6070-4ff0-999c-fb4be3b5dc62", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "c55c0032-b1a4-47ac-89da-bb9c527a4a73", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'INSERT', '{"uuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "title": "", "version": 0, "givenname": "Andrew", "tradename": "JM GmbH", "familyname": "Meyer-Operation", "persontype": "LP", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'INSERT', '{"uuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "serialid": 154, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', 'INSERT', '{"uuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "roletype": "OWNER", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'cf0de0eb-126c-4c60-aaf0-626f5c17820a', 'INSERT', '{"op": "DELETE", "uuid": "cf0de0eb-126c-4c60-aaf0-626f5c17820a", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'bd6475f8-ba0c-4b5b-b820-74c8c8a26c13', 'INSERT', '{"uuid": "bd6475f8-ba0c-4b5b-b820-74c8c8a26c13", "assumed": true, "ascendantuuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "descendantuuid": "cf0de0eb-126c-4c60-aaf0-626f5c17820a", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f0c593c3-6aa7-43b0-b622-b036d303e7e6', 'INSERT', '{"uuid": "f0c593c3-6aa7-43b0-b622-b036d303e7e6", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '2f3d60a9-93d1-43b7-9e05-905451f01c3a', 'INSERT', '{"uuid": "2f3d60a9-93d1-43b7-9e05-905451f01c3a", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "grantedbyroleuuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'b4224d96-af95-4008-9a96-9ae04b44913f', 'INSERT', '{"uuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "roletype": "ADMIN", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '38061696-b53f-42a9-86c0-77b7196a871a', 'INSERT', '{"op": "UPDATE", "uuid": "38061696-b53f-42a9-86c0-77b7196a871a", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0601a335-404a-4943-8e99-569022721247', 'INSERT', '{"uuid": "0601a335-404a-4943-8e99-569022721247", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "38061696-b53f-42a9-86c0-77b7196a871a", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'efe4417b-8511-40fd-b9d8-9c543cb11579', 'INSERT', '{"uuid": "efe4417b-8511-40fd-b9d8-9c543cb11579", "assumed": true, "ascendantuuid": "cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8", "descendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'e668cce4-9f01-4c71-b28c-79859e02971b', 'INSERT', '{"uuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "roletype": "REFERRER", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '594d657f-567a-4e69-b28d-f2b79136ca2d', 'INSERT', '{"op": "SELECT", "uuid": "594d657f-567a-4e69-b28d-f2b79136ca2d", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '9a46f201-3a46-4d72-bf3d-682fd0068c18', 'INSERT', '{"uuid": "9a46f201-3a46-4d72-bf3d-682fd0068c18", "assumed": true, "ascendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "descendantuuid": "594d657f-567a-4e69-b28d-f2b79136ca2d", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'fe29d736-dd13-4a6c-8525-d6eb3bbcdab8', 'INSERT', '{"uuid": "fe29d736-dd13-4a6c-8525-d6eb3bbcdab8", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "ff030436-d19e-4606-9d48-7e192eaf469f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '99c49e4f-cfe3-41d3-940e-915c2a2e9641', 'INSERT', '{"op": "INSERT", "uuid": "99c49e4f-cfe3-41d3-940e-915c2a2e9641", "objectuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'db43eeac-3853-4784-a242-f338a986f32c', 'INSERT', '{"uuid": "db43eeac-3853-4784-a242-f338a986f32c", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "99c49e4f-cfe3-41d3-940e-915c2a2e9641", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'INSERT', '{"uuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "title": "", "version": 0, "givenname": "Philip", "tradename": "JM GmbH", "familyname": "Meyer-Contract", "persontype": "LP", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'INSERT', '{"uuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "serialid": 155, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '22600f05-6955-48f7-8930-c884c9c31b06', 'INSERT', '{"uuid": "22600f05-6955-48f7-8930-c884c9c31b06", "roletype": "OWNER", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'd7a0d94a-c274-439a-b500-0f69b13c49fc', 'INSERT', '{"op": "DELETE", "uuid": "d7a0d94a-c274-439a-b500-0f69b13c49fc", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f69144bb-368b-4d22-b69d-af23526ba7a4', 'INSERT', '{"uuid": "f69144bb-368b-4d22-b69d-af23526ba7a4", "assumed": true, "ascendantuuid": "22600f05-6955-48f7-8930-c884c9c31b06", "descendantuuid": "d7a0d94a-c274-439a-b500-0f69b13c49fc", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '111141e6-d131-4706-ae7a-95f3552e1bdd', 'INSERT', '{"uuid": "111141e6-d131-4706-ae7a-95f3552e1bdd", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "22600f05-6955-48f7-8930-c884c9c31b06", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'dd532bd8-a252-4365-8e4c-2735d5fc5878', 'INSERT', '{"uuid": "dd532bd8-a252-4365-8e4c-2735d5fc5878", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "22600f05-6955-48f7-8930-c884c9c31b06", "grantedbyroleuuid": "22600f05-6955-48f7-8930-c884c9c31b06", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'b28425cc-f859-43db-b3f5-64b5fb6a668b', 'INSERT', '{"uuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "roletype": "ADMIN", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'eb7e6ebf-472b-40b5-9d88-47263fdb01cf', 'INSERT', '{"op": "UPDATE", "uuid": "eb7e6ebf-472b-40b5-9d88-47263fdb01cf", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '7cd9022a-9f45-4d2a-bf6b-27b831272c43', 'INSERT', '{"uuid": "7cd9022a-9f45-4d2a-bf6b-27b831272c43", "assumed": true, "ascendantuuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "descendantuuid": "eb7e6ebf-472b-40b5-9d88-47263fdb01cf", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '8cb620e9-a1c8-43bd-b617-07124fab53a9', 'INSERT', '{"uuid": "8cb620e9-a1c8-43bd-b617-07124fab53a9", "assumed": true, "ascendantuuid": "22600f05-6955-48f7-8930-c884c9c31b06", "descendantuuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', 'INSERT', '{"uuid": "ecdbb376-51c5-4de3-82f5-c5e73c0f43c5", "roletype": "REFERRER", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'de1d831c-b96c-44fa-80a3-725856c6f998', 'INSERT', '{"op": "SELECT", "uuid": "de1d831c-b96c-44fa-80a3-725856c6f998", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a42f0b71-244c-444f-9e90-891b760e40b0', 'INSERT', '{"uuid": "a42f0b71-244c-444f-9e90-891b760e40b0", "assumed": true, "ascendantuuid": "ecdbb376-51c5-4de3-82f5-c5e73c0f43c5", "descendantuuid": "de1d831c-b96c-44fa-80a3-725856c6f998", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '2a2ce413-d255-4aaf-b59d-ec55fd4c0a4c', 'INSERT', '{"uuid": "2a2ce413-d255-4aaf-b59d-ec55fd4c0a4c", "assumed": true, "ascendantuuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "descendantuuid": "ecdbb376-51c5-4de3-82f5-c5e73c0f43c5", "grantedbyroleuuid": null, "grantedbytriggerof": "c8050a1b-0d28-4aa7-ac77-958c99152cd1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '8cc95b98-8edc-4652-ae4b-9752d3cfd6b1', 'INSERT', '{"op": "INSERT", "uuid": "8cc95b98-8edc-4652-ae4b-9752d3cfd6b1", "objectuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '25b98f12-7a6b-45a4-b080-0e45097c58fd', 'INSERT', '{"uuid": "25b98f12-7a6b-45a4-b080-0e45097c58fd", "assumed": true, "ascendantuuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "descendantuuid": "8cc95b98-8edc-4652-ae4b-9752d3cfd6b1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'INSERT', '{"uuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "title": "", "version": 0, "givenname": "Tammy", "tradename": "JM GmbH", "familyname": "Meyer-VIP", "persontype": "LP", "salutation": "Frau"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'INSERT', '{"uuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "serialid": 156, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'c573267e-79c1-4e2a-9e95-55613006a3c8', 'INSERT', '{"uuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "roletype": "OWNER", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '1bcffd04-b60d-4cdc-8fe7-df9bd04caf47', 'INSERT', '{"op": "DELETE", "uuid": "1bcffd04-b60d-4cdc-8fe7-df9bd04caf47", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '86a4a239-e595-41ad-828a-c18f2e0177f7', 'INSERT', '{"uuid": "86a4a239-e595-41ad-828a-c18f2e0177f7", "assumed": true, "ascendantuuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "descendantuuid": "1bcffd04-b60d-4cdc-8fe7-df9bd04caf47", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'aa038d8f-8369-4dcc-888a-8c8e67a66105', 'INSERT', '{"uuid": "aa038d8f-8369-4dcc-888a-8c8e67a66105", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'e3891199-3367-4c2c-91e1-15dc790f84dc', 'INSERT', '{"uuid": "e3891199-3367-4c2c-91e1-15dc790f84dc", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "grantedbyroleuuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '6ef557f3-0b1e-41e9-bde7-8abea686f965', 'INSERT', '{"uuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "roletype": "ADMIN", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '7637bd59-9da5-4cdc-a37c-dd588769d092', 'INSERT', '{"op": "UPDATE", "uuid": "7637bd59-9da5-4cdc-a37c-dd588769d092", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'cc5145e3-55d3-48f2-ba2f-c45ae131b1ae', 'INSERT', '{"uuid": "cc5145e3-55d3-48f2-ba2f-c45ae131b1ae", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "7637bd59-9da5-4cdc-a37c-dd588769d092", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0b0c83b0-8990-4712-ad91-de9339fa1304', 'INSERT', '{"uuid": "0b0c83b0-8990-4712-ad91-de9339fa1304", "assumed": true, "ascendantuuid": "c573267e-79c1-4e2a-9e95-55613006a3c8", "descendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', 'INSERT', '{"uuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "roletype": "REFERRER", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'b66e76e3-086f-4edd-86f7-b052ada8397d', 'INSERT', '{"op": "SELECT", "uuid": "b66e76e3-086f-4edd-86f7-b052ada8397d", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '252fb082-66ff-4c49-8dcd-a3b9d109cd09', 'INSERT', '{"uuid": "252fb082-66ff-4c49-8dcd-a3b9d109cd09", "assumed": true, "ascendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "descendantuuid": "b66e76e3-086f-4edd-86f7-b052ada8397d", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '73e6cc12-8b24-4691-9401-5dcb37bfbb5e', 'INSERT', '{"uuid": "73e6cc12-8b24-4691-9401-5dcb37bfbb5e", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "grantedbyroleuuid": null, "grantedbytriggerof": "89bca3fd-d7b2-46f5-821a-64c5566d03f1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c1d3e826-4d68-4ec3-b3c4-5617a1c14371', 'INSERT', '{"op": "INSERT", "uuid": "c1d3e826-4d68-4ec3-b3c4-5617a1c14371", "objectuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', 'INSERT', '{"uuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "roletype": "REFERRER", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3c2baaa2-96b1-4840-9a60-d8359ec4e959', 'INSERT', '{"uuid": "3c2baaa2-96b1-4840-9a60-d8359ec4e959", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "c1d3e826-4d68-4ec3-b3c4-5617a1c14371", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'INSERT', '{"uuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "title": "", "version": 0, "givenname": "Petra", "tradename": "Test PS", "familyname": "Schmidt", "persontype": "??", "salutation": ""}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'INSERT', '{"uuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "serialid": 157, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '32defb6c-2a81-44f2-ae79-7d8544d807dc', 'INSERT', '{"uuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "roletype": "OWNER", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '0144b94f-8302-4eeb-bc90-d09e06966ac7', 'INSERT', '{"op": "DELETE", "uuid": "0144b94f-8302-4eeb-bc90-d09e06966ac7", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '4acc2c76-ba7f-4074-b649-4f2e2aa99c51', 'INSERT', '{"uuid": "4acc2c76-ba7f-4074-b649-4f2e2aa99c51", "assumed": true, "ascendantuuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "descendantuuid": "0144b94f-8302-4eeb-bc90-d09e06966ac7", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'fa04af88-ae33-4ab5-bcc8-1c36fb1afd9f', 'INSERT', '{"uuid": "fa04af88-ae33-4ab5-bcc8-1c36fb1afd9f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '705609ae-4009-47e5-99a4-57798dfe93e4', 'INSERT', '{"uuid": "705609ae-4009-47e5-99a4-57798dfe93e4", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "grantedbyroleuuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', 'INSERT', '{"uuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "roletype": "ADMIN", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '6587000d-2225-474f-a5c3-480188036398', 'INSERT', '{"op": "UPDATE", "uuid": "6587000d-2225-474f-a5c3-480188036398", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '82ec6c0e-0e4a-425a-9410-38747ceab809', 'INSERT', '{"uuid": "82ec6c0e-0e4a-425a-9410-38747ceab809", "assumed": true, "ascendantuuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "descendantuuid": "6587000d-2225-474f-a5c3-480188036398", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '75c4a5d5-b64d-4aa6-9b68-34a7666c6511', 'INSERT', '{"uuid": "75c4a5d5-b64d-4aa6-9b68-34a7666c6511", "assumed": true, "ascendantuuid": "32defb6c-2a81-44f2-ae79-7d8544d807dc", "descendantuuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', 'INSERT', '{"uuid": "4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7", "roletype": "REFERRER", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '353d7a47-2248-4875-9776-469e7a028cae', 'INSERT', '{"op": "SELECT", "uuid": "353d7a47-2248-4875-9776-469e7a028cae", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '4c4a01d2-ef9c-4b38-800b-48e24561e0fb', 'INSERT', '{"uuid": "4c4a01d2-ef9c-4b38-800b-48e24561e0fb", "assumed": true, "ascendantuuid": "4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7", "descendantuuid": "353d7a47-2248-4875-9776-469e7a028cae", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'ca9bb2f8-49af-452c-a0aa-283c283ba4d1', 'INSERT', '{"uuid": "ca9bb2f8-49af-452c-a0aa-283c283ba4d1", "assumed": true, "ascendantuuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "descendantuuid": "4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7", "grantedbyroleuuid": null, "grantedbytriggerof": "2fd1ba30-936a-41a8-8fbe-e93be547f44b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '0488a5bf-a825-4105-965f-3fa793d5b9c4', 'INSERT', '{"op": "INSERT", "uuid": "0488a5bf-a825-4105-965f-3fa793d5b9c4", "objectuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '06ff60b9-6bdc-44e9-98f6-1a32d6f30512', 'INSERT', '{"uuid": "06ff60b9-6bdc-44e9-98f6-1a32d6f30512", "assumed": true, "ascendantuuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "descendantuuid": "0488a5bf-a825-4105-965f-3fa793d5b9c4", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'INSERT', '{"uuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "title": "", "version": 0, "givenname": "Frauke", "tradename": "", "familyname": "Fanninga", "persontype": "NP", "salutation": "Frau"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'INSERT', '{"uuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "serialid": 158, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '7c817da8-f355-4456-8074-7bf433924285', 'INSERT', '{"uuid": "7c817da8-f355-4456-8074-7bf433924285", "roletype": "OWNER", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '2d7800a6-63a8-4017-9613-6c693d3cd171', 'INSERT', '{"op": "DELETE", "uuid": "2d7800a6-63a8-4017-9613-6c693d3cd171", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '34695474-4403-4045-a3f5-2e77f28a3257', 'INSERT', '{"uuid": "34695474-4403-4045-a3f5-2e77f28a3257", "assumed": true, "ascendantuuid": "7c817da8-f355-4456-8074-7bf433924285", "descendantuuid": "2d7800a6-63a8-4017-9613-6c693d3cd171", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '96b0229c-13b6-48ef-a5c1-d5202c716c52', 'INSERT', '{"uuid": "96b0229c-13b6-48ef-a5c1-d5202c716c52", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7c817da8-f355-4456-8074-7bf433924285", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '9c5c8582-9832-4bbf-8bf1-0c828c121337', 'INSERT', '{"uuid": "9c5c8582-9832-4bbf-8bf1-0c828c121337", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7c817da8-f355-4456-8074-7bf433924285", "grantedbyroleuuid": "7c817da8-f355-4456-8074-7bf433924285", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'f32f51d5-3384-426e-a1c1-b5b6a263b647', 'INSERT', '{"uuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "roletype": "ADMIN", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '2f06897d-859c-4e56-b9c2-947d128e3d63', 'INSERT', '{"op": "UPDATE", "uuid": "2f06897d-859c-4e56-b9c2-947d128e3d63", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '6839d4c2-94b8-4fa2-84c8-ebda6ae471f9', 'INSERT', '{"uuid": "6839d4c2-94b8-4fa2-84c8-ebda6ae471f9", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "2f06897d-859c-4e56-b9c2-947d128e3d63", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0798a57d-c298-47e9-9942-dbc39bb20c9b', 'INSERT', '{"uuid": "0798a57d-c298-47e9-9942-dbc39bb20c9b", "assumed": true, "ascendantuuid": "7c817da8-f355-4456-8074-7bf433924285", "descendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '4d6a853b-5d93-4400-ba4c-a28a96721af5', 'INSERT', '{"op": "SELECT", "uuid": "4d6a853b-5d93-4400-ba4c-a28a96721af5", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'fc136f9e-2bbc-4f9a-b9d7-277e1818e141', 'INSERT', '{"uuid": "fc136f9e-2bbc-4f9a-b9d7-277e1818e141", "assumed": true, "ascendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "descendantuuid": "4d6a853b-5d93-4400-ba4c-a28a96721af5", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f3a2f756-33e9-421c-bed1-b3ba44b61a97', 'INSERT', '{"uuid": "f3a2f756-33e9-421c-bed1-b3ba44b61a97", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'cb9db0cb-6a60-4f56-85e9-97ca9734071e', 'INSERT', '{"op": "INSERT", "uuid": "cb9db0cb-6a60-4f56-85e9-97ca9734071e", "objectuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'f4afe3a7-e4c7-4d56-b1da-53af2568bfc9', 'INSERT', '{"uuid": "f4afe3a7-e4c7-4d56-b1da-53af2568bfc9", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "cb9db0cb-6a60-4f56-85e9-97ca9734071e", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'INSERT', '{"uuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "title": "", "version": 0, "givenname": "Cecilia", "tradename": "", "familyname": "Camus", "persontype": "NP", "salutation": "Frau"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'INSERT', '{"uuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "serialid": 159, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', 'INSERT', '{"uuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "roletype": "OWNER", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'b38a6e56-e439-44d2-9ed6-3223e21c6224', 'INSERT', '{"op": "DELETE", "uuid": "b38a6e56-e439-44d2-9ed6-3223e21c6224", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'e156520b-d63f-4bf3-8a02-32fa64cdd3e2', 'INSERT', '{"uuid": "e156520b-d63f-4bf3-8a02-32fa64cdd3e2", "assumed": true, "ascendantuuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "descendantuuid": "b38a6e56-e439-44d2-9ed6-3223e21c6224", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '7d856866-730a-4037-95dd-a50906705098', 'INSERT', '{"uuid": "7d856866-730a-4037-95dd-a50906705098", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a68e0755-9441-4b22-ae6b-1bdfef94e3e4', 'INSERT', '{"uuid": "a68e0755-9441-4b22-ae6b-1bdfef94e3e4", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "grantedbyroleuuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'INSERT', '{"uuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "roletype": "ADMIN", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c3a212dc-036f-4e84-84b9-6e7367b407a1', 'INSERT', '{"op": "UPDATE", "uuid": "c3a212dc-036f-4e84-84b9-6e7367b407a1", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '443f5495-98be-4580-89eb-a2afa2d7f7d9', 'INSERT', '{"uuid": "443f5495-98be-4580-89eb-a2afa2d7f7d9", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "c3a212dc-036f-4e84-84b9-6e7367b407a1", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'ed164724-8168-4a4f-8445-ff973110a77f', 'INSERT', '{"uuid": "ed164724-8168-4a4f-8445-ff973110a77f", "assumed": true, "ascendantuuid": "b70eca31-fcf6-40f6-9792-2fdb66bb129b", "descendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'e97003a9-9162-4142-8d08-814e6c8fabd9', 'INSERT', '{"uuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "roletype": "REFERRER", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'd96f1d59-085b-4c42-9e01-1513b232a067', 'INSERT', '{"op": "SELECT", "uuid": "d96f1d59-085b-4c42-9e01-1513b232a067", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '8dea3c47-7171-4101-a215-15c7371b3a6d', 'INSERT', '{"uuid": "8dea3c47-7171-4101-a215-15c7371b3a6d", "assumed": true, "ascendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "descendantuuid": "d96f1d59-085b-4c42-9e01-1513b232a067", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '6a3344ed-1f0d-43a5-8e0a-a791472b7ffc', 'INSERT', '{"uuid": "6a3344ed-1f0d-43a5-8e0a-a791472b7ffc", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "38cc5d59-085f-449e-aeb3-439febbabd9b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'd8d23634-f1c6-4a13-bb39-bae8e187df04', 'INSERT', '{"op": "INSERT", "uuid": "d8d23634-f1c6-4a13-bb39-bae8e187df04", "objectuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '7340d2f8-170d-4eb6-8218-1cac9432d709', 'INSERT', '{"uuid": "7340d2f8-170d-4eb6-8218-1cac9432d709", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "d8d23634-f1c6-4a13-bb39-bae8e187df04", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'INSERT', '{"uuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "title": "", "version": 0, "givenname": "Christiane", "tradename": "Wasserwerk Südholstein", "familyname": "Milberg", "persontype": "??", "salutation": "Frau"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'INSERT', '{"uuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "serialid": 160, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', 'INSERT', '{"uuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "roletype": "OWNER", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'f3e17013-eb06-49e1-94a8-2e81e0f8a706', 'INSERT', '{"op": "DELETE", "uuid": "f3e17013-eb06-49e1-94a8-2e81e0f8a706", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '26d1fa5a-b06c-40d0-829b-f014bf33975e', 'INSERT', '{"uuid": "26d1fa5a-b06c-40d0-829b-f014bf33975e", "assumed": true, "ascendantuuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "descendantuuid": "f3e17013-eb06-49e1-94a8-2e81e0f8a706", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '76e9493e-a2db-4b94-b324-77f11f2d5b80', 'INSERT', '{"uuid": "76e9493e-a2db-4b94-b324-77f11f2d5b80", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '97286182-f6c9-4684-8634-7c28a099043d', 'INSERT', '{"uuid": "97286182-f6c9-4684-8634-7c28a099043d", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "grantedbyroleuuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '1373e547-4804-4c8d-9014-ce51c65f3a06', 'INSERT', '{"uuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "roletype": "ADMIN", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '6712a948-ac81-455e-8d87-cb05438ac85d', 'INSERT', '{"op": "UPDATE", "uuid": "6712a948-ac81-455e-8d87-cb05438ac85d", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '4a0f7682-96b0-4078-bf24-b816ffe12616', 'INSERT', '{"uuid": "4a0f7682-96b0-4078-bf24-b816ffe12616", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "6712a948-ac81-455e-8d87-cb05438ac85d", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0a4bd37d-fe74-4667-8832-81acfd7d88dd', 'INSERT', '{"uuid": "0a4bd37d-fe74-4667-8832-81acfd7d88dd", "assumed": true, "ascendantuuid": "4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3", "descendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'bdeffe17-405f-4ad0-8131-82728ea0e382', 'INSERT', '{"uuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "roletype": "REFERRER", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '3e298df0-8c98-4e48-a103-cfd3bbe2bec6', 'INSERT', '{"op": "SELECT", "uuid": "3e298df0-8c98-4e48-a103-cfd3bbe2bec6", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '88771617-b8ff-48ed-86e1-24a097fdc443', 'INSERT', '{"uuid": "88771617-b8ff-48ed-86e1-24a097fdc443", "assumed": true, "ascendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "descendantuuid": "3e298df0-8c98-4e48-a103-cfd3bbe2bec6", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'b11a3cd2-4e11-4cb7-b704-640e80d04647', 'INSERT', '{"uuid": "b11a3cd2-4e11-4cb7-b704-640e80d04647", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'afceedea-4a23-4f6f-a0a2-a210ac148935', 'INSERT', '{"op": "INSERT", "uuid": "afceedea-4a23-4f6f-a0a2-a210ac148935", "objectuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a9787820-a6e2-43ca-8934-63e56a28b694', 'INSERT', '{"uuid": "a9787820-a6e2-43ca-8934-63e56a28b694", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "afceedea-4a23-4f6f-a0a2-a210ac148935", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'INSERT', '{"uuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "title": "", "version": 0, "givenname": "Richard", "tradename": "Das Perfekte Haus", "familyname": "Wiese", "persontype": "??", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'INSERT', '{"uuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "serialid": 161, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '3f156460-0b5e-4e31-9ffe-bd27ad172ade', 'INSERT', '{"uuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "roletype": "OWNER", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '9fe16585-5125-43c0-a683-f4d1579f784b', 'INSERT', '{"op": "DELETE", "uuid": "9fe16585-5125-43c0-a683-f4d1579f784b", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '576f1a0c-739b-42b5-a888-2dd8c5789baa', 'INSERT', '{"uuid": "576f1a0c-739b-42b5-a888-2dd8c5789baa", "assumed": true, "ascendantuuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "descendantuuid": "9fe16585-5125-43c0-a683-f4d1579f784b", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'd326a63a-bcfa-44ca-91db-c6de702e9bd4', 'INSERT', '{"uuid": "d326a63a-bcfa-44ca-91db-c6de702e9bd4", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '85c18c00-90e0-462c-bdb4-60428d3e7b0e', 'INSERT', '{"uuid": "85c18c00-90e0-462c-bdb4-60428d3e7b0e", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "grantedbyroleuuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '957da54d-43eb-45d5-a3c4-34976d178bf3', 'INSERT', '{"uuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "roletype": "ADMIN", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '9405dc92-3dc7-4f4a-b799-514ce78ac05a', 'INSERT', '{"op": "UPDATE", "uuid": "9405dc92-3dc7-4f4a-b799-514ce78ac05a", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '060c2174-e50d-4912-91c1-f1572a148dad', 'INSERT', '{"uuid": "060c2174-e50d-4912-91c1-f1572a148dad", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "9405dc92-3dc7-4f4a-b799-514ce78ac05a", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '10790a03-fb59-468f-ad85-d7ab74d790f6', 'INSERT', '{"uuid": "10790a03-fb59-468f-ad85-d7ab74d790f6", "assumed": true, "ascendantuuid": "3f156460-0b5e-4e31-9ffe-bd27ad172ade", "descendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', 'INSERT', '{"uuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "roletype": "REFERRER", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '0b519921-7548-446f-a6e2-0986f0cec622', 'INSERT', '{"op": "SELECT", "uuid": "0b519921-7548-446f-a6e2-0986f0cec622", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'cb3b7398-6065-4c42-a456-41bc192ce327', 'INSERT', '{"uuid": "cb3b7398-6065-4c42-a456-41bc192ce327", "assumed": true, "ascendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "descendantuuid": "0b519921-7548-446f-a6e2-0986f0cec622", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'bdd47305-1888-4f01-9320-e68d3dd73b9e', 'INSERT', '{"uuid": "bdd47305-1888-4f01-9320-e68d3dd73b9e", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "grantedbyroleuuid": null, "grantedbytriggerof": "d7485220-e4f2-4683-9e84-7728a2ef4ebf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '6d013dc5-c320-4873-99bb-d3cbd287ccf5', 'INSERT', '{"op": "INSERT", "uuid": "6d013dc5-c320-4873-99bb-d3cbd287ccf5", "objectuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '40085698-b003-4234-86c6-76eff547ea0f', 'INSERT', '{"uuid": "40085698-b003-4234-86c6-76eff547ea0f", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "6d013dc5-c320-4873-99bb-d3cbd287ccf5", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'INSERT', '{"uuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "title": "", "version": 0, "givenname": "Karim", "tradename": "Wasswerwerk Südholstein", "familyname": "Metzger", "persontype": "??", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'INSERT', '{"uuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "serialid": 162, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '5c561605-0895-4a2b-b850-9572156e6635', 'INSERT', '{"uuid": "5c561605-0895-4a2b-b850-9572156e6635", "roletype": "OWNER", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '08008ffa-675e-46e6-8f5c-bbb701d67fd1', 'INSERT', '{"op": "DELETE", "uuid": "08008ffa-675e-46e6-8f5c-bbb701d67fd1", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '507a9fe5-cf54-4d19-927b-ce85943cc782', 'INSERT', '{"uuid": "507a9fe5-cf54-4d19-927b-ce85943cc782", "assumed": true, "ascendantuuid": "5c561605-0895-4a2b-b850-9572156e6635", "descendantuuid": "08008ffa-675e-46e6-8f5c-bbb701d67fd1", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3f28348f-ce57-4a07-80b6-7fc85ca9153c', 'INSERT', '{"uuid": "3f28348f-ce57-4a07-80b6-7fc85ca9153c", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "5c561605-0895-4a2b-b850-9572156e6635", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '5da8c927-3d13-486e-b3c5-dad2a31a70fd', 'INSERT', '{"uuid": "5da8c927-3d13-486e-b3c5-dad2a31a70fd", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5c561605-0895-4a2b-b850-9572156e6635", "grantedbyroleuuid": "5c561605-0895-4a2b-b850-9572156e6635", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '8bfcdf97-8c34-46ca-8159-1314cbb42105', 'INSERT', '{"uuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "roletype": "ADMIN", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c8583847-e84a-4286-b04f-368c61118b00', 'INSERT', '{"op": "UPDATE", "uuid": "c8583847-e84a-4286-b04f-368c61118b00", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'c4ab1a59-0e67-47bc-a48f-a553a8b50794', 'INSERT', '{"uuid": "c4ab1a59-0e67-47bc-a48f-a553a8b50794", "assumed": true, "ascendantuuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "descendantuuid": "c8583847-e84a-4286-b04f-368c61118b00", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '284fd022-3236-4ee0-ae0e-1a2899a8f2c9', 'INSERT', '{"uuid": "284fd022-3236-4ee0-ae0e-1a2899a8f2c9", "assumed": true, "ascendantuuid": "5c561605-0895-4a2b-b850-9572156e6635", "descendantuuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'd8c41124-ff96-4bc4-b3be-d0a8091128b6', 'INSERT', '{"uuid": "d8c41124-ff96-4bc4-b3be-d0a8091128b6", "roletype": "REFERRER", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'ea2e5ea3-6e8e-473e-9bca-3972c30c727a', 'INSERT', '{"op": "SELECT", "uuid": "ea2e5ea3-6e8e-473e-9bca-3972c30c727a", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '94be11ba-9d31-480d-b264-47adfa74df20', 'INSERT', '{"uuid": "94be11ba-9d31-480d-b264-47adfa74df20", "assumed": true, "ascendantuuid": "d8c41124-ff96-4bc4-b3be-d0a8091128b6", "descendantuuid": "ea2e5ea3-6e8e-473e-9bca-3972c30c727a", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'c695866c-6901-442a-a657-c32fb5320bd4', 'INSERT', '{"uuid": "c695866c-6901-442a-a657-c32fb5320bd4", "assumed": true, "ascendantuuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "descendantuuid": "d8c41124-ff96-4bc4-b3be-d0a8091128b6", "grantedbyroleuuid": null, "grantedbytriggerof": "d6488771-b5c0-4f39-a6d6-81af6ca982f4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c33ab3ab-3d3d-44be-987e-9f1ad950f25c', 'INSERT', '{"op": "INSERT", "uuid": "c33ab3ab-3d3d-44be-987e-9f1ad950f25c", "objectuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'b631b878-8ffe-4a79-9e49-30f7b0c08c6c', 'INSERT', '{"uuid": "b631b878-8ffe-4a79-9e49-30f7b0c08c6c", "assumed": true, "ascendantuuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "descendantuuid": "c33ab3ab-3d3d-44be-987e-9f1ad950f25c", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'INSERT', '{"uuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "title": "", "version": 0, "givenname": "Inhaber R.", "tradename": "Das Perfekte Haus", "familyname": "Wiese", "persontype": "??", "salutation": "Herr"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'INSERT', '{"uuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "serialid": 163, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '84f70526-107d-4b57-b7c2-653c8efc2737', 'INSERT', '{"uuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "roletype": "OWNER", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'ede31012-fbaa-4a4a-b5db-001a2ded08ea', 'INSERT', '{"op": "DELETE", "uuid": "ede31012-fbaa-4a4a-b5db-001a2ded08ea", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'cafa308f-ea72-49c3-b221-a6aba5fcfb74', 'INSERT', '{"uuid": "cafa308f-ea72-49c3-b221-a6aba5fcfb74", "assumed": true, "ascendantuuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "descendantuuid": "ede31012-fbaa-4a4a-b5db-001a2ded08ea", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '85fb9a91-865f-4f7c-84db-df341ae37a8f', 'INSERT', '{"uuid": "85fb9a91-865f-4f7c-84db-df341ae37a8f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3019aa7a-378d-4f1e-8805-5ed585007161', 'INSERT', '{"uuid": "3019aa7a-378d-4f1e-8805-5ed585007161", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "grantedbyroleuuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', 'INSERT', '{"uuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "roletype": "ADMIN", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'dbc52a0b-fe89-46a8-89a8-f155a437fe07', 'INSERT', '{"op": "UPDATE", "uuid": "dbc52a0b-fe89-46a8-89a8-f155a437fe07", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '81204f4a-102e-49f9-a5d9-f32c3854109f', 'INSERT', '{"uuid": "81204f4a-102e-49f9-a5d9-f32c3854109f", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "dbc52a0b-fe89-46a8-89a8-f155a437fe07", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '69cde6f0-839d-4b94-8045-f65521ef864e', 'INSERT', '{"uuid": "69cde6f0-839d-4b94-8045-f65521ef864e", "assumed": true, "ascendantuuid": "84f70526-107d-4b57-b7c2-653c8efc2737", "descendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'b29939d1-67c0-4527-88fd-41812023f402', 'INSERT', '{"uuid": "b29939d1-67c0-4527-88fd-41812023f402", "roletype": "REFERRER", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'cd5218c0-fc28-464c-bb9e-ea0eb9698f66', 'INSERT', '{"op": "SELECT", "uuid": "cd5218c0-fc28-464c-bb9e-ea0eb9698f66", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '0e9156e0-bfc5-4e7b-aa50-29bb214577cd', 'INSERT', '{"uuid": "0e9156e0-bfc5-4e7b-aa50-29bb214577cd", "assumed": true, "ascendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "descendantuuid": "cd5218c0-fc28-464c-bb9e-ea0eb9698f66", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'e0b94c3c-ea4c-485e-9ad9-a58cddffa3cb', 'INSERT', '{"uuid": "e0b94c3c-ea4c-485e-9ad9-a58cddffa3cb", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "grantedbyroleuuid": null, "grantedbytriggerof": "7c10a7d7-bac2-41e2-a5c0-963e191239a8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '10cd909b-0099-491f-9a73-0cf1d7765f35', 'INSERT', '{"op": "INSERT", "uuid": "10cd909b-0099-491f-9a73-0cf1d7765f35", "objectuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'aeeb2346-c0c5-44c3-9378-2c28cd25ccf5', 'INSERT', '{"uuid": "aeeb2346-c0c5-44c3-9378-2c28cd25ccf5", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "10cd909b-0099-491f-9a73-0cf1d7765f35", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'INSERT', '{"uuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "title": "", "version": 0, "givenname": "Ragnar", "tradename": "", "familyname": "Richter", "persontype": "NP", "salutation": ""}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'INSERT', '{"uuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "serialid": 164, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'db6edaf5-7e57-4e26-8172-20fe06d19e16', 'INSERT', '{"uuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "roletype": "OWNER", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'bd7f4de4-1435-42c2-a275-b56e49670e52', 'INSERT', '{"op": "DELETE", "uuid": "bd7f4de4-1435-42c2-a275-b56e49670e52", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '75de0bbe-b77e-4328-a30a-3173eb7ac971', 'INSERT', '{"uuid": "75de0bbe-b77e-4328-a30a-3173eb7ac971", "assumed": true, "ascendantuuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "descendantuuid": "bd7f4de4-1435-42c2-a275-b56e49670e52", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '54a35482-3a81-4513-a2a4-6f820ee9ca7e', 'INSERT', '{"uuid": "54a35482-3a81-4513-a2a4-6f820ee9ca7e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'a0755eae-b481-4e5d-80de-867fc275bbcf', 'INSERT', '{"uuid": "a0755eae-b481-4e5d-80de-867fc275bbcf", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "grantedbyroleuuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '5f936257-6096-4792-a496-b92e46d93d0a', 'INSERT', '{"uuid": "5f936257-6096-4792-a496-b92e46d93d0a", "roletype": "ADMIN", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '3086d58a-42c3-4c88-ba4c-a1025e79218d', 'INSERT', '{"op": "UPDATE", "uuid": "3086d58a-42c3-4c88-ba4c-a1025e79218d", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '9ef9980c-19c0-4387-b05d-b036f03bd1ae', 'INSERT', '{"uuid": "9ef9980c-19c0-4387-b05d-b036f03bd1ae", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "3086d58a-42c3-4c88-ba4c-a1025e79218d", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'b368b9e7-c014-4179-838f-5e5f39a319c2', 'INSERT', '{"uuid": "b368b9e7-c014-4179-838f-5e5f39a319c2", "assumed": true, "ascendantuuid": "db6edaf5-7e57-4e26-8172-20fe06d19e16", "descendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '814e38c8-c053-4c27-9487-997cf318a550', 'INSERT', '{"uuid": "814e38c8-c053-4c27-9487-997cf318a550", "roletype": "REFERRER", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', 'c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156', 'INSERT', '{"op": "SELECT", "uuid": "c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'd404ab50-71f3-4e9f-8d11-d9a79c724b4d', 'INSERT', '{"uuid": "d404ab50-71f3-4e9f-8d11-d9a79c724b4d", "assumed": true, "ascendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "descendantuuid": "c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '76051553-cbf2-4278-b0b0-c3359028d7e6', 'INSERT', '{"uuid": "76051553-cbf2-4278-b0b0-c3359028d7e6", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "grantedbyroleuuid": null, "grantedbytriggerof": "c3d97013-0ceb-4cc7-a59b-a4f70107acea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '529abd87-8855-4eab-a795-a83717bfa4b1', 'INSERT', '{"op": "INSERT", "uuid": "529abd87-8855-4eab-a795-a83717bfa4b1", "objectuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'b9b34809-b46f-4557-9a2a-c05d8ffdd1b9', 'INSERT', '{"uuid": "b9b34809-b46f-4557-9a2a-c05d8ffdd1b9", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "529abd87-8855-4eab-a795-a83717bfa4b1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'INSERT', '{"uuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "title": "", "version": 0, "givenname": "Eike", "tradename": "", "familyname": "Henning", "persontype": "NP", "salutation": ""}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.object', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'INSERT', '{"uuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "serialid": 165, "objecttable": "hs_office.person"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '0e51c89f-6101-4b6e-be17-53df018b88f5', 'INSERT', '{"uuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "roletype": "OWNER", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '6aa26a03-2515-4b88-97aa-1d100dfe872b', 'INSERT', '{"op": "DELETE", "uuid": "6aa26a03-2515-4b88-97aa-1d100dfe872b", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '41d012ed-2283-4f2b-beb3-837b6da3359c', 'INSERT', '{"uuid": "41d012ed-2283-4f2b-beb3-837b6da3359c", "assumed": true, "ascendantuuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "descendantuuid": "6aa26a03-2515-4b88-97aa-1d100dfe872b", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3c9fa558-256a-446c-bc5f-48f9d61d8fcb', 'INSERT', '{"uuid": "3c9fa558-256a-446c-bc5f-48f9d61d8fcb", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '37138c2b-aa91-4cf2-8c2b-45dd96aaa5f4', 'INSERT', '{"uuid": "37138c2b-aa91-4cf2-8c2b-45dd96aaa5f4", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "grantedbyroleuuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', 'de10229b-be9d-45dc-b1bf-8f832ebffe68', 'INSERT', '{"uuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "roletype": "ADMIN", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '8695131e-a5fe-4e01-81da-99769f924a12', 'INSERT', '{"op": "UPDATE", "uuid": "8695131e-a5fe-4e01-81da-99769f924a12", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '6f109a2d-c0c0-4fa4-8efb-2ebe1eb7b9de', 'INSERT', '{"uuid": "6f109a2d-c0c0-4fa4-8efb-2ebe1eb7b9de", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "8695131e-a5fe-4e01-81da-99769f924a12", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '09b015f6-1d81-42ca-a008-c0b3f48a4aba', 'INSERT', '{"uuid": "09b015f6-1d81-42ca-a008-c0b3f48a4aba", "assumed": true, "ascendantuuid": "0e51c89f-6101-4b6e-be17-53df018b88f5", "descendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.role', '779e4c3b-97f0-4218-8eab-5575a6afa54a', 'INSERT', '{"uuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "roletype": "REFERRER", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '10063dba-d6d4-43fa-ab89-d682c47a91fe', 'INSERT', '{"op": "SELECT", "uuid": "10063dba-d6d4-43fa-ab89-d682c47a91fe", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', 'd0cf16aa-f119-492d-8b84-c1d904b7da07', 'INSERT', '{"uuid": "d0cf16aa-f119-492d-8b84-c1d904b7da07", "assumed": true, "ascendantuuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "descendantuuid": "10063dba-d6d4-43fa-ab89-d682c47a91fe", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '3298e787-5a10-45a0-a0dc-51cb4c595eb3', 'INSERT', '{"uuid": "3298e787-5a10-45a0-a0dc-51cb4c595eb3", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "grantedbyroleuuid": null, "grantedbytriggerof": "e50c983a-060c-47c9-9d47-efd552b1e618"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.permission', '70cf4eb5-99e5-49d1-9c03-70316381bb21', 'INSERT', '{"op": "INSERT", "uuid": "70cf4eb5-99e5-49d1-9c03-70316381bb21", "objectuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "optablename": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'rbac.grant', '84c142bb-1cd2-41bc-b4d0-be850a736ef0', 'INSERT', '{"uuid": "84c142bb-1cd2-41bc-b4d0-be850a736ef0", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "70cf4eb5-99e5-49d1-9c03-70316381bb21", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1750', 'hs_office.person', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'INSERT', '{"uuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "title": "", "version": 0, "givenname": "Jan", "tradename": "", "familyname": "Henning", "persontype": "NP", "salutation": ""}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '48618c28-9304-4ccb-b022-e2cbb1832944', 'INSERT', '{"uuid": "48618c28-9304-4ccb-b022-e2cbb1832944", "serialid": 166, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1b453f97-a12c-4d51-bf95-2e782b425385', 'INSERT', '{"uuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "roletype": "OWNER", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4', 'INSERT', '{"op": "DELETE", "uuid": "cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b1863909-c091-4e66-b1ee-eeb427986f97', 'INSERT', '{"uuid": "b1863909-c091-4e66-b1ee-eeb427986f97", "assumed": true, "ascendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "descendantuuid": "cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '53c8a05d-7dd8-4faa-9c1b-02c02dff47df', 'INSERT', '{"uuid": "53c8a05d-7dd8-4faa-9c1b-02c02dff47df", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8213d9da-f8ca-437e-aa92-cbc5d9d458ba', 'INSERT', '{"uuid": "8213d9da-f8ca-437e-aa92-cbc5d9d458ba", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "grantedbyroleuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3b195996-371c-41e4-9b66-a50553582e17', 'INSERT', '{"uuid": "3b195996-371c-41e4-9b66-a50553582e17", "roletype": "ADMIN", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8e9ae339-2166-48b7-82e7-f319413db079', 'INSERT', '{"op": "UPDATE", "uuid": "8e9ae339-2166-48b7-82e7-f319413db079", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '17e46161-8f22-4300-afec-7cb6d8644ca9', 'INSERT', '{"uuid": "17e46161-8f22-4300-afec-7cb6d8644ca9", "assumed": true, "ascendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "descendantuuid": "8e9ae339-2166-48b7-82e7-f319413db079", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4c13c9aa-805a-4030-9543-a594366d3dd5', 'INSERT', '{"uuid": "4c13c9aa-805a-4030-9543-a594366d3dd5", "assumed": true, "ascendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "descendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', 'INSERT', '{"uuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "roletype": "AGENT", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a291504c-661a-439f-8724-3b57ca8da672', 'INSERT', '{"uuid": "a291504c-661a-439f-8724-3b57ca8da672", "assumed": true, "ascendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "descendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', 'INSERT', '{"uuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "roletype": "TENANT", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ddcd1293-8e77-4cef-91ac-9abfbc2bcd44', 'INSERT', '{"op": "SELECT", "uuid": "ddcd1293-8e77-4cef-91ac-9abfbc2bcd44", "objectuuid": "48618c28-9304-4ccb-b022-e2cbb1832944", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f50b89e6-f34a-463f-af85-aeb520a7d831', 'INSERT', '{"uuid": "f50b89e6-f34a-463f-af85-aeb520a7d831", "assumed": true, "ascendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "descendantuuid": "ddcd1293-8e77-4cef-91ac-9abfbc2bcd44", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '41b763e3-60c6-40d7-ac4a-89e75e49eec6', 'INSERT', '{"uuid": "41b763e3-60c6-40d7-ac4a-89e75e49eec6", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '350cabf5-9716-493a-9cd2-2f954536faa4', 'INSERT', '{"uuid": "350cabf5-9716-493a-9cd2-2f954536faa4", "assumed": true, "ascendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "descendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2f4f0313-b62e-4932-9f41-cae6963a88af', 'INSERT', '{"uuid": "2f4f0313-b62e-4932-9f41-cae6963a88af", "assumed": true, "ascendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd7196d34-18f9-4ed4-b703-6534333cf8e2', 'INSERT', '{"uuid": "d7196d34-18f9-4ed4-b703-6534333cf8e2", "assumed": true, "ascendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3c25862f-829c-49fb-90a2-61bd22edf060', 'INSERT', '{"uuid": "3c25862f-829c-49fb-90a2-61bd22edf060", "assumed": true, "ascendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc27b1c7-0d02-49cb-959d-023a49c84fd7', 'INSERT', '{"uuid": "bc27b1c7-0d02-49cb-959d-023a49c84fd7", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2c78b77e-b708-4198-835c-2fbcabcea7c1', 'INSERT', '{"uuid": "2c78b77e-b708-4198-835c-2fbcabcea7c1", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "grantedbyroleuuid": null, "grantedbytriggerof": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '48618c28-9304-4ccb-b022-e2cbb1832944', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "48618c28-9304-4ccb-b022-e2cbb1832944", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'INSERT', '{"uuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "serialid": 167, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '98d81696-7c71-4ffe-bfc2-1fea37613440', 'INSERT', '{"uuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "roletype": "OWNER", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '43b09570-1e0c-43b9-811c-4aeb27eba284', 'INSERT', '{"op": "DELETE", "uuid": "43b09570-1e0c-43b9-811c-4aeb27eba284", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '13875afa-e93d-4e1b-83f6-666292ebae24', 'INSERT', '{"uuid": "13875afa-e93d-4e1b-83f6-666292ebae24", "assumed": true, "ascendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "descendantuuid": "43b09570-1e0c-43b9-811c-4aeb27eba284", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '73eb3d48-4daf-4dfe-9c23-2928dea6de58', 'INSERT', '{"uuid": "73eb3d48-4daf-4dfe-9c23-2928dea6de58", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '760fbe86-6b00-4c68-bd19-a65fd477a818', 'INSERT', '{"uuid": "760fbe86-6b00-4c68-bd19-a65fd477a818", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "grantedbyroleuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0f5c3f08-d249-404a-b740-d759fced2d09', 'INSERT', '{"uuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "roletype": "ADMIN", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '756acc01-691c-46c1-b2f4-53321cc442a2', 'INSERT', '{"op": "UPDATE", "uuid": "756acc01-691c-46c1-b2f4-53321cc442a2", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '50d75c09-191f-4132-8e8a-d1a1aa072443', 'INSERT', '{"uuid": "50d75c09-191f-4132-8e8a-d1a1aa072443", "assumed": true, "ascendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "descendantuuid": "756acc01-691c-46c1-b2f4-53321cc442a2", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b30af129-1376-4bcb-9538-f21a660dd6cb', 'INSERT', '{"uuid": "b30af129-1376-4bcb-9538-f21a660dd6cb", "assumed": true, "ascendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "descendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6c0656b5-472b-4859-af3a-b8f1c53231a5', 'INSERT', '{"uuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "roletype": "AGENT", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '23259cd9-4388-43ec-9d6f-4f8fdac89b91', 'INSERT', '{"uuid": "23259cd9-4388-43ec-9d6f-4f8fdac89b91", "assumed": true, "ascendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "descendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', 'INSERT', '{"uuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "roletype": "TENANT", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '75550e48-c62e-4734-9406-ad720b5b1f90', 'INSERT', '{"op": "SELECT", "uuid": "75550e48-c62e-4734-9406-ad720b5b1f90", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c9f10142-c1f0-4639-a9b3-08b195830787', 'INSERT', '{"uuid": "c9f10142-c1f0-4639-a9b3-08b195830787", "assumed": true, "ascendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "descendantuuid": "75550e48-c62e-4734-9406-ad720b5b1f90", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fb781f97-f5ee-44a6-a83b-89952ceb9706', 'INSERT', '{"uuid": "fb781f97-f5ee-44a6-a83b-89952ceb9706", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '73ffa08f-31ae-4101-bd02-a0de9144f82b', 'INSERT', '{"uuid": "73ffa08f-31ae-4101-bd02-a0de9144f82b", "assumed": true, "ascendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "descendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eea1adff-7c6b-47ae-9bc4-1a54dbfd027d', 'INSERT', '{"uuid": "eea1adff-7c6b-47ae-9bc4-1a54dbfd027d", "assumed": true, "ascendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '818fd81d-cca1-4416-a26d-8f02d8a19a2d', 'INSERT', '{"uuid": "818fd81d-cca1-4416-a26d-8f02d8a19a2d", "assumed": true, "ascendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9b8a35d0-0790-4749-90ad-bbaf2a62753f', 'INSERT', '{"uuid": "9b8a35d0-0790-4749-90ad-bbaf2a62753f", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '67455246-3c3c-410d-9465-574f5651c698', 'INSERT', '{"uuid": "67455246-3c3c-410d-9465-574f5651c698", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "grantedbyroleuuid": null, "grantedbytriggerof": "f415978e-b5c2-4a99-962e-3d31a4658780"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f3bf0870-b546-4607-a032-a3da135dda48', 'INSERT', '{"op": "INSERT", "uuid": "f3bf0870-b546-4607-a032-a3da135dda48", "objectuuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '134c2594-fd40-4cf9-b55d-34a2c0927521', 'INSERT', '{"uuid": "134c2594-fd40-4cf9-b55d-34a2c0927521", "assumed": true, "ascendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "descendantuuid": "f3bf0870-b546-4607-a032-a3da135dda48", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'INSERT', '{"uuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287", "serialid": 168, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b26cca89-03f0-4498-bf64-7385c0b7244a', 'INSERT', '{"uuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "roletype": "OWNER", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9998b7f8-aa0f-44b9-813c-61a2861e242e', 'INSERT', '{"op": "DELETE", "uuid": "9998b7f8-aa0f-44b9-813c-61a2861e242e", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '20ae8592-3c34-4ff5-a08a-4b78b6f06ec4', 'INSERT', '{"uuid": "20ae8592-3c34-4ff5-a08a-4b78b6f06ec4", "assumed": true, "ascendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "descendantuuid": "9998b7f8-aa0f-44b9-813c-61a2861e242e", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f0e59d15-a201-4e8a-8429-d12f6c5e85d1', 'INSERT', '{"uuid": "f0e59d15-a201-4e8a-8429-d12f6c5e85d1", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '199a84b3-9e30-4a9e-a7e4-1a1e193c7744', 'INSERT', '{"uuid": "199a84b3-9e30-4a9e-a7e4-1a1e193c7744", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "grantedbyroleuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '76968391-174d-4530-b310-1244c4b1897a', 'INSERT', '{"uuid": "76968391-174d-4530-b310-1244c4b1897a", "roletype": "ADMIN", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7ffabc42-58db-42c2-a3cb-e4ed830f47af', 'INSERT', '{"op": "UPDATE", "uuid": "7ffabc42-58db-42c2-a3cb-e4ed830f47af", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '27356c34-8a36-42c9-8df3-b631c85beb9f', 'INSERT', '{"uuid": "27356c34-8a36-42c9-8df3-b631c85beb9f", "assumed": true, "ascendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "descendantuuid": "7ffabc42-58db-42c2-a3cb-e4ed830f47af", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c8ec3f73-a9da-437b-8210-5fac4f461a76', 'INSERT', '{"uuid": "c8ec3f73-a9da-437b-8210-5fac4f461a76", "assumed": true, "ascendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "descendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '863eea7c-8b49-494a-9654-9963f2dbb4e5', 'INSERT', '{"uuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "roletype": "AGENT", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4147266e-d023-4753-92ec-07a66f831815', 'INSERT', '{"uuid": "4147266e-d023-4753-92ec-07a66f831815", "assumed": true, "ascendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "descendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', 'INSERT', '{"uuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "roletype": "TENANT", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '11a4c50e-451c-4041-92c6-671263f82f2d', 'INSERT', '{"op": "SELECT", "uuid": "11a4c50e-451c-4041-92c6-671263f82f2d", "objectuuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bdf804a6-d255-43bf-b752-934d962f7a9a', 'INSERT', '{"uuid": "bdf804a6-d255-43bf-b752-934d962f7a9a", "assumed": true, "ascendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "descendantuuid": "11a4c50e-451c-4041-92c6-671263f82f2d", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ce23e4aa-4648-4b1c-871b-0e23b3913ef1', 'INSERT', '{"uuid": "ce23e4aa-4648-4b1c-871b-0e23b3913ef1", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1a1ec60e-8a1e-472e-80c4-c795e0705237', 'INSERT', '{"uuid": "1a1ec60e-8a1e-472e-80c4-c795e0705237", "assumed": true, "ascendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "descendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b67f3a92-1dc2-4375-b581-7e2f6984c6ff', 'INSERT', '{"uuid": "b67f3a92-1dc2-4375-b581-7e2f6984c6ff", "assumed": true, "ascendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '81fd75b4-f29e-4a07-91fe-579bc357d4ad', 'INSERT', '{"uuid": "81fd75b4-f29e-4a07-91fe-579bc357d4ad", "assumed": true, "ascendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1a8ac30e-dfc4-4a15-a89f-5ae76e346844', 'INSERT', '{"uuid": "1a8ac30e-dfc4-4a15-a89f-5ae76e346844", "assumed": true, "ascendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a454e188-5f6a-4ce7-bf19-16b55f88482a', 'INSERT', '{"uuid": "a454e188-5f6a-4ce7-bf19-16b55f88482a", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ab85381b-5249-47ac-88d0-c89c412d0fda', 'INSERT', '{"uuid": "ab85381b-5249-47ac-88d0-c89c412d0fda", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "grantedbyroleuuid": null, "grantedbytriggerof": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'INSERT', '{"uuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "serialid": 169, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', 'INSERT', '{"uuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "roletype": "OWNER", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a78188dd-3129-488c-b6e1-4889725f5215', 'INSERT', '{"op": "DELETE", "uuid": "a78188dd-3129-488c-b6e1-4889725f5215", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b8350678-d30a-422a-bb5d-79c65af2f890', 'INSERT', '{"uuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "roletype": "ADMIN", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '957e1c17-2ade-4622-b9c1-958a3ddda746', 'INSERT', '{"uuid": "957e1c17-2ade-4622-b9c1-958a3ddda746", "assumed": true, "ascendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "descendantuuid": "a78188dd-3129-488c-b6e1-4889725f5215", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6d28e53e-2724-4968-bdcd-e9bbba70bf30', 'INSERT', '{"uuid": "6d28e53e-2724-4968-bdcd-e9bbba70bf30", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7da60e3d-0309-46d0-afbc-da2269a30e81', 'INSERT', '{"uuid": "7da60e3d-0309-46d0-afbc-da2269a30e81", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "grantedbyroleuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8255ff29-5961-496b-9fda-c71078e47e51', 'INSERT', '{"uuid": "8255ff29-5961-496b-9fda-c71078e47e51", "roletype": "ADMIN", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '19382a5a-b982-49ac-9005-9358fa7a670a', 'INSERT', '{"op": "UPDATE", "uuid": "19382a5a-b982-49ac-9005-9358fa7a670a", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '16bd32c5-1fb8-47c8-835b-ef21c321916a', 'INSERT', '{"uuid": "16bd32c5-1fb8-47c8-835b-ef21c321916a", "assumed": true, "ascendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "descendantuuid": "19382a5a-b982-49ac-9005-9358fa7a670a", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b5a66d0f-f2e8-4ad4-9048-f23e80d29869', 'INSERT', '{"uuid": "b5a66d0f-f2e8-4ad4-9048-f23e80d29869", "assumed": true, "ascendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "descendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'fe0228ea-649c-45a4-b729-181aba7f3294', 'INSERT', '{"uuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "roletype": "AGENT", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '31338810-20f5-449d-8270-13a4d48162a2', 'INSERT', '{"uuid": "31338810-20f5-449d-8270-13a4d48162a2", "assumed": true, "ascendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "descendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f218c4d9-d10b-4445-b381-b73a71f5848c', 'INSERT', '{"uuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "roletype": "TENANT", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '6ebe0c4d-1649-4d08-897e-805019faced9', 'INSERT', '{"op": "SELECT", "uuid": "6ebe0c4d-1649-4d08-897e-805019faced9", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e1f74e4b-3283-4892-b61a-3d73d3c2232b', 'INSERT', '{"uuid": "e1f74e4b-3283-4892-b61a-3d73d3c2232b", "assumed": true, "ascendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "descendantuuid": "6ebe0c4d-1649-4d08-897e-805019faced9", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e6958262-cfeb-4a7c-8004-1943ab79b429', 'INSERT', '{"uuid": "e6958262-cfeb-4a7c-8004-1943ab79b429", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6b066f12-6113-4016-a776-45feb5fa565d', 'INSERT', '{"uuid": "6b066f12-6113-4016-a776-45feb5fa565d", "assumed": true, "ascendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "descendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f84e3e07-910e-40cc-9b82-bd739fa3754d', 'INSERT', '{"uuid": "f84e3e07-910e-40cc-9b82-bd739fa3754d", "assumed": true, "ascendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c05042dd-31c3-4353-99aa-7b2728751fd3', 'INSERT', '{"uuid": "c05042dd-31c3-4353-99aa-7b2728751fd3", "assumed": true, "ascendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'af03a3ed-0a14-42ea-b6cd-60675f1785ac', 'INSERT', '{"uuid": "af03a3ed-0a14-42ea-b6cd-60675f1785ac", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd9f780ca-ba82-4279-85c8-6ca168938d2e', 'INSERT', '{"uuid": "d9f780ca-ba82-4279-85c8-6ca168938d2e", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "grantedbyroleuuid": null, "grantedbytriggerof": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f5fc0f70-790b-460b-a072-d1f9c01bc7de', 'INSERT', '{"op": "INSERT", "uuid": "f5fc0f70-790b-460b-a072-d1f9c01bc7de", "objectuuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2458ddeb-be02-4d0d-b7c7-c3c75981b32d', 'INSERT', '{"uuid": "2458ddeb-be02-4d0d-b7c7-c3c75981b32d", "assumed": true, "ascendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "descendantuuid": "f5fc0f70-790b-460b-a072-d1f9c01bc7de", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'INSERT', '{"uuid": "f85f9a58-7651-417f-b1b2-cf522bcce415", "serialid": 170, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5242e0b6-12e3-4a59-bf06-de114cb69ff4', 'INSERT', '{"uuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "roletype": "OWNER", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fc09e45c-99c6-46ff-a51f-39de6d561c93', 'INSERT', '{"op": "DELETE", "uuid": "fc09e45c-99c6-46ff-a51f-39de6d561c93", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '213b814a-4f8f-4eb5-9a06-ef7ebd9006bd', 'INSERT', '{"uuid": "213b814a-4f8f-4eb5-9a06-ef7ebd9006bd", "assumed": true, "ascendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "descendantuuid": "fc09e45c-99c6-46ff-a51f-39de6d561c93", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e24b7e89-1446-4179-af6e-ffff06252b2d', 'INSERT', '{"uuid": "e24b7e89-1446-4179-af6e-ffff06252b2d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c47f555a-4a8e-4bdb-a879-bbcf15fd9b43', 'INSERT', '{"uuid": "c47f555a-4a8e-4bdb-a879-bbcf15fd9b43", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "grantedbyroleuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '87567caf-5abc-4511-9191-27dbdbbee88b', 'INSERT', '{"op": "UPDATE", "uuid": "87567caf-5abc-4511-9191-27dbdbbee88b", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e38a8794-b4db-46e4-b67d-837a7c1a3b14', 'INSERT', '{"uuid": "e38a8794-b4db-46e4-b67d-837a7c1a3b14", "assumed": true, "ascendantuuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "descendantuuid": "87567caf-5abc-4511-9191-27dbdbbee88b", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '068f8780-cc84-478f-a854-bf547462928c', 'INSERT', '{"uuid": "068f8780-cc84-478f-a854-bf547462928c", "assumed": true, "ascendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "descendantuuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'INSERT', '{"uuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "roletype": "AGENT", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '451ef309-629c-4ae8-8a77-2ea3031ddf5b', 'INSERT', '{"uuid": "451ef309-629c-4ae8-8a77-2ea3031ddf5b", "assumed": true, "ascendantuuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "descendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'c85e8116-355e-408a-93fa-c699da2a76f3', 'INSERT', '{"uuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "roletype": "TENANT", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5fe9a533-2cd3-4433-811c-fcc415acdf60', 'INSERT', '{"op": "SELECT", "uuid": "5fe9a533-2cd3-4433-811c-fcc415acdf60", "objectuuid": "f85f9a58-7651-417f-b1b2-cf522bcce415", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'da4d7c96-becf-4375-91eb-2796ad6a6080', 'INSERT', '{"uuid": "da4d7c96-becf-4375-91eb-2796ad6a6080", "assumed": true, "ascendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "descendantuuid": "5fe9a533-2cd3-4433-811c-fcc415acdf60", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5398a652-1892-4d2c-8a04-d9e4797e7b74', 'INSERT', '{"uuid": "5398a652-1892-4d2c-8a04-d9e4797e7b74", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cd8cea28-0a51-4138-b8f4-c4ab1434be57', 'INSERT', '{"uuid": "cd8cea28-0a51-4138-b8f4-c4ab1434be57", "assumed": true, "ascendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "descendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '03061e1b-65d1-4d11-abc7-d8e7ec1fe19f', 'INSERT', '{"uuid": "03061e1b-65d1-4d11-abc7-d8e7ec1fe19f", "assumed": true, "ascendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "descendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a37e1b17-c3d5-4a4d-bfc5-3acbdf1f6aa3', 'INSERT', '{"uuid": "a37e1b17-c3d5-4a4d-bfc5-3acbdf1f6aa3", "assumed": true, "ascendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1ece18ff-7bab-4131-a86f-29e228905d29', 'INSERT', '{"uuid": "1ece18ff-7bab-4131-a86f-29e228905d29", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f0ef38f9-1f74-4ece-9545-becfca68e4b0', 'INSERT', '{"uuid": "f0ef38f9-1f74-4ece-9545-becfca68e4b0", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "grantedbyroleuuid": null, "grantedbytriggerof": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "f85f9a58-7651-417f-b1b2-cf522bcce415", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "contactuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'INSERT', '{"uuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "serialid": 171, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3de42185-1e32-4936-b305-d990b85c45c2', 'INSERT', '{"uuid": "3de42185-1e32-4936-b305-d990b85c45c2", "roletype": "OWNER", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '359d8691-dc07-4b5a-9179-0f78927b4660', 'INSERT', '{"op": "DELETE", "uuid": "359d8691-dc07-4b5a-9179-0f78927b4660", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f0e8cfe6-a221-45da-9365-1db2038523a7', 'INSERT', '{"uuid": "f0e8cfe6-a221-45da-9365-1db2038523a7", "assumed": true, "ascendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "descendantuuid": "359d8691-dc07-4b5a-9179-0f78927b4660", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '76b536c1-96bb-400b-bb19-428eabb921bf', 'INSERT', '{"uuid": "76b536c1-96bb-400b-bb19-428eabb921bf", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '28073fd9-9f01-4cb8-9d16-253af4a81e30', 'INSERT', '{"uuid": "28073fd9-9f01-4cb8-9d16-253af4a81e30", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "grantedbyroleuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', 'INSERT', '{"uuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "roletype": "ADMIN", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2698d560-1c07-48e5-9d9a-78ccfb2c0631', 'INSERT', '{"op": "UPDATE", "uuid": "2698d560-1c07-48e5-9d9a-78ccfb2c0631", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '27d55740-9964-46b5-9442-6db33186a8ff', 'INSERT', '{"uuid": "27d55740-9964-46b5-9442-6db33186a8ff", "assumed": true, "ascendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "descendantuuid": "2698d560-1c07-48e5-9d9a-78ccfb2c0631", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c3164a0f-34dc-4915-84c6-cbf8447290e4', 'INSERT', '{"uuid": "c3164a0f-34dc-4915-84c6-cbf8447290e4", "assumed": true, "ascendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "descendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', 'INSERT', '{"uuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "roletype": "AGENT", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '223e16ac-ae1d-41f0-bd5a-97ad8d7a8f02', 'INSERT', '{"uuid": "223e16ac-ae1d-41f0-bd5a-97ad8d7a8f02", "assumed": true, "ascendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "descendantuuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', 'INSERT', '{"uuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "roletype": "TENANT", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '21bc4186-042f-4643-bbea-61f44563225d', 'INSERT', '{"op": "SELECT", "uuid": "21bc4186-042f-4643-bbea-61f44563225d", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7083d2a0-ecb2-47c7-a857-60b9d4c52044', 'INSERT', '{"uuid": "7083d2a0-ecb2-47c7-a857-60b9d4c52044", "assumed": true, "ascendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "descendantuuid": "21bc4186-042f-4643-bbea-61f44563225d", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5015e0ca-124a-4250-9e0b-8ead9f6595f9', 'INSERT', '{"uuid": "5015e0ca-124a-4250-9e0b-8ead9f6595f9", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '308a364e-b65d-4599-a29d-c0948a1c79a4', 'INSERT', '{"uuid": "308a364e-b65d-4599-a29d-c0948a1c79a4", "assumed": true, "ascendantuuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "descendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '026ce7a1-3001-441f-b1e0-c4634da6e3a0', 'INSERT', '{"uuid": "026ce7a1-3001-441f-b1e0-c4634da6e3a0", "assumed": true, "ascendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "descendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6fc95ac7-9ceb-45f2-86b8-dc1fe34c3cce', 'INSERT', '{"uuid": "6fc95ac7-9ceb-45f2-86b8-dc1fe34c3cce", "assumed": true, "ascendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fefb4326-1b6b-451a-b502-67094bb01d18', 'INSERT', '{"uuid": "fefb4326-1b6b-451a-b502-67094bb01d18", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '36a2fb6f-578c-41e4-9581-0ff42f0d1aac', 'INSERT', '{"uuid": "36a2fb6f-578c-41e4-9581-0ff42f0d1aac", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "grantedbyroleuuid": null, "grantedbytriggerof": "78123dac-fed2-4e3e-817b-0c13a2129dfe"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7ceb0f31-aa57-433f-a2e3-0408c2b88b10', 'INSERT', '{"op": "INSERT", "uuid": "7ceb0f31-aa57-433f-a2e3-0408c2b88b10", "objectuuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a28bf37e-a03d-4b03-98e5-498b1ada6ea2', 'INSERT', '{"uuid": "a28bf37e-a03d-4b03-98e5-498b1ada6ea2", "assumed": true, "ascendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "descendantuuid": "7ceb0f31-aa57-433f-a2e3-0408c2b88b10", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "contactuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'INSERT', '{"uuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5", "serialid": 172, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0726dd6c-118e-4cbc-9077-d4dcb0e61643', 'INSERT', '{"uuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "roletype": "OWNER", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '24c34e16-c5e6-4571-b850-fb64b5ddb61f', 'INSERT', '{"op": "DELETE", "uuid": "24c34e16-c5e6-4571-b850-fb64b5ddb61f", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '242a0315-97b6-47a0-a863-2f7c98806c03', 'INSERT', '{"uuid": "242a0315-97b6-47a0-a863-2f7c98806c03", "assumed": true, "ascendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "descendantuuid": "24c34e16-c5e6-4571-b850-fb64b5ddb61f", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ae05d838-209a-4997-89f9-21d4b03bc0ee', 'INSERT', '{"uuid": "ae05d838-209a-4997-89f9-21d4b03bc0ee", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6e48a3f5-7017-43ec-8ced-b6ce9e72cd2d', 'INSERT', '{"uuid": "6e48a3f5-7017-43ec-8ced-b6ce9e72cd2d", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "grantedbyroleuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8dfb5e53-1554-4e5c-a045-85121ce4bd71', 'INSERT', '{"uuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "roletype": "ADMIN", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8aa371b8-dd2d-4471-95ae-149e30502e54', 'INSERT', '{"op": "UPDATE", "uuid": "8aa371b8-dd2d-4471-95ae-149e30502e54", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9381ce69-6119-44b8-828b-09aa0cc57960', 'INSERT', '{"uuid": "9381ce69-6119-44b8-828b-09aa0cc57960", "assumed": true, "ascendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "descendantuuid": "8aa371b8-dd2d-4471-95ae-149e30502e54", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f498d771-bf9c-41fb-9566-26de20cf27cf', 'INSERT', '{"uuid": "f498d771-bf9c-41fb-9566-26de20cf27cf", "assumed": true, "ascendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "descendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', 'INSERT', '{"uuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "roletype": "AGENT", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8b1cdea5-a267-4c69-82ae-58fcaae807d3', 'INSERT', '{"uuid": "8b1cdea5-a267-4c69-82ae-58fcaae807d3", "assumed": true, "ascendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "descendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd04aeefe-4ba4-466f-a563-b811674c6de9', 'INSERT', '{"uuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "roletype": "TENANT", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42', 'INSERT', '{"op": "SELECT", "uuid": "6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42", "objectuuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '407f1720-30d6-43e9-a867-00a4d074e948', 'INSERT', '{"uuid": "407f1720-30d6-43e9-a867-00a4d074e948", "assumed": true, "ascendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "descendantuuid": "6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'INSERT', '{"uuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac", "serialid": 176, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '33b013b4-54f5-4d45-86f4-f60db0af72f7', 'INSERT', '{"uuid": "33b013b4-54f5-4d45-86f4-f60db0af72f7", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5e79c737-6e71-4ba3-a7e2-b5ca9a882536', 'INSERT', '{"uuid": "5e79c737-6e71-4ba3-a7e2-b5ca9a882536", "assumed": true, "ascendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "descendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a46e4f67-0994-4181-9ef4-dd8a56c92a56', 'INSERT', '{"uuid": "a46e4f67-0994-4181-9ef4-dd8a56c92a56", "assumed": true, "ascendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7ba2475f-ffc9-4cd6-80bf-98699d50ad1c', 'INSERT', '{"uuid": "7ba2475f-ffc9-4cd6-80bf-98699d50ad1c", "assumed": true, "ascendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '13ff71cb-74b0-4da6-b531-352cc8103e88', 'INSERT', '{"uuid": "13ff71cb-74b0-4da6-b531-352cc8103e88", "assumed": true, "ascendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a0a06ef2-c846-444c-b9e8-955a69675e0e', 'INSERT', '{"uuid": "a0a06ef2-c846-444c-b9e8-955a69675e0e", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c1f1f854-ce70-4ef5-bc5d-04ec3910964d', 'INSERT', '{"uuid": "c1f1f854-ce70-4ef5-bc5d-04ec3910964d", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "grantedbyroleuuid": null, "grantedbytriggerof": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "contactuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'INSERT', '{"uuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "serialid": 173, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e5871fb2-3928-4139-9468-10f0f12d5e5f', 'INSERT', '{"uuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "roletype": "OWNER", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '12bf1e90-3965-415a-b2fa-de48afca81f5', 'INSERT', '{"op": "DELETE", "uuid": "12bf1e90-3965-415a-b2fa-de48afca81f5", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2613adb7-f2b0-4d19-b369-8341afa1111e', 'INSERT', '{"uuid": "2613adb7-f2b0-4d19-b369-8341afa1111e", "assumed": true, "ascendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "descendantuuid": "12bf1e90-3965-415a-b2fa-de48afca81f5", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '427f8a0e-c26d-452c-b014-8788b80170a7', 'INSERT', '{"uuid": "427f8a0e-c26d-452c-b014-8788b80170a7", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2cf9cc9c-6158-435d-8659-bd875bcbe273', 'INSERT', '{"uuid": "2cf9cc9c-6158-435d-8659-bd875bcbe273", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "grantedbyroleuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '834d7138-e338-4517-aacb-1c6319fa34d8', 'INSERT', '{"uuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "roletype": "ADMIN", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'e3026ecc-4a37-438b-b53e-e4ac2d4acd87', 'INSERT', '{"op": "UPDATE", "uuid": "e3026ecc-4a37-438b-b53e-e4ac2d4acd87", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '634ef36a-4dce-4fc2-b4be-43c1b8a12327', 'INSERT', '{"uuid": "634ef36a-4dce-4fc2-b4be-43c1b8a12327", "assumed": true, "ascendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "descendantuuid": "e3026ecc-4a37-438b-b53e-e4ac2d4acd87", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '79861ade-1702-4c55-99bf-ada2f02af12e', 'INSERT', '{"uuid": "79861ade-1702-4c55-99bf-ada2f02af12e", "assumed": true, "ascendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "descendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e6409531-6513-43a9-84a7-eff44b18285a', 'INSERT', '{"uuid": "e6409531-6513-43a9-84a7-eff44b18285a", "roletype": "AGENT", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'db6cea6c-2d27-4e85-8b38-77fad5a97678', 'INSERT', '{"uuid": "db6cea6c-2d27-4e85-8b38-77fad5a97678", "assumed": true, "ascendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "descendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'INSERT', '{"uuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "roletype": "TENANT", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a9296dcc-a040-460e-9319-d93938975fc1', 'INSERT', '{"op": "SELECT", "uuid": "a9296dcc-a040-460e-9319-d93938975fc1", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'df1e3b6b-beb5-4797-b5b6-a8762c0f1b13', 'INSERT', '{"uuid": "df1e3b6b-beb5-4797-b5b6-a8762c0f1b13", "assumed": true, "ascendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "descendantuuid": "a9296dcc-a040-460e-9319-d93938975fc1", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '77ed9bdb-9264-4997-9b33-2997a3203acd', 'INSERT', '{"uuid": "77ed9bdb-9264-4997-9b33-2997a3203acd", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8f24b7d8-6c62-4b60-9fef-7d79d0d3e931', 'INSERT', '{"uuid": "8f24b7d8-6c62-4b60-9fef-7d79d0d3e931", "assumed": true, "ascendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "descendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd344d956-9fe8-4d35-b363-ee47c946fae1', 'INSERT', '{"uuid": "d344d956-9fe8-4d35-b363-ee47c946fae1", "assumed": true, "ascendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7db53bc9-99f3-478e-abb0-437dcbd32051', 'INSERT', '{"uuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "roletype": "OWNER", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '102f6591-fa00-4465-9e71-ee89f913f98f', 'INSERT', '{"uuid": "102f6591-fa00-4465-9e71-ee89f913f98f", "assumed": true, "ascendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9070bb47-7db9-4937-b262-4503e9e429a7', 'INSERT', '{"uuid": "9070bb47-7db9-4937-b262-4503e9e429a7", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '147bc926-4d72-47f5-bab4-88736d9fad9b', 'INSERT', '{"uuid": "147bc926-4d72-47f5-bab4-88736d9fad9b", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "grantedbyroleuuid": null, "grantedbytriggerof": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7b9008d5-0555-4209-8594-8d2c11e376d2', 'INSERT', '{"op": "INSERT", "uuid": "7b9008d5-0555-4209-8594-8d2c11e376d2", "objectuuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '57e9cd92-8b26-4c73-bb31-364522a91b60', 'INSERT', '{"uuid": "57e9cd92-8b26-4c73-bb31-364522a91b60", "assumed": true, "ascendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "descendantuuid": "7b9008d5-0555-4209-8594-8d2c11e376d2", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "contactuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'INSERT', '{"uuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3", "serialid": 174, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '256083e7-90ac-4f38-9bc1-deedb0f78d2c', 'INSERT', '{"uuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "roletype": "OWNER", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c470f55a-75fd-4754-95d8-02db7679b5e6', 'INSERT', '{"op": "DELETE", "uuid": "c470f55a-75fd-4754-95d8-02db7679b5e6", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e5cc260e-4aed-4440-b9b1-8adf3b00c2f2', 'INSERT', '{"uuid": "e5cc260e-4aed-4440-b9b1-8adf3b00c2f2", "assumed": true, "ascendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "descendantuuid": "c470f55a-75fd-4754-95d8-02db7679b5e6", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b169456f-0f65-4ce0-9ea1-1b183da6768e', 'INSERT', '{"uuid": "b169456f-0f65-4ce0-9ea1-1b183da6768e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3ce3aae9-6498-4e4c-9786-b649933facde', 'INSERT', '{"uuid": "3ce3aae9-6498-4e4c-9786-b649933facde", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "grantedbyroleuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'INSERT', '{"uuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "roletype": "ADMIN", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '306c497c-f967-41e4-88a6-6d357955a6b4', 'INSERT', '{"op": "UPDATE", "uuid": "306c497c-f967-41e4-88a6-6d357955a6b4", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7dbe679a-2572-4055-a6e1-853e56732c13', 'INSERT', '{"uuid": "7dbe679a-2572-4055-a6e1-853e56732c13", "assumed": true, "ascendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "descendantuuid": "306c497c-f967-41e4-88a6-6d357955a6b4", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '25dc18d5-53b0-46fe-9fbc-42617019c65c', 'INSERT', '{"uuid": "25dc18d5-53b0-46fe-9fbc-42617019c65c", "assumed": true, "ascendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "descendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f93693fa-7dc5-4513-8537-be9541d6e5dc', 'INSERT', '{"uuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "roletype": "AGENT", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd36852bf-fee9-4762-b982-c5c1180f1021', 'INSERT', '{"uuid": "d36852bf-fee9-4762-b982-c5c1180f1021", "assumed": true, "ascendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "descendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '33a45f49-ac74-4444-a193-2ed1e0be110d', 'INSERT', '{"uuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "roletype": "TENANT", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a43a17b9-e207-4edd-9184-790b10b105ce', 'INSERT', '{"op": "SELECT", "uuid": "a43a17b9-e207-4edd-9184-790b10b105ce", "objectuuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd49e8c2a-9535-4791-b5b2-27b4c6449571', 'INSERT', '{"uuid": "d49e8c2a-9535-4791-b5b2-27b4c6449571", "assumed": true, "ascendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "descendantuuid": "a43a17b9-e207-4edd-9184-790b10b105ce", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd62c308b-5aeb-4b38-bf3c-1971873ebb7e', 'INSERT', '{"uuid": "d62c308b-5aeb-4b38-bf3c-1971873ebb7e", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bae734bf-c252-413a-9f8f-0db3f5fe41da', 'INSERT', '{"uuid": "bae734bf-c252-413a-9f8f-0db3f5fe41da", "assumed": true, "ascendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "descendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1b06c14e-8822-4076-a95c-53c23fae06e7', 'INSERT', '{"uuid": "1b06c14e-8822-4076-a95c-53c23fae06e7", "assumed": true, "ascendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bb5d5c36-8545-4b0c-83b3-3e6ffe79d064', 'INSERT', '{"uuid": "bb5d5c36-8545-4b0c-83b3-3e6ffe79d064", "assumed": true, "ascendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2fb41844-154f-49af-afe1-f145ac823698', 'INSERT', '{"uuid": "2fb41844-154f-49af-afe1-f145ac823698", "assumed": true, "ascendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7be6ff60-48f4-4727-a3b1-ccc76c4bf5f9', 'INSERT', '{"uuid": "7be6ff60-48f4-4727-a3b1-ccc76c4bf5f9", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b54d49d5-8b35-4a08-8062-15f1488e1248', 'INSERT', '{"uuid": "b54d49d5-8b35-4a08-8062-15f1488e1248", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "grantedbyroleuuid": null, "grantedbytriggerof": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'INSERT', '{"uuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "serialid": 175, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd5a60c82-347b-4ebb-b95f-afff297bf966', 'INSERT', '{"uuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "roletype": "OWNER", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b93cca78-ac4f-497a-90b4-2fbb41ece3a5', 'INSERT', '{"op": "DELETE", "uuid": "b93cca78-ac4f-497a-90b4-2fbb41ece3a5", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd1581eac-a086-44fb-bb09-61971de7d2fd', 'INSERT', '{"uuid": "d1581eac-a086-44fb-bb09-61971de7d2fd", "assumed": true, "ascendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "descendantuuid": "b93cca78-ac4f-497a-90b4-2fbb41ece3a5", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '33d71c3e-14d6-4360-b2a1-7cfe03fc8e7c', 'INSERT', '{"uuid": "33d71c3e-14d6-4360-b2a1-7cfe03fc8e7c", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '55d421be-867d-484d-81cf-b4435b645647', 'INSERT', '{"uuid": "55d421be-867d-484d-81cf-b4435b645647", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "grantedbyroleuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', 'INSERT', '{"uuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "roletype": "ADMIN", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '78de8932-0d41-49a3-bd52-4b01648d77c4', 'INSERT', '{"op": "UPDATE", "uuid": "78de8932-0d41-49a3-bd52-4b01648d77c4", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ee7dcf77-7d14-4ac3-ac68-75848ce80b37', 'INSERT', '{"uuid": "ee7dcf77-7d14-4ac3-ac68-75848ce80b37", "assumed": true, "ascendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "descendantuuid": "78de8932-0d41-49a3-bd52-4b01648d77c4", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6ac62d07-14f8-4e7b-b32a-cdbc01d233d7', 'INSERT', '{"uuid": "6ac62d07-14f8-4e7b-b32a-cdbc01d233d7", "assumed": true, "ascendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "descendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6e7feeb7-4891-4ea3-96b6-00d883da37c5', 'INSERT', '{"uuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "roletype": "AGENT", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1ef30096-215a-4465-af6e-df991c630f42', 'INSERT', '{"uuid": "1ef30096-215a-4465-af6e-df991c630f42", "assumed": true, "ascendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "descendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1ed7ff07-778c-4920-a550-563b27223228', 'INSERT', '{"uuid": "1ed7ff07-778c-4920-a550-563b27223228", "roletype": "TENANT", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '73fbb1f4-99ac-43f3-8d7c-e032f636754d', 'INSERT', '{"op": "SELECT", "uuid": "73fbb1f4-99ac-43f3-8d7c-e032f636754d", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5225abae-81af-491d-8e67-d0d955af7a6b', 'INSERT', '{"uuid": "5225abae-81af-491d-8e67-d0d955af7a6b", "assumed": true, "ascendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "descendantuuid": "73fbb1f4-99ac-43f3-8d7c-e032f636754d", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '58f3482b-0190-433d-8169-dda40ccdefd6', 'INSERT', '{"uuid": "58f3482b-0190-433d-8169-dda40ccdefd6", "assumed": true, "ascendantuuid": "a822e970-7b6a-417d-81d0-a8db0c985427", "descendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '132567eb-499c-41ed-8306-0bb3f70fd887', 'INSERT', '{"uuid": "132567eb-499c-41ed-8306-0bb3f70fd887", "assumed": true, "ascendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "descendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e2b5210b-9f82-4aa3-a5e4-db165eff8c82', 'INSERT', '{"uuid": "e2b5210b-9f82-4aa3-a5e4-db165eff8c82", "assumed": true, "ascendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "descendantuuid": "6fc5eacb-5328-41c3-a71b-e7712338862a", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '323c5ab0-83d2-499d-843c-3e2087d129a7', 'INSERT', '{"uuid": "323c5ab0-83d2-499d-843c-3e2087d129a7", "assumed": true, "ascendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd47916af-37ad-4693-90b9-ab5861a26b19', 'INSERT', '{"uuid": "d47916af-37ad-4693-90b9-ab5861a26b19", "assumed": true, "ascendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "descendantuuid": "d8c41124-ff96-4bc4-b3be-d0a8091128b6", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f958dfdb-2482-4a6c-b04f-c48adef089b3', 'INSERT', '{"uuid": "f958dfdb-2482-4a6c-b04f-c48adef089b3", "assumed": true, "ascendantuuid": "8bfcdf97-8c34-46ca-8159-1314cbb42105", "descendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3978866a-2fd9-4fe5-829f-cb20953123d2', 'INSERT', '{"uuid": "3978866a-2fd9-4fe5-829f-cb20953123d2", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "grantedbyroleuuid": null, "grantedbytriggerof": "dd0eae3e-7f45-45dd-b686-f39e046918b0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '57083628-836d-4f19-9359-5fb11537f81d', 'INSERT', '{"op": "INSERT", "uuid": "57083628-836d-4f19-9359-5fb11537f81d", "objectuuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c59e8c34-016f-4cde-8f01-d26ce93dfd19', 'INSERT', '{"uuid": "c59e8c34-016f-4cde-8f01-d26ce93dfd19", "assumed": true, "ascendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "descendantuuid": "57083628-836d-4f19-9359-5fb11537f81d", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "d6488771-b5c0-4f39-a6d6-81af6ca982f4", "contactuuid": "29e2d42f-5f00-467f-ab73-f2ff59f2792d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '65238cdd-b9f4-40ce-87db-581432f3c7b8', 'INSERT', '{"op": "DELETE", "uuid": "65238cdd-b9f4-40ce-87db-581432f3c7b8", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e638e901-b72b-445d-bccd-010251464101', 'INSERT', '{"uuid": "e638e901-b72b-445d-bccd-010251464101", "assumed": true, "ascendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "descendantuuid": "65238cdd-b9f4-40ce-87db-581432f3c7b8", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '181658a3-893e-4d06-ace8-513ddf36c13f', 'INSERT', '{"uuid": "181658a3-893e-4d06-ace8-513ddf36c13f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8accb64a-32a0-46c8-8cf2-8444799bf14b', 'INSERT', '{"uuid": "8accb64a-32a0-46c8-8cf2-8444799bf14b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "grantedbyroleuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9771d06d-8352-404c-aaba-743800e621e9', 'INSERT', '{"uuid": "9771d06d-8352-404c-aaba-743800e621e9", "roletype": "ADMIN", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '31b17fc6-f132-43a5-8e48-652c48306331', 'INSERT', '{"op": "UPDATE", "uuid": "31b17fc6-f132-43a5-8e48-652c48306331", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3c27d5a9-f3e3-4d78-815b-eac8aacbac70', 'INSERT', '{"uuid": "3c27d5a9-f3e3-4d78-815b-eac8aacbac70", "assumed": true, "ascendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "descendantuuid": "31b17fc6-f132-43a5-8e48-652c48306331", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '53650829-a412-4b78-8071-23af27a3767a', 'INSERT', '{"uuid": "53650829-a412-4b78-8071-23af27a3767a", "assumed": true, "ascendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "descendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b34392da-5070-40dd-ab44-d411a9742f6d', 'INSERT', '{"uuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "roletype": "AGENT", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '21990b68-f8c1-492e-8b58-584f9373f011', 'INSERT', '{"uuid": "21990b68-f8c1-492e-8b58-584f9373f011", "assumed": true, "ascendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "descendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e37e21bc-4d4f-4d41-8c24-399be1680a15', 'INSERT', '{"uuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "roletype": "TENANT", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'aa9b0636-bcef-4296-bfc4-2beb3c99da38', 'INSERT', '{"op": "SELECT", "uuid": "aa9b0636-bcef-4296-bfc4-2beb3c99da38", "objectuuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '254c6299-81b1-40b6-80bc-01140b2e3f21', 'INSERT', '{"uuid": "254c6299-81b1-40b6-80bc-01140b2e3f21", "assumed": true, "ascendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "descendantuuid": "aa9b0636-bcef-4296-bfc4-2beb3c99da38", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3ffc38c4-6668-4096-b172-1f6d2d4dc409', 'INSERT', '{"uuid": "3ffc38c4-6668-4096-b172-1f6d2d4dc409", "assumed": true, "ascendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "descendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd6cdd1c4-0d36-48f2-8747-a47762496474', 'INSERT', '{"uuid": "d6cdd1c4-0d36-48f2-8747-a47762496474", "assumed": true, "ascendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "descendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9e939ad9-00b2-4a23-8875-72a5ac7ff728', 'INSERT', '{"uuid": "9e939ad9-00b2-4a23-8875-72a5ac7ff728", "assumed": true, "ascendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "descendantuuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9d271802-89ff-4d61-bb61-21f47e44c357', 'INSERT', '{"uuid": "9d271802-89ff-4d61-bb61-21f47e44c357", "assumed": true, "ascendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0e3b55cc-cda2-4c8a-980c-aa0824656de2', 'INSERT', '{"uuid": "0e3b55cc-cda2-4c8a-980c-aa0824656de2", "assumed": true, "ascendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2b6cbd8c-5a91-4081-a2df-01ab5d477416', 'INSERT', '{"uuid": "2b6cbd8c-5a91-4081-a2df-01ab5d477416", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '96f807f2-391c-49f1-aa63-d14cf9fe4c7f', 'INSERT', '{"uuid": "96f807f2-391c-49f1-aa63-d14cf9fe4c7f", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "grantedbyroleuuid": null, "grantedbytriggerof": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "contactuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'INSERT', '{"uuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "serialid": 177, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0d96a253-347e-4903-9db9-b362335e4341', 'INSERT', '{"uuid": "0d96a253-347e-4903-9db9-b362335e4341", "roletype": "OWNER", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1350b6fe-91ee-4c79-bc87-e2632a01100f', 'INSERT', '{"op": "DELETE", "uuid": "1350b6fe-91ee-4c79-bc87-e2632a01100f", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9efd3573-3fd0-4838-b700-9e2d528d6dae', 'INSERT', '{"uuid": "9efd3573-3fd0-4838-b700-9e2d528d6dae", "assumed": true, "ascendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "descendantuuid": "1350b6fe-91ee-4c79-bc87-e2632a01100f", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0fcaf240-6815-4712-a320-6463135f4624', 'INSERT', '{"uuid": "0fcaf240-6815-4712-a320-6463135f4624", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3ff9ad8b-f7fc-4d25-aaf7-8c5937ca379f', 'INSERT', '{"uuid": "3ff9ad8b-f7fc-4d25-aaf7-8c5937ca379f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "grantedbyroleuuid": "0d96a253-347e-4903-9db9-b362335e4341", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', 'INSERT', '{"uuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "roletype": "ADMIN", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'bff60077-ab16-4e5d-8667-1ad2b801b961', 'INSERT', '{"op": "UPDATE", "uuid": "bff60077-ab16-4e5d-8667-1ad2b801b961", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ae6cb6c2-c690-4527-8ec8-1c2b1d7e44df', 'INSERT', '{"uuid": "ae6cb6c2-c690-4527-8ec8-1c2b1d7e44df", "assumed": true, "ascendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "descendantuuid": "bff60077-ab16-4e5d-8667-1ad2b801b961", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '308438c8-a6b8-4e79-8d69-67f7589d9175', 'INSERT', '{"uuid": "308438c8-a6b8-4e79-8d69-67f7589d9175", "assumed": true, "ascendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "descendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', 'INSERT', '{"uuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "roletype": "AGENT", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1d4f1080-13a6-4011-bf9f-bb67a3c7be94', 'INSERT', '{"uuid": "1d4f1080-13a6-4011-bf9f-bb67a3c7be94", "assumed": true, "ascendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "descendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '42f0c634-d86b-4129-822b-f103cd6e0755', 'INSERT', '{"uuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "roletype": "TENANT", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2b36563d-caee-4170-b444-ec02ca919165', 'INSERT', '{"op": "SELECT", "uuid": "2b36563d-caee-4170-b444-ec02ca919165", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '77f6392c-dc17-4c22-92af-4462666916c1', 'INSERT', '{"uuid": "77f6392c-dc17-4c22-92af-4462666916c1", "assumed": true, "ascendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "descendantuuid": "2b36563d-caee-4170-b444-ec02ca919165", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '744c3088-f933-4c59-ae37-d83f2357f83c', 'INSERT', '{"uuid": "744c3088-f933-4c59-ae37-d83f2357f83c", "assumed": true, "ascendantuuid": "06bf2ac2-61c5-42e9-917b-8b68afcc0d47", "descendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '077b5b92-2620-489c-97c8-f32c5013437b', 'INSERT', '{"uuid": "077b5b92-2620-489c-97c8-f32c5013437b", "assumed": true, "ascendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "descendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4e176c48-1f1f-4e8d-8698-565f62041d2b', 'INSERT', '{"uuid": "4e176c48-1f1f-4e8d-8698-565f62041d2b", "assumed": true, "ascendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "descendantuuid": "7a8959c2-e6c0-4af3-9d64-117811ec0d02", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e8ba8789-050f-4ac4-9bd2-ea16bd83ac7a', 'INSERT', '{"uuid": "e8ba8789-050f-4ac4-9bd2-ea16bd83ac7a", "assumed": true, "ascendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ef21d6e1-e714-4d9e-bdbe-86408d6acc87', 'INSERT', '{"uuid": "ef21d6e1-e714-4d9e-bdbe-86408d6acc87", "assumed": true, "ascendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "descendantuuid": "9115be3d-2bef-40ce-b0c9-339e460c751d", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8c126907-db23-4e7f-b375-7109fe72f2c6', 'INSERT', '{"uuid": "8c126907-db23-4e7f-b375-7109fe72f2c6", "assumed": true, "ascendantuuid": "bab68a5a-2016-454e-b143-8c334188d2c4", "descendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc3130a1-8534-426a-9dea-7744b423ee9c', 'INSERT', '{"uuid": "bc3130a1-8534-426a-9dea-7744b423ee9c", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "grantedbyroleuuid": null, "grantedbytriggerof": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'dbead323-2088-4b0b-ac6c-599696219411', 'INSERT', '{"op": "INSERT", "uuid": "dbead323-2088-4b0b-ac6c-599696219411", "objectuuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd5a8ffce-04bb-4fa3-b9a7-d4f9e15564aa', 'INSERT', '{"uuid": "d5a8ffce-04bb-4fa3-b9a7-d4f9e15564aa", "assumed": true, "ascendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "descendantuuid": "dbead323-2088-4b0b-ac6c-599696219411", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "f5dd291e-f8f5-4240-93d5-9fc1e56c376a", "contactuuid": "33b40eee-30ed-4924-859d-6c58b5aa4124"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'INSERT', '{"uuid": "a85fd289-2383-4abe-b796-9b0b47d702d2", "serialid": 178, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', 'INSERT', '{"uuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "roletype": "OWNER", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b6f28163-8b15-403b-ad8e-8322ae8bb5b9', 'INSERT', '{"op": "DELETE", "uuid": "b6f28163-8b15-403b-ad8e-8322ae8bb5b9", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd5305aaf-e2ab-4f48-8a2e-374e8d5b181e', 'INSERT', '{"uuid": "d5305aaf-e2ab-4f48-8a2e-374e8d5b181e", "assumed": true, "ascendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "descendantuuid": "b6f28163-8b15-403b-ad8e-8322ae8bb5b9", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '36f25015-ab5d-478b-b8e9-bcfb12daa23f', 'INSERT', '{"uuid": "36f25015-ab5d-478b-b8e9-bcfb12daa23f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0d5c34e2-7fd3-4008-806f-c71fbc354439', 'INSERT', '{"uuid": "0d5c34e2-7fd3-4008-806f-c71fbc354439", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "grantedbyroleuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', 'INSERT', '{"uuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "roletype": "ADMIN", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9cf4d386-c968-40c4-8af9-401c58cca6b4', 'INSERT', '{"op": "UPDATE", "uuid": "9cf4d386-c968-40c4-8af9-401c58cca6b4", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7d632200-5506-4856-a3c0-d806b1ee708b', 'INSERT', '{"uuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "roletype": "TENANT", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '97bb7d46-c076-472f-9210-7756f0d3b1de', 'INSERT', '{"uuid": "97bb7d46-c076-472f-9210-7756f0d3b1de", "assumed": true, "ascendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "descendantuuid": "9cf4d386-c968-40c4-8af9-401c58cca6b4", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '77bb249a-a506-4b22-8ade-3c3a211e98fc', 'INSERT', '{"uuid": "77bb249a-a506-4b22-8ade-3c3a211e98fc", "assumed": true, "ascendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "descendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f3af3c81-a512-47ea-8b47-0386291e6590', 'INSERT', '{"uuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "roletype": "AGENT", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5fb16788-c6df-4a8e-b9f5-9b32668de76c', 'INSERT', '{"uuid": "5fb16788-c6df-4a8e-b9f5-9b32668de76c", "assumed": true, "ascendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "descendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', 'INSERT', '{"uuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "roletype": "TENANT", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '14b3a0c2-46d5-409e-bd0d-ff369c37950a', 'INSERT', '{"op": "SELECT", "uuid": "14b3a0c2-46d5-409e-bd0d-ff369c37950a", "objectuuid": "a85fd289-2383-4abe-b796-9b0b47d702d2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c49d231c-9b99-4bf1-a5b3-9fd54ea13026', 'INSERT', '{"uuid": "c49d231c-9b99-4bf1-a5b3-9fd54ea13026", "assumed": true, "ascendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "descendantuuid": "14b3a0c2-46d5-409e-bd0d-ff369c37950a", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b02fa45d-4e3f-4117-b702-6567d9197965', 'INSERT', '{"uuid": "b02fa45d-4e3f-4117-b702-6567d9197965", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c1061599-40fe-498d-b569-e66220a277fa', 'INSERT', '{"uuid": "c1061599-40fe-498d-b569-e66220a277fa", "assumed": true, "ascendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "descendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3a244791-44c8-4eff-8361-7e12ebc10375', 'INSERT', '{"uuid": "3a244791-44c8-4eff-8361-7e12ebc10375", "assumed": true, "ascendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "descendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2852d47f-a898-42ff-aa68-0d63a4bfd696', 'INSERT', '{"uuid": "2852d47f-a898-42ff-aa68-0d63a4bfd696", "assumed": true, "ascendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6af132d3-5e42-4379-bceb-c27b9a4a27c7', 'INSERT', '{"uuid": "6af132d3-5e42-4379-bceb-c27b9a4a27c7", "assumed": true, "ascendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "descendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3537239c-f45c-4357-abd7-7ff36e7bc90b', 'INSERT', '{"uuid": "3537239c-f45c-4357-abd7-7ff36e7bc90b", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e7352fb4-4789-4398-bca1-5e02ffb184af', 'INSERT', '{"uuid": "e7352fb4-4789-4398-bca1-5e02ffb184af", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "grantedbyroleuuid": null, "grantedbytriggerof": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "a85fd289-2383-4abe-b796-9b0b47d702d2", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "contactuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'INSERT', '{"uuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "serialid": 179, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', 'INSERT', '{"uuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "roletype": "OWNER", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd6ea4d88-241f-4430-9590-918a5de2a3d4', 'INSERT', '{"op": "DELETE", "uuid": "d6ea4d88-241f-4430-9590-918a5de2a3d4", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bf8dc5e3-3d2b-4a20-82c9-345b886a902f', 'INSERT', '{"uuid": "bf8dc5e3-3d2b-4a20-82c9-345b886a902f", "assumed": true, "ascendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "descendantuuid": "d6ea4d88-241f-4430-9590-918a5de2a3d4", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e824602d-53bf-49ba-b6c5-c78b826bf94c', 'INSERT', '{"uuid": "e824602d-53bf-49ba-b6c5-c78b826bf94c", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bef40c9e-b569-417c-a8c3-a46bd4a1c43c', 'INSERT', '{"uuid": "bef40c9e-b569-417c-a8c3-a46bd4a1c43c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "grantedbyroleuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3010c421-5c96-4f0d-b214-c773e0915564', 'INSERT', '{"uuid": "3010c421-5c96-4f0d-b214-c773e0915564", "roletype": "ADMIN", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5c038c2d-e3f8-4593-9733-0e1d2c85e318', 'INSERT', '{"op": "UPDATE", "uuid": "5c038c2d-e3f8-4593-9733-0e1d2c85e318", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8be44ea3-3a15-45bf-80cf-da0dd7168dcf', 'INSERT', '{"uuid": "8be44ea3-3a15-45bf-80cf-da0dd7168dcf", "assumed": true, "ascendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "descendantuuid": "5c038c2d-e3f8-4593-9733-0e1d2c85e318", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e72f6461-12f1-49dd-8fee-e7e4b1cd0ab4', 'INSERT', '{"uuid": "e72f6461-12f1-49dd-8fee-e7e4b1cd0ab4", "assumed": true, "ascendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "descendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '270aac69-03bb-4429-b925-3019bd92cf32', 'INSERT', '{"uuid": "270aac69-03bb-4429-b925-3019bd92cf32", "roletype": "AGENT", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3985a8c6-9cbf-4e1a-a95f-1f83030eb7a4', 'INSERT', '{"uuid": "3985a8c6-9cbf-4e1a-a95f-1f83030eb7a4", "assumed": true, "ascendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "descendantuuid": "270aac69-03bb-4429-b925-3019bd92cf32", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23', 'INSERT', '{"op": "SELECT", "uuid": "63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '81b68632-0cb7-41d8-bf15-61048ff1bc3c', 'INSERT', '{"uuid": "81b68632-0cb7-41d8-bf15-61048ff1bc3c", "assumed": true, "ascendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "descendantuuid": "63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '24b19f50-1f29-4879-a6d4-d5f40fcab1c2', 'INSERT', '{"uuid": "24b19f50-1f29-4879-a6d4-d5f40fcab1c2", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0084180b-3df7-42bd-976d-54d2f30fe5e6', 'INSERT', '{"uuid": "0084180b-3df7-42bd-976d-54d2f30fe5e6", "assumed": true, "ascendantuuid": "270aac69-03bb-4429-b925-3019bd92cf32", "descendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2d7e7850-06e8-4f75-9a32-bc7af55f0187', 'INSERT', '{"uuid": "2d7e7850-06e8-4f75-9a32-bc7af55f0187", "assumed": true, "ascendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "descendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0be56d6-9d14-4de6-8b86-c67b8466a25c', 'INSERT', '{"uuid": "b0be56d6-9d14-4de6-8b86-c67b8466a25c", "assumed": true, "ascendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "descendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0f722b48-de60-4b11-a39f-e3dfcf5aa326', 'INSERT', '{"uuid": "0f722b48-de60-4b11-a39f-e3dfcf5aa326", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "270aac69-03bb-4429-b925-3019bd92cf32", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '358cfa61-0b40-46eb-a240-dc3320284148', 'INSERT', '{"uuid": "358cfa61-0b40-46eb-a240-dc3320284148", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "grantedbyroleuuid": null, "grantedbytriggerof": "bc8c4b35-c55b-4c3e-9122-94485909b17e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fc2159a0-53c2-416b-9daf-506258c420e3', 'INSERT', '{"op": "INSERT", "uuid": "fc2159a0-53c2-416b-9daf-506258c420e3", "objectuuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2155b641-8562-4ad5-a883-3d5c12b71564', 'INSERT', '{"uuid": "2155b641-8562-4ad5-a883-3d5c12b71564", "assumed": true, "ascendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "descendantuuid": "fc2159a0-53c2-416b-9daf-506258c420e3", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "version": 0, "anchoruuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "holderuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "contactuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'INSERT', '{"uuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be", "serialid": 180, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'INSERT', '{"uuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "roletype": "OWNER", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9de4eb42-73cf-4178-ad43-0bc7b9042c76', 'INSERT', '{"op": "DELETE", "uuid": "9de4eb42-73cf-4178-ad43-0bc7b9042c76", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '14b41604-025f-45cf-a1fa-92b91a7b060e', 'INSERT', '{"uuid": "14b41604-025f-45cf-a1fa-92b91a7b060e", "assumed": true, "ascendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "descendantuuid": "9de4eb42-73cf-4178-ad43-0bc7b9042c76", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c2077db5-79fb-481f-bc9d-95337bfb2577', 'INSERT', '{"uuid": "c2077db5-79fb-481f-bc9d-95337bfb2577", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4cda3b7b-bf01-4342-b3db-fc8998b6ef1e', 'INSERT', '{"uuid": "4cda3b7b-bf01-4342-b3db-fc8998b6ef1e", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "grantedbyroleuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f101cc07-ed84-4e34-9f70-62ec6a646e81', 'INSERT', '{"uuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "roletype": "ADMIN", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'e1cd9ef3-11e4-4907-bb78-b30f83f576e8', 'INSERT', '{"op": "UPDATE", "uuid": "e1cd9ef3-11e4-4907-bb78-b30f83f576e8", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '670460c6-e47b-48b6-bf0e-e5a5dbf0d43b', 'INSERT', '{"uuid": "670460c6-e47b-48b6-bf0e-e5a5dbf0d43b", "assumed": true, "ascendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "descendantuuid": "e1cd9ef3-11e4-4907-bb78-b30f83f576e8", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0a0f5572-7ef2-4996-b7f9-9092b99b70ba', 'INSERT', '{"uuid": "0a0f5572-7ef2-4996-b7f9-9092b99b70ba", "assumed": true, "ascendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "descendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', 'INSERT', '{"uuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "roletype": "AGENT", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4e574ad9-8a38-413e-8bfa-55930363707f', 'INSERT', '{"uuid": "4e574ad9-8a38-413e-8bfa-55930363707f", "assumed": true, "ascendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "descendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', 'INSERT', '{"uuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "roletype": "TENANT", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2877af8d-ece8-4b33-8b68-a4985caa2635', 'INSERT', '{"op": "SELECT", "uuid": "2877af8d-ece8-4b33-8b68-a4985caa2635", "objectuuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5dc0084d-25cb-4af7-a2a9-ff2446a4a797', 'INSERT', '{"uuid": "5dc0084d-25cb-4af7-a2a9-ff2446a4a797", "assumed": true, "ascendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "descendantuuid": "2877af8d-ece8-4b33-8b68-a4985caa2635", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '60ca4436-2f6e-4152-8551-4e9a465a7b29', 'INSERT', '{"uuid": "60ca4436-2f6e-4152-8551-4e9a465a7b29", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6be28944-7289-4924-adfa-9d613a1903d0', 'INSERT', '{"uuid": "6be28944-7289-4924-adfa-9d613a1903d0", "assumed": true, "ascendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "descendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4589acd9-b04f-432a-91ea-f157d75e0b16', 'INSERT', '{"uuid": "4589acd9-b04f-432a-91ea-f157d75e0b16", "assumed": true, "ascendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "descendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e30e4485-5f53-41aa-9d5c-e580d98e8adf', 'INSERT', '{"uuid": "e30e4485-5f53-41aa-9d5c-e580d98e8adf", "assumed": true, "ascendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7969599c-5bef-42c7-8513-9c7e545e804c', 'INSERT', '{"uuid": "7969599c-5bef-42c7-8513-9c7e545e804c", "assumed": true, "ascendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "descendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c0c021ee-8650-4478-964f-0e7297484724', 'INSERT', '{"uuid": "c0c021ee-8650-4478-964f-0e7297484724", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '25a3a86f-88d4-48b5-8b49-9ab3a0cb9d41', 'INSERT', '{"uuid": "25a3a86f-88d4-48b5-8b49-9ab3a0cb9d41", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "grantedbyroleuuid": null, "grantedbytriggerof": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'INSERT', '{"mark": null, "type": "PARTNER", "uuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "contactuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '268c2ce6-8945-4393-9916-ac90050f064a', 'INSERT', '{"uuid": "268c2ce6-8945-4393-9916-ac90050f064a", "serialid": 181, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', 'INSERT', '{"uuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "roletype": "OWNER", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a4b7dd17-bc12-4152-80e0-4186caab003a', 'INSERT', '{"op": "DELETE", "uuid": "a4b7dd17-bc12-4152-80e0-4186caab003a", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '014daf58-1e7c-4367-8913-001885ac18ba', 'INSERT', '{"uuid": "014daf58-1e7c-4367-8913-001885ac18ba", "assumed": true, "ascendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "descendantuuid": "a4b7dd17-bc12-4152-80e0-4186caab003a", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '55252844-1a23-453b-86da-d8a61347ea8e', 'INSERT', '{"uuid": "55252844-1a23-453b-86da-d8a61347ea8e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0897358d-6a31-4239-840a-5643616ceefa', 'INSERT', '{"uuid": "0897358d-6a31-4239-840a-5643616ceefa", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "grantedbyroleuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', 'INSERT', '{"uuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "roletype": "ADMIN", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '3dec9bdf-06fc-4a27-b26d-5918ad1e5990', 'INSERT', '{"op": "UPDATE", "uuid": "3dec9bdf-06fc-4a27-b26d-5918ad1e5990", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '472f52b4-1b7b-4194-b8f0-d7c23686f721', 'INSERT', '{"uuid": "472f52b4-1b7b-4194-b8f0-d7c23686f721", "assumed": true, "ascendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "descendantuuid": "3dec9bdf-06fc-4a27-b26d-5918ad1e5990", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1741dfae-e362-4172-a594-d9c43da3c695', 'INSERT', '{"uuid": "1741dfae-e362-4172-a594-d9c43da3c695", "assumed": true, "ascendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "descendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7e71f107-6953-42c7-a560-dc9036094198', 'INSERT', '{"uuid": "7e71f107-6953-42c7-a560-dc9036094198", "roletype": "AGENT", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f8534a79-f9a6-433e-ad0a-670a242adb12', 'INSERT', '{"uuid": "f8534a79-f9a6-433e-ad0a-670a242adb12", "assumed": true, "ascendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "descendantuuid": "7e71f107-6953-42c7-a560-dc9036094198", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '51bb98dd-9201-40e4-b008-221337eeb471', 'INSERT', '{"uuid": "51bb98dd-9201-40e4-b008-221337eeb471", "roletype": "TENANT", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7efca22b-d9ff-4331-a718-ddfca5ebac59', 'INSERT', '{"op": "SELECT", "uuid": "7efca22b-d9ff-4331-a718-ddfca5ebac59", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '71f86f97-8d99-488a-837d-63fb7391647b', 'INSERT', '{"uuid": "71f86f97-8d99-488a-837d-63fb7391647b", "assumed": true, "ascendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "descendantuuid": "7efca22b-d9ff-4331-a718-ddfca5ebac59", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '57645ef6-c6b1-42f2-a8ff-d92ff3c5728f', 'INSERT', '{"uuid": "57645ef6-c6b1-42f2-a8ff-d92ff3c5728f", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f1a7d8e4-712d-4e30-bf71-4b0c79489a29', 'INSERT', '{"uuid": "f1a7d8e4-712d-4e30-bf71-4b0c79489a29", "assumed": true, "ascendantuuid": "7e71f107-6953-42c7-a560-dc9036094198", "descendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6fbae586-ade0-46b4-9d3d-abd641e5da1e', 'INSERT', '{"uuid": "6fbae586-ade0-46b4-9d3d-abd641e5da1e", "assumed": true, "ascendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "descendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ab6f00c4-88be-4613-b44c-4760760877a3', 'INSERT', '{"uuid": "ab6f00c4-88be-4613-b44c-4760760877a3", "assumed": true, "ascendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "descendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '86b706e2-9225-482e-b82a-d4ac4adab065', 'INSERT', '{"uuid": "86b706e2-9225-482e-b82a-d4ac4adab065", "serialid": 183, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '869d177e-9bf1-44ad-b890-efab238568ac', 'INSERT', '{"uuid": "869d177e-9bf1-44ad-b890-efab238568ac", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "7e71f107-6953-42c7-a560-dc9036094198", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fa3d3a8c-40e6-4c39-9be7-3225af11ad34', 'INSERT', '{"uuid": "fa3d3a8c-40e6-4c39-9be7-3225af11ad34", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "grantedbyroleuuid": null, "grantedbytriggerof": "268c2ce6-8945-4393-9916-ac90050f064a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '85505863-6857-4ae9-82de-f9394eebd7df', 'INSERT', '{"op": "INSERT", "uuid": "85505863-6857-4ae9-82de-f9394eebd7df", "objectuuid": "268c2ce6-8945-4393-9916-ac90050f064a", "optablename": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'afc35729-f746-43f6-bfe2-cdc1688c89a3', 'INSERT', '{"uuid": "afc35729-f746-43f6-bfe2-cdc1688c89a3", "assumed": true, "ascendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "descendantuuid": "85505863-6857-4ae9-82de-f9394eebd7df", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '268c2ce6-8945-4393-9916-ac90050f064a', 'INSERT', '{"mark": null, "type": "DEBITOR", "uuid": "268c2ce6-8945-4393-9916-ac90050f064a", "version": 0, "anchoruuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "holderuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "contactuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'INSERT', '{"uuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4", "serialid": 182, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', 'INSERT', '{"uuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "roletype": "OWNER", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ccdf92f5-ebce-4d9b-b544-e470959b498b', 'INSERT', '{"op": "DELETE", "uuid": "ccdf92f5-ebce-4d9b-b544-e470959b498b", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6bcdce43-ebe8-48a8-8bbe-757ac3d22f62', 'INSERT', '{"uuid": "6bcdce43-ebe8-48a8-8bbe-757ac3d22f62", "assumed": true, "ascendantuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "descendantuuid": "ccdf92f5-ebce-4d9b-b544-e470959b498b", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fc944320-20a9-4b02-bb1f-8a8692b477c4', 'INSERT', '{"uuid": "fc944320-20a9-4b02-bb1f-8a8692b477c4", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f3462b23-10d0-4491-9f6f-f938b0479eff', 'INSERT', '{"uuid": "f3462b23-10d0-4491-9f6f-f938b0479eff", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "grantedbyroleuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', 'INSERT', '{"uuid": "acf8c4b2-7c5f-4e89-9696-77a598b5f8b8", "roletype": "ADMIN", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '307b971b-39bf-4a5d-8595-ad080abafbb0', 'INSERT', '{"op": "UPDATE", "uuid": "307b971b-39bf-4a5d-8595-ad080abafbb0", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '80aa3cff-e661-4853-868e-66706ce46d96', 'INSERT', '{"uuid": "80aa3cff-e661-4853-868e-66706ce46d96", "assumed": true, "ascendantuuid": "acf8c4b2-7c5f-4e89-9696-77a598b5f8b8", "descendantuuid": "307b971b-39bf-4a5d-8595-ad080abafbb0", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ef9ac178-79d4-460f-9cbc-3c1f1d9fcfee', 'INSERT', '{"uuid": "ef9ac178-79d4-460f-9cbc-3c1f1d9fcfee", "assumed": true, "ascendantuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "descendantuuid": "acf8c4b2-7c5f-4e89-9696-77a598b5f8b8", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', 'INSERT', '{"uuid": "ed2f5f84-cc30-4f29-aef7-48eb64a5fb15", "roletype": "AGENT", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '34113cca-7848-4dd1-85b5-1137c93de73b', 'INSERT', '{"uuid": "34113cca-7848-4dd1-85b5-1137c93de73b", "assumed": true, "ascendantuuid": "acf8c4b2-7c5f-4e89-9696-77a598b5f8b8", "descendantuuid": "ed2f5f84-cc30-4f29-aef7-48eb64a5fb15", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'c3aff634-452d-47fc-954f-9edebe3a0c74', 'INSERT', '{"uuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "roletype": "TENANT", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '37dc0f00-4620-46dc-83a6-3d64cbc7a1a2', 'INSERT', '{"op": "SELECT", "uuid": "37dc0f00-4620-46dc-83a6-3d64cbc7a1a2", "objectuuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '041d4019-8ada-401a-8cff-3c3d5eb68344', 'INSERT', '{"uuid": "041d4019-8ada-401a-8cff-3c3d5eb68344", "assumed": true, "ascendantuuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "descendantuuid": "37dc0f00-4620-46dc-83a6-3d64cbc7a1a2", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bab7f934-c15a-4ea4-925c-97df5c2f07c9', 'INSERT', '{"uuid": "bab7f934-c15a-4ea4-925c-97df5c2f07c9", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '22fabbc7-68d6-4067-9389-4df1f0fc81b6', 'INSERT', '{"uuid": "22fabbc7-68d6-4067-9389-4df1f0fc81b6", "assumed": true, "ascendantuuid": "ed2f5f84-cc30-4f29-aef7-48eb64a5fb15", "descendantuuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3eefa810-8bf3-465e-8fc8-0b9be1454ced', 'INSERT', '{"uuid": "3eefa810-8bf3-465e-8fc8-0b9be1454ced", "assumed": true, "ascendantuuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "descendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c1c89eb6-d2a7-42d0-a8eb-2cc7432baa6c', 'INSERT', '{"uuid": "c1c89eb6-d2a7-42d0-a8eb-2cc7432baa6c", "assumed": true, "ascendantuuid": "c3aff634-452d-47fc-954f-9edebe3a0c74", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '60a5a33a-e2b7-4160-800d-740251613ddd', 'INSERT', '{"uuid": "60a5a33a-e2b7-4160-800d-740251613ddd", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "ed2f5f84-cc30-4f29-aef7-48eb64a5fb15", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4f17fa4e-ae1e-40c7-9047-321e1e52c84a', 'INSERT', '{"uuid": "4f17fa4e-ae1e-40c7-9047-321e1e52c84a", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "9a93e3c2-b1c1-47d1-8761-0cafe9b42917", "grantedbyroleuuid": null, "grantedbytriggerof": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "fb23d39f-0150-4503-8bcc-090b1ed3d0e4", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "contactuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '06917568-e508-436a-a50f-246ea2afe064', 'INSERT', '{"uuid": "06917568-e508-436a-a50f-246ea2afe064", "roletype": "OWNER", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '84fffac0-e3e1-4374-a4e1-6d16b91d9e8f', 'INSERT', '{"op": "DELETE", "uuid": "84fffac0-e3e1-4374-a4e1-6d16b91d9e8f", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '53c499fa-1699-45a5-b113-9a952c73fd17', 'INSERT', '{"uuid": "53c499fa-1699-45a5-b113-9a952c73fd17", "assumed": true, "ascendantuuid": "06917568-e508-436a-a50f-246ea2afe064", "descendantuuid": "84fffac0-e3e1-4374-a4e1-6d16b91d9e8f", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '65c5505d-1600-476b-8580-fb6084cf1d7d', 'INSERT', '{"uuid": "65c5505d-1600-476b-8580-fb6084cf1d7d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "06917568-e508-436a-a50f-246ea2afe064", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ffa4fc5b-0677-4cae-832f-11382c2ce292', 'INSERT', '{"uuid": "ffa4fc5b-0677-4cae-832f-11382c2ce292", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "06917568-e508-436a-a50f-246ea2afe064", "grantedbyroleuuid": "06917568-e508-436a-a50f-246ea2afe064", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b152c130-be97-416c-b531-52656dd3c38d', 'INSERT', '{"uuid": "b152c130-be97-416c-b531-52656dd3c38d", "roletype": "ADMIN", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7a5ed45e-7096-4f48-a0d9-83df51f3349c', 'INSERT', '{"op": "UPDATE", "uuid": "7a5ed45e-7096-4f48-a0d9-83df51f3349c", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e48f9681-c424-4348-8fc6-c0303d4f01ec', 'INSERT', '{"uuid": "e48f9681-c424-4348-8fc6-c0303d4f01ec", "assumed": true, "ascendantuuid": "b152c130-be97-416c-b531-52656dd3c38d", "descendantuuid": "7a5ed45e-7096-4f48-a0d9-83df51f3349c", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '340a557e-8439-4bf8-ba93-5c7747dce2d4', 'INSERT', '{"uuid": "340a557e-8439-4bf8-ba93-5c7747dce2d4", "assumed": true, "ascendantuuid": "06917568-e508-436a-a50f-246ea2afe064", "descendantuuid": "b152c130-be97-416c-b531-52656dd3c38d", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd6c011ff-bf38-4f09-be3e-45f89eca1ed4', 'INSERT', '{"uuid": "d6c011ff-bf38-4f09-be3e-45f89eca1ed4", "roletype": "AGENT", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '460cb051-c5db-4d1f-bd66-36fc267c2ff2', 'INSERT', '{"uuid": "460cb051-c5db-4d1f-bd66-36fc267c2ff2", "assumed": true, "ascendantuuid": "b152c130-be97-416c-b531-52656dd3c38d", "descendantuuid": "d6c011ff-bf38-4f09-be3e-45f89eca1ed4", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', 'INSERT', '{"uuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "roletype": "TENANT", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f2395c78-9098-4d15-9ac4-b330a6802390', 'INSERT', '{"op": "SELECT", "uuid": "f2395c78-9098-4d15-9ac4-b330a6802390", "objectuuid": "86b706e2-9225-482e-b82a-d4ac4adab065", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7719c65b-f997-4b81-8773-8ea6ac2551ac', 'INSERT', '{"uuid": "7719c65b-f997-4b81-8773-8ea6ac2551ac", "assumed": true, "ascendantuuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "descendantuuid": "f2395c78-9098-4d15-9ac4-b330a6802390", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc2eeae8-cd95-498d-8790-d139c352019d', 'INSERT', '{"uuid": "bc2eeae8-cd95-498d-8790-d139c352019d", "assumed": true, "ascendantuuid": "b9592474-79f3-42d9-828f-8cc2e5c8ba7c", "descendantuuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bec9f28c-f43f-4611-ac52-8f6965ba934c', 'INSERT', '{"uuid": "bec9f28c-f43f-4611-ac52-8f6965ba934c", "assumed": true, "ascendantuuid": "d6c011ff-bf38-4f09-be3e-45f89eca1ed4", "descendantuuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'da004904-0957-4585-8c99-9990099e48bc', 'INSERT', '{"uuid": "da004904-0957-4585-8c99-9990099e48bc", "assumed": true, "ascendantuuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "descendantuuid": "1280183b-c71a-4b86-bdec-7f3800679ef4", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '20123f90-13d3-4b79-8200-84c570c86645', 'INSERT', '{"uuid": "20123f90-13d3-4b79-8200-84c570c86645", "assumed": true, "ascendantuuid": "b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11", "descendantuuid": "2bcadf08-a16f-4ab6-afbe-83db1b1424d0", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f4964fb4-c46b-4bc5-b7a6-36526dcbc16c', 'INSERT', '{"uuid": "f4964fb4-c46b-4bc5-b7a6-36526dcbc16c", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "d6c011ff-bf38-4f09-be3e-45f89eca1ed4", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '186482a3-b3aa-4f41-b3c0-878bc178afab', 'INSERT', '{"uuid": "186482a3-b3aa-4f41-b3c0-878bc178afab", "assumed": true, "ascendantuuid": "f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b", "descendantuuid": "06917568-e508-436a-a50f-246ea2afe064", "grantedbyroleuuid": null, "grantedbytriggerof": "86b706e2-9225-482e-b82a-d4ac4adab065"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '86b706e2-9225-482e-b82a-d4ac4adab065', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "86b706e2-9225-482e-b82a-d4ac4adab065", "version": 0, "anchoruuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "holderuuid": "cd48cfd6-6313-408f-ae7d-9af047d0c22e", "contactuuid": "d363745a-e94f-48be-8397-4b361570a54d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'INSERT', '{"uuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834", "serialid": 184, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', 'INSERT', '{"uuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "roletype": "OWNER", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b371c978-c2d9-4b06-94be-a0944f0e8b34', 'INSERT', '{"op": "DELETE", "uuid": "b371c978-c2d9-4b06-94be-a0944f0e8b34", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7305f3c9-8235-4a92-85bb-9ce6188edfaa', 'INSERT', '{"uuid": "7305f3c9-8235-4a92-85bb-9ce6188edfaa", "assumed": true, "ascendantuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "descendantuuid": "b371c978-c2d9-4b06-94be-a0944f0e8b34", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '40d08a9d-d990-4a9e-a5b1-6c60e8a70881', 'INSERT', '{"uuid": "40d08a9d-d990-4a9e-a5b1-6c60e8a70881", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c7b75a52-20e3-4d01-ba1c-bc18ad58cfa0', 'INSERT', '{"uuid": "c7b75a52-20e3-4d01-ba1c-bc18ad58cfa0", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "grantedbyroleuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a81d830d-68c5-44ea-bd6b-968a28f90197', 'INSERT', '{"uuid": "a81d830d-68c5-44ea-bd6b-968a28f90197", "roletype": "ADMIN", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f8fd6f7e-9507-47ad-ab42-fbd72c3718f1', 'INSERT', '{"op": "UPDATE", "uuid": "f8fd6f7e-9507-47ad-ab42-fbd72c3718f1", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bfdbce82-4e8b-415a-b5bc-36dfac77faaf', 'INSERT', '{"uuid": "bfdbce82-4e8b-415a-b5bc-36dfac77faaf", "assumed": true, "ascendantuuid": "a81d830d-68c5-44ea-bd6b-968a28f90197", "descendantuuid": "f8fd6f7e-9507-47ad-ab42-fbd72c3718f1", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dd0a6ede-4366-40d2-8355-6fd331cf91f3', 'INSERT', '{"uuid": "dd0a6ede-4366-40d2-8355-6fd331cf91f3", "assumed": true, "ascendantuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "descendantuuid": "a81d830d-68c5-44ea-bd6b-968a28f90197", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a64973bb-c814-4af9-b020-99f5f726dd24', 'INSERT', '{"uuid": "a64973bb-c814-4af9-b020-99f5f726dd24", "roletype": "AGENT", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b54dffd4-9a6a-46f9-b66d-dc4b3a71ed1a', 'INSERT', '{"uuid": "b54dffd4-9a6a-46f9-b66d-dc4b3a71ed1a", "assumed": true, "ascendantuuid": "a81d830d-68c5-44ea-bd6b-968a28f90197", "descendantuuid": "a64973bb-c814-4af9-b020-99f5f726dd24", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'aa3db109-7ed1-496a-9490-62dabce849e2', 'INSERT', '{"uuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "roletype": "TENANT", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9fb3f5e1-472b-4679-a4a8-099557352ec7', 'INSERT', '{"op": "SELECT", "uuid": "9fb3f5e1-472b-4679-a4a8-099557352ec7", "objectuuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6b621671-5dfc-49c2-8900-a243c08cd4d1', 'INSERT', '{"uuid": "6b621671-5dfc-49c2-8900-a243c08cd4d1", "assumed": true, "ascendantuuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "descendantuuid": "9fb3f5e1-472b-4679-a4a8-099557352ec7", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3792e102-fc0a-41bc-9c09-dff0f2c6ee17', 'INSERT', '{"uuid": "3792e102-fc0a-41bc-9c09-dff0f2c6ee17", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '49cf2839-3725-4c1b-839f-69006291fa6a', 'INSERT', '{"uuid": "49cf2839-3725-4c1b-839f-69006291fa6a", "assumed": true, "ascendantuuid": "a64973bb-c814-4af9-b020-99f5f726dd24", "descendantuuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd49825b7-cd73-44c8-b642-fc6e1a2e8343', 'INSERT', '{"uuid": "d49825b7-cd73-44c8-b642-fc6e1a2e8343", "assumed": true, "ascendantuuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f19b508b-3f4f-40ed-add1-f4cf0f0f3f44', 'INSERT', '{"uuid": "f19b508b-3f4f-40ed-add1-f4cf0f0f3f44", "assumed": true, "ascendantuuid": "aa3db109-7ed1-496a-9490-62dabce849e2", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f2c14dae-2c58-49a3-bb69-1179e3e07155', 'INSERT', '{"uuid": "f2c14dae-2c58-49a3-bb69-1179e3e07155", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "a64973bb-c814-4af9-b020-99f5f726dd24", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bce6bc63-111c-4b80-be4b-1af2234d732a', 'INSERT', '{"uuid": "bce6bc63-111c-4b80-be4b-1af2234d732a", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "52fd5f0b-55be-4e14-abfd-6b94ff5b830d", "grantedbyroleuuid": null, "grantedbytriggerof": "2db1a3ce-910d-4f3d-be67-b3a0a598d834"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "2db1a3ce-910d-4f3d-be67-b3a0a598d834", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'INSERT', '{"uuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5", "serialid": 185, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5c2537c8-eb2c-4da1-b78e-071377668767', 'INSERT', '{"uuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "roletype": "OWNER", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '909ff58a-4c4c-410d-a3eb-f17cf15c330c', 'INSERT', '{"op": "DELETE", "uuid": "909ff58a-4c4c-410d-a3eb-f17cf15c330c", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a2a9410b-7cc0-4cb4-a9fc-b3d3af01872e', 'INSERT', '{"uuid": "a2a9410b-7cc0-4cb4-a9fc-b3d3af01872e", "assumed": true, "ascendantuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "descendantuuid": "909ff58a-4c4c-410d-a3eb-f17cf15c330c", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8f34f92d-555d-4a02-86cb-4353761e58f5', 'INSERT', '{"uuid": "8f34f92d-555d-4a02-86cb-4353761e58f5", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0f0950ef-2899-4385-8256-9c7dd9c70628', 'INSERT', '{"uuid": "0f0950ef-2899-4385-8256-9c7dd9c70628", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "grantedbyroleuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '07b606b4-e386-4d2d-8ecd-438aa4b3cd80', 'INSERT', '{"uuid": "07b606b4-e386-4d2d-8ecd-438aa4b3cd80", "roletype": "ADMIN", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2b643877-6882-4d24-bf51-fb39d8a59287', 'INSERT', '{"op": "UPDATE", "uuid": "2b643877-6882-4d24-bf51-fb39d8a59287", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e4bcfb5b-8fee-42b3-a716-306448e99696', 'INSERT', '{"uuid": "e4bcfb5b-8fee-42b3-a716-306448e99696", "assumed": true, "ascendantuuid": "07b606b4-e386-4d2d-8ecd-438aa4b3cd80", "descendantuuid": "2b643877-6882-4d24-bf51-fb39d8a59287", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5c958c7b-c36f-4565-b5ea-2ce0ea2aacda', 'INSERT', '{"uuid": "5c958c7b-c36f-4565-b5ea-2ce0ea2aacda", "assumed": true, "ascendantuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "descendantuuid": "07b606b4-e386-4d2d-8ecd-438aa4b3cd80", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ce71b519-42cc-4674-8bc0-a2df3c13b6c7', 'INSERT', '{"uuid": "ce71b519-42cc-4674-8bc0-a2df3c13b6c7", "roletype": "AGENT", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c2ccc14e-f11b-497f-95db-5397aa38012b', 'INSERT', '{"op": "SELECT", "uuid": "c2ccc14e-f11b-497f-95db-5397aa38012b", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '295e2bec-5586-4a30-8d27-f5462136389e', 'INSERT', '{"uuid": "295e2bec-5586-4a30-8d27-f5462136389e", "assumed": true, "ascendantuuid": "07b606b4-e386-4d2d-8ecd-438aa4b3cd80", "descendantuuid": "ce71b519-42cc-4674-8bc0-a2df3c13b6c7", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '425b6cf7-172a-4e48-9f66-5592d4e25a99', 'INSERT', '{"uuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "roletype": "TENANT", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '51982882-3575-40c4-86a1-c05fedc436db', 'INSERT', '{"op": "SELECT", "uuid": "51982882-3575-40c4-86a1-c05fedc436db", "objectuuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ec03b430-bd0f-4553-bea1-756f4442d5ad', 'INSERT', '{"uuid": "ec03b430-bd0f-4553-bea1-756f4442d5ad", "assumed": true, "ascendantuuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "descendantuuid": "51982882-3575-40c4-86a1-c05fedc436db", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c486f6cf-9037-4fb2-828b-c29110390e98', 'INSERT', '{"uuid": "c486f6cf-9037-4fb2-828b-c29110390e98", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '18b7e9cb-354d-4eb2-a06a-11d19c91adb9', 'INSERT', '{"uuid": "18b7e9cb-354d-4eb2-a06a-11d19c91adb9", "assumed": true, "ascendantuuid": "ce71b519-42cc-4674-8bc0-a2df3c13b6c7", "descendantuuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c5644335-3b7f-4438-8814-e098d72c2772', 'INSERT', '{"uuid": "c5644335-3b7f-4438-8814-e098d72c2772", "assumed": true, "ascendantuuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '08630602-93c4-4caf-8086-fe3910ba48f0', 'INSERT', '{"uuid": "08630602-93c4-4caf-8086-fe3910ba48f0", "assumed": true, "ascendantuuid": "425b6cf7-172a-4e48-9f66-5592d4e25a99", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e130a4fa-c05f-45b6-a232-e526c0c20c15', 'INSERT', '{"uuid": "e130a4fa-c05f-45b6-a232-e526c0c20c15", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "ce71b519-42cc-4674-8bc0-a2df3c13b6c7", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9bb65a3b-e712-46c4-9bd8-f7a77494e24a', 'INSERT', '{"uuid": "9bb65a3b-e712-46c4-9bd8-f7a77494e24a", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "5c2537c8-eb2c-4da1-b78e-071377668767", "grantedbyroleuuid": null, "grantedbytriggerof": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "b5cfc5c1-b775-4c59-8967-66d2cf7851e5", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'INSERT', '{"uuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465", "serialid": 186, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5b5433b1-b6eb-4034-841b-559cba014f35', 'INSERT', '{"uuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "roletype": "OWNER", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5ce74841-55a0-48a2-86ff-253dcfdf8a6f', 'INSERT', '{"op": "DELETE", "uuid": "5ce74841-55a0-48a2-86ff-253dcfdf8a6f", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fe96ea19-f953-40d1-9745-b36f78493abb', 'INSERT', '{"uuid": "fe96ea19-f953-40d1-9745-b36f78493abb", "assumed": true, "ascendantuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "descendantuuid": "5ce74841-55a0-48a2-86ff-253dcfdf8a6f", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fd38daf1-62fa-4edf-a316-dbe4945b4ae8', 'INSERT', '{"uuid": "fd38daf1-62fa-4edf-a316-dbe4945b4ae8", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '336f1895-1533-4773-b907-18b4a4beec3c', 'INSERT', '{"uuid": "336f1895-1533-4773-b907-18b4a4beec3c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "grantedbyroleuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9851392a-7c6e-4642-881b-dd7728556b86', 'INSERT', '{"uuid": "9851392a-7c6e-4642-881b-dd7728556b86", "roletype": "ADMIN", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fe903d29-2b20-4f62-8973-ce885b0d03ab', 'INSERT', '{"op": "UPDATE", "uuid": "fe903d29-2b20-4f62-8973-ce885b0d03ab", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cd6e2e18-034c-40bf-bf34-86481d40edb8', 'INSERT', '{"uuid": "cd6e2e18-034c-40bf-bf34-86481d40edb8", "assumed": true, "ascendantuuid": "9851392a-7c6e-4642-881b-dd7728556b86", "descendantuuid": "fe903d29-2b20-4f62-8973-ce885b0d03ab", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '720713e2-c2f4-47f2-9479-0f9a518f6895', 'INSERT', '{"uuid": "720713e2-c2f4-47f2-9479-0f9a518f6895", "assumed": true, "ascendantuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "descendantuuid": "9851392a-7c6e-4642-881b-dd7728556b86", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7c6415c0-9900-4de6-9459-e4d50b8e9ae4', 'INSERT', '{"uuid": "7c6415c0-9900-4de6-9459-e4d50b8e9ae4", "roletype": "AGENT", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c4b87697-d656-47d7-88ed-9bf46fae9de7', 'INSERT', '{"uuid": "c4b87697-d656-47d7-88ed-9bf46fae9de7", "assumed": true, "ascendantuuid": "9851392a-7c6e-4642-881b-dd7728556b86", "descendantuuid": "7c6415c0-9900-4de6-9459-e4d50b8e9ae4", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6035bf8e-466b-47f7-a3e8-96bab2e8033a', 'INSERT', '{"uuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "roletype": "TENANT", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991', 'INSERT', '{"op": "SELECT", "uuid": "fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991", "objectuuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '855c8310-eb6b-4026-80ea-ed56ff9c25bd', 'INSERT', '{"uuid": "855c8310-eb6b-4026-80ea-ed56ff9c25bd", "assumed": true, "ascendantuuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "descendantuuid": "fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3b8c7961-f697-4f50-a6b6-a0f27ee09ec6', 'INSERT', '{"uuid": "3b8c7961-f697-4f50-a6b6-a0f27ee09ec6", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'aab2538a-a511-4780-8607-34f99eee440f', 'INSERT', '{"uuid": "aab2538a-a511-4780-8607-34f99eee440f", "assumed": true, "ascendantuuid": "7c6415c0-9900-4de6-9459-e4d50b8e9ae4", "descendantuuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '98256c44-181e-4e8b-bc97-e044d8b8b0f4', 'INSERT', '{"uuid": "98256c44-181e-4e8b-bc97-e044d8b8b0f4", "assumed": true, "ascendantuuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ffa67fff-4ec5-4d34-92df-6ababcbe29a0', 'INSERT', '{"uuid": "ffa67fff-4ec5-4d34-92df-6ababcbe29a0", "assumed": true, "ascendantuuid": "6035bf8e-466b-47f7-a3e8-96bab2e8033a", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '80052042-d14f-4e9e-98a7-c3fd9daf423c', 'INSERT', '{"uuid": "80052042-d14f-4e9e-98a7-c3fd9daf423c", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "7c6415c0-9900-4de6-9459-e4d50b8e9ae4", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cd293115-6fe8-457e-9010-870320be69bf', 'INSERT', '{"uuid": "cd293115-6fe8-457e-9010-870320be69bf", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "5b5433b1-b6eb-4034-841b-559cba014f35", "grantedbyroleuuid": null, "grantedbytriggerof": "ddbda55a-0143-4224-bb6c-7ec5e8b79465"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "ddbda55a-0143-4224-bb6c-7ec5e8b79465", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'INSERT', '{"uuid": "47b7bd3f-8668-4934-bee9-56708e835d7f", "serialid": 187, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1326d07c-623b-40fc-942a-659f5c7308ee', 'INSERT', '{"uuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "roletype": "OWNER", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '118e8006-bf10-4b7d-8f07-fb4b8d9de592', 'INSERT', '{"op": "DELETE", "uuid": "118e8006-bf10-4b7d-8f07-fb4b8d9de592", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2e8ae0f2-98ff-4656-978f-e2fffec36ce9', 'INSERT', '{"uuid": "2e8ae0f2-98ff-4656-978f-e2fffec36ce9", "assumed": true, "ascendantuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "descendantuuid": "118e8006-bf10-4b7d-8f07-fb4b8d9de592", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8c2b7fff-9921-445b-857c-de9de2dfcc0d', 'INSERT', '{"uuid": "8c2b7fff-9921-445b-857c-de9de2dfcc0d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '24ff72b7-f6cb-445e-a246-24a39f837a21', 'INSERT', '{"uuid": "24ff72b7-f6cb-445e-a246-24a39f837a21", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "grantedbyroleuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5310f493-97fb-4203-b41b-71423252cc4e', 'INSERT', '{"uuid": "5310f493-97fb-4203-b41b-71423252cc4e", "roletype": "ADMIN", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a2f2cc36-6c62-44e0-aaec-b4749ed25558', 'INSERT', '{"op": "UPDATE", "uuid": "a2f2cc36-6c62-44e0-aaec-b4749ed25558", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2da62c4f-9568-4013-b1e6-d1f91ded337e', 'INSERT', '{"uuid": "2da62c4f-9568-4013-b1e6-d1f91ded337e", "assumed": true, "ascendantuuid": "5310f493-97fb-4203-b41b-71423252cc4e", "descendantuuid": "a2f2cc36-6c62-44e0-aaec-b4749ed25558", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '20286312-5e98-4ef1-b0ff-0439187b7f4c', 'INSERT', '{"uuid": "20286312-5e98-4ef1-b0ff-0439187b7f4c", "assumed": true, "ascendantuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "descendantuuid": "5310f493-97fb-4203-b41b-71423252cc4e", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '09d8befe-d786-4023-b10e-5479f6d09bc1', 'INSERT', '{"uuid": "09d8befe-d786-4023-b10e-5479f6d09bc1", "roletype": "AGENT", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4efe1a38-ea34-4c3f-bdff-a511210ce018', 'INSERT', '{"uuid": "4efe1a38-ea34-4c3f-bdff-a511210ce018", "assumed": true, "ascendantuuid": "5310f493-97fb-4203-b41b-71423252cc4e", "descendantuuid": "09d8befe-d786-4023-b10e-5479f6d09bc1", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '03b9f057-a59e-4253-a83a-ed4d7058a663', 'INSERT', '{"uuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "roletype": "TENANT", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '252d4677-4f71-4719-a287-37245b03a8bf', 'INSERT', '{"op": "SELECT", "uuid": "252d4677-4f71-4719-a287-37245b03a8bf", "objectuuid": "47b7bd3f-8668-4934-bee9-56708e835d7f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b8aa7fbb-8bee-44d6-b98f-072f6d26a269', 'INSERT', '{"uuid": "b8aa7fbb-8bee-44d6-b98f-072f6d26a269", "assumed": true, "ascendantuuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "descendantuuid": "252d4677-4f71-4719-a287-37245b03a8bf", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '767f78b2-90e0-4c86-b7cc-ba112668c7a1', 'INSERT', '{"uuid": "767f78b2-90e0-4c86-b7cc-ba112668c7a1", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd5c7c0d3-5e91-4abf-8729-c2e6045550cc', 'INSERT', '{"uuid": "d5c7c0d3-5e91-4abf-8729-c2e6045550cc", "assumed": true, "ascendantuuid": "09d8befe-d786-4023-b10e-5479f6d09bc1", "descendantuuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8f30f856-f8c4-4fe4-aab3-30613db0380f', 'INSERT', '{"uuid": "8f30f856-f8c4-4fe4-aab3-30613db0380f", "assumed": true, "ascendantuuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8533c3db-8c1d-4d0b-ab2d-6087562d07c6', 'INSERT', '{"uuid": "8533c3db-8c1d-4d0b-ab2d-6087562d07c6", "assumed": true, "ascendantuuid": "03b9f057-a59e-4253-a83a-ed4d7058a663", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '77b6e4a5-a112-4d8c-89cf-9b9442283a17', 'INSERT', '{"uuid": "77b6e4a5-a112-4d8c-89cf-9b9442283a17", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "09d8befe-d786-4023-b10e-5479f6d09bc1", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ebb76242-19c3-4f3b-a669-8400acf4abda', 'INSERT', '{"uuid": "ebb76242-19c3-4f3b-a669-8400acf4abda", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "1326d07c-623b-40fc-942a-659f5c7308ee", "grantedbyroleuuid": null, "grantedbytriggerof": "47b7bd3f-8668-4934-bee9-56708e835d7f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "47b7bd3f-8668-4934-bee9-56708e835d7f", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'INSERT', '{"uuid": "80a9daef-e282-499a-ab2f-98a016edb8f7", "serialid": 188, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '108a7577-6cac-417f-a0dc-84c799c54797', 'INSERT', '{"uuid": "108a7577-6cac-417f-a0dc-84c799c54797", "roletype": "OWNER", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5367452a-5726-452f-a76b-8393cc5e6689', 'INSERT', '{"op": "DELETE", "uuid": "5367452a-5726-452f-a76b-8393cc5e6689", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '97156b91-a452-4cf3-8c14-fa7f5c5a26da', 'INSERT', '{"uuid": "97156b91-a452-4cf3-8c14-fa7f5c5a26da", "assumed": true, "ascendantuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "descendantuuid": "5367452a-5726-452f-a76b-8393cc5e6689", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '59ee3338-5e2f-4d01-9316-c79338de9aa3', 'INSERT', '{"uuid": "59ee3338-5e2f-4d01-9316-c79338de9aa3", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b42ffc07-cefe-4607-b3f4-4fa5827bd0df', 'INSERT', '{"uuid": "b42ffc07-cefe-4607-b3f4-4fa5827bd0df", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "grantedbyroleuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4538eaad-57b6-4089-a058-2e7b2adfc2ec', 'INSERT', '{"uuid": "4538eaad-57b6-4089-a058-2e7b2adfc2ec", "roletype": "ADMIN", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1a32ebbf-8e70-4268-bb9e-dbcc7a501b71', 'INSERT', '{"op": "UPDATE", "uuid": "1a32ebbf-8e70-4268-bb9e-dbcc7a501b71", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '46f25ed8-a3cf-422a-bc12-0617d0cfdeed', 'INSERT', '{"uuid": "46f25ed8-a3cf-422a-bc12-0617d0cfdeed", "assumed": true, "ascendantuuid": "4538eaad-57b6-4089-a058-2e7b2adfc2ec", "descendantuuid": "1a32ebbf-8e70-4268-bb9e-dbcc7a501b71", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b920e47d-1424-4935-85cb-5ca323c0fd9c', 'INSERT', '{"uuid": "b920e47d-1424-4935-85cb-5ca323c0fd9c", "assumed": true, "ascendantuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "descendantuuid": "4538eaad-57b6-4089-a058-2e7b2adfc2ec", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', 'INSERT', '{"uuid": "4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb", "roletype": "AGENT", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f2d7c381-8560-4361-a49a-32f3cfb4d099', 'INSERT', '{"uuid": "f2d7c381-8560-4361-a49a-32f3cfb4d099", "assumed": true, "ascendantuuid": "4538eaad-57b6-4089-a058-2e7b2adfc2ec", "descendantuuid": "4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b8faa38e-6fff-42fc-a1ce-b84070077a61', 'INSERT', '{"uuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "roletype": "TENANT", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'af6f87de-0aa9-4320-b5ba-96a8ac23c9e6', 'INSERT', '{"op": "SELECT", "uuid": "af6f87de-0aa9-4320-b5ba-96a8ac23c9e6", "objectuuid": "80a9daef-e282-499a-ab2f-98a016edb8f7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c7e7ddea-f5fb-4abb-8f2d-766ead997fc8', 'INSERT', '{"uuid": "c7e7ddea-f5fb-4abb-8f2d-766ead997fc8", "assumed": true, "ascendantuuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "descendantuuid": "af6f87de-0aa9-4320-b5ba-96a8ac23c9e6", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f7b646a0-5cf2-4ea9-a0ef-76976503827c', 'INSERT', '{"uuid": "f7b646a0-5cf2-4ea9-a0ef-76976503827c", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e21ef4f6-3d46-431b-9c1e-17d15c3bd777', 'INSERT', '{"uuid": "e21ef4f6-3d46-431b-9c1e-17d15c3bd777", "assumed": true, "ascendantuuid": "4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb", "descendantuuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '773184a7-0b28-431c-a763-9cf445a30a53', 'INSERT', '{"uuid": "773184a7-0b28-431c-a763-9cf445a30a53", "assumed": true, "ascendantuuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '33651c0b-74a1-4a23-a7c0-77e843306d26', 'INSERT', '{"uuid": "33651c0b-74a1-4a23-a7c0-77e843306d26", "assumed": true, "ascendantuuid": "b8faa38e-6fff-42fc-a1ce-b84070077a61", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8cc78d3c-5ae4-42f5-82b0-2431472de78a', 'INSERT', '{"uuid": "8cc78d3c-5ae4-42f5-82b0-2431472de78a", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '076c544a-24c9-4ce7-81d9-08e4fa51a4ed', 'INSERT', '{"uuid": "076c544a-24c9-4ce7-81d9-08e4fa51a4ed", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "108a7577-6cac-417f-a0dc-84c799c54797", "grantedbyroleuuid": null, "grantedbytriggerof": "80a9daef-e282-499a-ab2f-98a016edb8f7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "80a9daef-e282-499a-ab2f-98a016edb8f7", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '93d9827e-63dc-418e-a021-25b400847b2e', 'INSERT', '{"uuid": "93d9827e-63dc-418e-a021-25b400847b2e", "serialid": 189, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6da9d98a-3318-403e-a948-bc33efe3d5ce', 'INSERT', '{"uuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "roletype": "OWNER", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9821f69a-b029-4a8f-b1b3-229517380f60', 'INSERT', '{"op": "DELETE", "uuid": "9821f69a-b029-4a8f-b1b3-229517380f60", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'c17186dc-564d-4f82-914b-202ad8bc9941', 'INSERT', '{"uuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "roletype": "OWNER", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6c9fc22d-63c8-4f7a-98aa-ba8fff1e3da8', 'INSERT', '{"uuid": "6c9fc22d-63c8-4f7a-98aa-ba8fff1e3da8", "assumed": true, "ascendantuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "descendantuuid": "9821f69a-b029-4a8f-b1b3-229517380f60", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8eccc366-4e62-4fbf-b02c-ec8f6e209e70', 'INSERT', '{"uuid": "8eccc366-4e62-4fbf-b02c-ec8f6e209e70", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c38822e4-5e1e-4827-b360-b92d25c4d2ab', 'INSERT', '{"uuid": "c38822e4-5e1e-4827-b360-b92d25c4d2ab", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "grantedbyroleuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', 'INSERT', '{"uuid": "b2f0d8a8-ad0c-4c52-9c05-967973c99f8a", "roletype": "ADMIN", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8bee7b6c-05f5-4538-baf9-452d909f0657', 'INSERT', '{"op": "UPDATE", "uuid": "8bee7b6c-05f5-4538-baf9-452d909f0657", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'de27e4ea-e17c-4a35-bcb5-b66bc1057793', 'INSERT', '{"uuid": "de27e4ea-e17c-4a35-bcb5-b66bc1057793", "assumed": true, "ascendantuuid": "b2f0d8a8-ad0c-4c52-9c05-967973c99f8a", "descendantuuid": "8bee7b6c-05f5-4538-baf9-452d909f0657", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2dc2a6a9-cc30-47e8-bda0-c0a824d3c0ed', 'INSERT', '{"uuid": "2dc2a6a9-cc30-47e8-bda0-c0a824d3c0ed", "assumed": true, "ascendantuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "descendantuuid": "b2f0d8a8-ad0c-4c52-9c05-967973c99f8a", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '03245b58-dd24-4cd4-bf3f-d9ba51a69810', 'INSERT', '{"uuid": "03245b58-dd24-4cd4-bf3f-d9ba51a69810", "roletype": "AGENT", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '704bc599-a122-45b2-9dc4-86400b50c1c3', 'INSERT', '{"uuid": "704bc599-a122-45b2-9dc4-86400b50c1c3", "assumed": true, "ascendantuuid": "b2f0d8a8-ad0c-4c52-9c05-967973c99f8a", "descendantuuid": "03245b58-dd24-4cd4-bf3f-d9ba51a69810", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ff171f90-f6f2-4c7f-9128-051462cb2368', 'INSERT', '{"uuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "roletype": "TENANT", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b', 'INSERT', '{"op": "SELECT", "uuid": "2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b", "objectuuid": "93d9827e-63dc-418e-a021-25b400847b2e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '117ac268-6306-4b8c-b8b3-b80dd1cdfabe', 'INSERT', '{"uuid": "117ac268-6306-4b8c-b8b3-b80dd1cdfabe", "assumed": true, "ascendantuuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "descendantuuid": "2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '70e95aa8-1ac0-47ce-a7d7-a0c5a79389bf', 'INSERT', '{"uuid": "70e95aa8-1ac0-47ce-a7d7-a0c5a79389bf", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '844fac0e-a516-4f70-90c5-563ddade6f22', 'INSERT', '{"uuid": "844fac0e-a516-4f70-90c5-563ddade6f22", "assumed": true, "ascendantuuid": "03245b58-dd24-4cd4-bf3f-d9ba51a69810", "descendantuuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bfaf4e0e-12bd-40a5-bcaf-71f0f767975b', 'INSERT', '{"uuid": "bfaf4e0e-12bd-40a5-bcaf-71f0f767975b", "assumed": true, "ascendantuuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '56586e9a-9626-4412-a088-168ba9ad0426', 'INSERT', '{"uuid": "56586e9a-9626-4412-a088-168ba9ad0426", "assumed": true, "ascendantuuid": "ff171f90-f6f2-4c7f-9128-051462cb2368", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dc02e27c-0c6f-4fc3-bc30-25984f8e205c', 'INSERT', '{"uuid": "dc02e27c-0c6f-4fc3-bc30-25984f8e205c", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "03245b58-dd24-4cd4-bf3f-d9ba51a69810", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4e23bc29-96ac-49cb-a2b0-df041b44f6b2', 'INSERT', '{"uuid": "4e23bc29-96ac-49cb-a2b0-df041b44f6b2", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "6da9d98a-3318-403e-a948-bc33efe3d5ce", "grantedbyroleuuid": null, "grantedbytriggerof": "93d9827e-63dc-418e-a021-25b400847b2e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '93d9827e-63dc-418e-a021-25b400847b2e', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "93d9827e-63dc-418e-a021-25b400847b2e", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'INSERT', '{"uuid": "f4219fae-353d-4324-90ca-9f313a8c1c17", "serialid": 190, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1b1da9f7-1fb1-4b94-94d7-57275b028d54', 'INSERT', '{"uuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "roletype": "OWNER", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '94866c63-1d9f-4b00-b0ff-c6f48c5d6462', 'INSERT', '{"op": "DELETE", "uuid": "94866c63-1d9f-4b00-b0ff-c6f48c5d6462", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'db7b07bc-cfd4-4009-b6a9-3de845ff39bc', 'INSERT', '{"uuid": "db7b07bc-cfd4-4009-b6a9-3de845ff39bc", "assumed": true, "ascendantuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "descendantuuid": "94866c63-1d9f-4b00-b0ff-c6f48c5d6462", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '806bbe69-805c-4f05-8917-9ef45ae9c6aa', 'INSERT', '{"uuid": "806bbe69-805c-4f05-8917-9ef45ae9c6aa", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd49c29f2-d785-4043-890b-fe74dbb447dd', 'INSERT', '{"uuid": "d49c29f2-d785-4043-890b-fe74dbb447dd", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "grantedbyroleuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '871fd02d-def7-4c83-b40e-23029a4019cd', 'INSERT', '{"uuid": "871fd02d-def7-4c83-b40e-23029a4019cd", "roletype": "ADMIN", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd86f4fc3-58a6-4464-8836-4ce8b34f25c9', 'INSERT', '{"op": "UPDATE", "uuid": "d86f4fc3-58a6-4464-8836-4ce8b34f25c9", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '600971dd-5188-43de-b278-03af494ee111', 'INSERT', '{"uuid": "600971dd-5188-43de-b278-03af494ee111", "assumed": true, "ascendantuuid": "871fd02d-def7-4c83-b40e-23029a4019cd", "descendantuuid": "d86f4fc3-58a6-4464-8836-4ce8b34f25c9", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2c45a296-31e4-40fd-ad10-dda3a8269d35', 'INSERT', '{"uuid": "2c45a296-31e4-40fd-ad10-dda3a8269d35", "assumed": true, "ascendantuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "descendantuuid": "871fd02d-def7-4c83-b40e-23029a4019cd", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ae26c1c9-ca79-4a83-a050-0eaab121ce3e', 'INSERT', '{"uuid": "ae26c1c9-ca79-4a83-a050-0eaab121ce3e", "roletype": "AGENT", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dd7c5212-9734-48af-9396-9f4ee835843e', 'INSERT', '{"uuid": "dd7c5212-9734-48af-9396-9f4ee835843e", "assumed": true, "ascendantuuid": "871fd02d-def7-4c83-b40e-23029a4019cd", "descendantuuid": "ae26c1c9-ca79-4a83-a050-0eaab121ce3e", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '11542ad4-cd41-4d26-b778-a25b29175f7b', 'INSERT', '{"uuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "roletype": "TENANT", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'e6d44cf8-f6fa-4138-8410-982613c62c49', 'INSERT', '{"op": "SELECT", "uuid": "e6d44cf8-f6fa-4138-8410-982613c62c49", "objectuuid": "f4219fae-353d-4324-90ca-9f313a8c1c17", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bb4891cd-9c41-4275-bafc-a69557c3e3a7', 'INSERT', '{"uuid": "bb4891cd-9c41-4275-bafc-a69557c3e3a7", "assumed": true, "ascendantuuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "descendantuuid": "e6d44cf8-f6fa-4138-8410-982613c62c49", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '419450e7-127e-4866-b520-e79537284e7c', 'INSERT', '{"uuid": "419450e7-127e-4866-b520-e79537284e7c", "assumed": true, "ascendantuuid": "dfeb77e8-087e-423f-b4b5-8e8111a8b83e", "descendantuuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5ecdbd09-d56b-43c4-96cd-3743963d23d4', 'INSERT', '{"uuid": "5ecdbd09-d56b-43c4-96cd-3743963d23d4", "assumed": true, "ascendantuuid": "ae26c1c9-ca79-4a83-a050-0eaab121ce3e", "descendantuuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '289556ad-fea2-4e99-a222-7ab08c4f85dc', 'INSERT', '{"uuid": "289556ad-fea2-4e99-a222-7ab08c4f85dc", "assumed": true, "ascendantuuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "descendantuuid": "38aa2ac2-71e5-4805-94ae-61361288f235", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd07700f1-0709-4a9d-9f14-4f47e7d7b749', 'INSERT', '{"uuid": "d07700f1-0709-4a9d-9f14-4f47e7d7b749", "assumed": true, "ascendantuuid": "11542ad4-cd41-4d26-b778-a25b29175f7b", "descendantuuid": "8806c446-5551-4059-ba53-850a2d147c7c", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '346eefc8-8d2a-4b67-8f22-c6a0afea94e4', 'INSERT', '{"uuid": "346eefc8-8d2a-4b67-8f22-c6a0afea94e4", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "ae26c1c9-ca79-4a83-a050-0eaab121ce3e", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'be3bb7a6-7828-4047-a180-79fc7a7277b0', 'INSERT', '{"uuid": "be3bb7a6-7828-4047-a180-79fc7a7277b0", "assumed": true, "ascendantuuid": "b9d1cb3c-79f0-4640-b951-ad41f79d7b95", "descendantuuid": "1b1da9f7-1fb1-4b94-94d7-57275b028d54", "grantedbyroleuuid": null, "grantedbytriggerof": "f4219fae-353d-4324-90ca-9f313a8c1c17"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "f4219fae-353d-4324-90ca-9f313a8c1c17", "version": 0, "anchoruuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "holderuuid": "137fb47a-07d4-42cc-b2ef-8e371041cf41", "contactuuid": "691db509-b67e-46ec-a859-c4cb05fbbd70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'INSERT', '{"uuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c", "serialid": 191, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', 'INSERT', '{"uuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "roletype": "OWNER", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '37c59916-a966-4dca-a1e3-0cffb78ad141', 'INSERT', '{"op": "DELETE", "uuid": "37c59916-a966-4dca-a1e3-0cffb78ad141", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0df4ebf7-d987-4f0b-9bdb-3dcc8d762053', 'INSERT', '{"uuid": "0df4ebf7-d987-4f0b-9bdb-3dcc8d762053", "assumed": true, "ascendantuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "descendantuuid": "37c59916-a966-4dca-a1e3-0cffb78ad141", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'aaca1433-4934-4751-8f67-71b7b61ba489', 'INSERT', '{"uuid": "aaca1433-4934-4751-8f67-71b7b61ba489", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a77c71d4-6631-4b14-aa50-50b0f9e79363', 'INSERT', '{"uuid": "a77c71d4-6631-4b14-aa50-50b0f9e79363", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "grantedbyroleuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '08963816-c027-42e1-80a8-f55dcd6a02aa', 'INSERT', '{"uuid": "08963816-c027-42e1-80a8-f55dcd6a02aa", "roletype": "ADMIN", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b546d5b0-59f6-44af-a54d-d8e3097a3640', 'INSERT', '{"op": "UPDATE", "uuid": "b546d5b0-59f6-44af-a54d-d8e3097a3640", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6147de7f-5796-4b80-b622-f5c3b70e01d0', 'INSERT', '{"uuid": "6147de7f-5796-4b80-b622-f5c3b70e01d0", "assumed": true, "ascendantuuid": "08963816-c027-42e1-80a8-f55dcd6a02aa", "descendantuuid": "b546d5b0-59f6-44af-a54d-d8e3097a3640", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'af96206c-1ae8-4350-96cb-71ed23f0baa9', 'INSERT', '{"uuid": "af96206c-1ae8-4350-96cb-71ed23f0baa9", "assumed": true, "ascendantuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "descendantuuid": "08963816-c027-42e1-80a8-f55dcd6a02aa", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5e3ac214-0f11-4af9-b637-50ff3f841b76', 'INSERT', '{"uuid": "5e3ac214-0f11-4af9-b637-50ff3f841b76", "roletype": "AGENT", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a60ac64a-4af6-48bc-a1aa-69a24ad48d3a', 'INSERT', '{"uuid": "a60ac64a-4af6-48bc-a1aa-69a24ad48d3a", "assumed": true, "ascendantuuid": "08963816-c027-42e1-80a8-f55dcd6a02aa", "descendantuuid": "5e3ac214-0f11-4af9-b637-50ff3f841b76", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '85d1d5a3-30a5-4bab-9670-878abc6bfe54', 'INSERT', '{"uuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "roletype": "TENANT", "objectuuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e38c4ccc-e949-4c40-8379-e3b601107c9b', 'INSERT', '{"uuid": "e38c4ccc-e949-4c40-8379-e3b601107c9b", "assumed": true, "ascendantuuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "descendantuuid": "c2ccc14e-f11b-497f-95db-5397aa38012b", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '462cc639-2ca8-40a8-a575-a49a045f3596', 'INSERT', '{"uuid": "462cc639-2ca8-40a8-a575-a49a045f3596", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fe8eaf38-c3c2-4221-8cdd-207155392d6c', 'INSERT', '{"uuid": "fe8eaf38-c3c2-4221-8cdd-207155392d6c", "assumed": true, "ascendantuuid": "5e3ac214-0f11-4af9-b637-50ff3f841b76", "descendantuuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7df76f5f-b7cb-40eb-a86f-f83945ee8cd9', 'INSERT', '{"uuid": "7df76f5f-b7cb-40eb-a86f-f83945ee8cd9", "assumed": true, "ascendantuuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f655df71-ecd5-4f06-a268-f9d1b99454ce', 'INSERT', '{"uuid": "f655df71-ecd5-4f06-a268-f9d1b99454ce", "assumed": true, "ascendantuuid": "85d1d5a3-30a5-4bab-9670-878abc6bfe54", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '63c62f56-4b72-44c3-99ce-ddb029ab1283', 'INSERT', '{"uuid": "63c62f56-4b72-44c3-99ce-ddb029ab1283", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "5e3ac214-0f11-4af9-b637-50ff3f841b76", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fe2e422c-ffa6-4250-8470-2a3c97f57d08', 'INSERT', '{"uuid": "fe2e422c-ffa6-4250-8470-2a3c97f57d08", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "dc7aa55a-ab16-47eb-a29b-79e64328fa31", "grantedbyroleuuid": null, "grantedbytriggerof": "219baf3d-0bb7-4252-b92f-4cfa97cb633c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "219baf3d-0bb7-4252-b92f-4cfa97cb633c", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'INSERT', '{"uuid": "ed0fb977-6512-4452-8505-378fcbbd5060", "serialid": 192, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', 'INSERT', '{"uuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "roletype": "OWNER", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '36490d00-f5d4-4722-b285-9cac45e7dd5c', 'INSERT', '{"op": "DELETE", "uuid": "36490d00-f5d4-4722-b285-9cac45e7dd5c", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '65414b52-aa15-4162-b018-eb4fd128283c', 'INSERT', '{"uuid": "65414b52-aa15-4162-b018-eb4fd128283c", "assumed": true, "ascendantuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "descendantuuid": "36490d00-f5d4-4722-b285-9cac45e7dd5c", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '45c35d7f-f897-44dc-af54-127ab4bde8da', 'INSERT', '{"uuid": "45c35d7f-f897-44dc-af54-127ab4bde8da", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0d888bad-9424-4fcc-9d80-8ff53f437df0', 'INSERT', '{"uuid": "0d888bad-9424-4fcc-9d80-8ff53f437df0", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "grantedbyroleuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ba13ab33-99ee-48ef-b205-73e9adea9651', 'INSERT', '{"uuid": "ba13ab33-99ee-48ef-b205-73e9adea9651", "roletype": "ADMIN", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '891fe7ab-2113-4f20-ab6d-3d81cca0941a', 'INSERT', '{"op": "UPDATE", "uuid": "891fe7ab-2113-4f20-ab6d-3d81cca0941a", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bd19286b-a328-4655-b49e-ebd8ae24e3ff', 'INSERT', '{"uuid": "bd19286b-a328-4655-b49e-ebd8ae24e3ff", "assumed": true, "ascendantuuid": "ba13ab33-99ee-48ef-b205-73e9adea9651", "descendantuuid": "891fe7ab-2113-4f20-ab6d-3d81cca0941a", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '31150614-93a5-4100-8c51-85a86e2f6de0', 'INSERT', '{"uuid": "31150614-93a5-4100-8c51-85a86e2f6de0", "assumed": true, "ascendantuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "descendantuuid": "ba13ab33-99ee-48ef-b205-73e9adea9651", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '918840d4-592e-43eb-afa5-ad6ea37043a3', 'INSERT', '{"uuid": "918840d4-592e-43eb-afa5-ad6ea37043a3", "roletype": "AGENT", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f50ccdba-1e3f-4c32-a7d0-064405737cb5', 'INSERT', '{"uuid": "f50ccdba-1e3f-4c32-a7d0-064405737cb5", "assumed": true, "ascendantuuid": "ba13ab33-99ee-48ef-b205-73e9adea9651", "descendantuuid": "918840d4-592e-43eb-afa5-ad6ea37043a3", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', 'INSERT', '{"uuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "roletype": "TENANT", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '10ff5603-7bfa-490e-a468-6d231db02ac6', 'INSERT', '{"op": "SELECT", "uuid": "10ff5603-7bfa-490e-a468-6d231db02ac6", "objectuuid": "ed0fb977-6512-4452-8505-378fcbbd5060", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '68007eb2-edad-4729-a1ac-87d36a60fab1', 'INSERT', '{"uuid": "68007eb2-edad-4729-a1ac-87d36a60fab1", "assumed": true, "ascendantuuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "descendantuuid": "10ff5603-7bfa-490e-a468-6d231db02ac6", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7c1e03f8-4df9-4ada-80fe-88264c146a13', 'INSERT', '{"uuid": "7c1e03f8-4df9-4ada-80fe-88264c146a13", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0da1294a-124d-4d64-868f-fa10e2bb50c6', 'INSERT', '{"uuid": "0da1294a-124d-4d64-868f-fa10e2bb50c6", "assumed": true, "ascendantuuid": "918840d4-592e-43eb-afa5-ad6ea37043a3", "descendantuuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7266aa8d-0a18-4c1d-a2db-460e22082376', 'INSERT', '{"uuid": "7266aa8d-0a18-4c1d-a2db-460e22082376", "assumed": true, "ascendantuuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eff379d8-ea07-45d8-b1b9-939d7bd504cf', 'INSERT', '{"uuid": "eff379d8-ea07-45d8-b1b9-939d7bd504cf", "assumed": true, "ascendantuuid": "d48cd569-cc1f-4f27-bb9a-35154e5fc0b2", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ba997a4e-e15a-4b7e-ab8d-8d18b7d77784', 'INSERT', '{"uuid": "ba997a4e-e15a-4b7e-ab8d-8d18b7d77784", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "918840d4-592e-43eb-afa5-ad6ea37043a3", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '44ee4667-fce9-4a32-94bd-c303ee429880', 'INSERT', '{"uuid": "44ee4667-fce9-4a32-94bd-c303ee429880", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6", "grantedbyroleuuid": null, "grantedbytriggerof": "ed0fb977-6512-4452-8505-378fcbbd5060"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "ed0fb977-6512-4452-8505-378fcbbd5060", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'INSERT', '{"uuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af", "serialid": 193, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1ec552f6-834f-4b68-ae60-6d39e6d887e7', 'INSERT', '{"uuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "roletype": "OWNER", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd53e3095-38c0-4be0-b7c4-17d6c505c370', 'INSERT', '{"op": "DELETE", "uuid": "d53e3095-38c0-4be0-b7c4-17d6c505c370", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '23114396-605b-4635-bfec-f5d19f9f2d61', 'INSERT', '{"uuid": "23114396-605b-4635-bfec-f5d19f9f2d61", "assumed": true, "ascendantuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "descendantuuid": "d53e3095-38c0-4be0-b7c4-17d6c505c370", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6028e332-1d2e-4c7d-953b-8bbb2dcb3876', 'INSERT', '{"uuid": "6028e332-1d2e-4c7d-953b-8bbb2dcb3876", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '65248239-5a3e-4a20-bf6b-41c18985d3fb', 'INSERT', '{"uuid": "65248239-5a3e-4a20-bf6b-41c18985d3fb", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "grantedbyroleuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '82982647-714a-4203-b8f0-3d9fa5d22b4e', 'INSERT', '{"uuid": "82982647-714a-4203-b8f0-3d9fa5d22b4e", "roletype": "ADMIN", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '39a2c817-387a-4a54-a751-6dfc0d781f8c', 'INSERT', '{"op": "UPDATE", "uuid": "39a2c817-387a-4a54-a751-6dfc0d781f8c", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '78166a30-6c96-48c2-b96d-1b0b9c1bd6ec', 'INSERT', '{"uuid": "78166a30-6c96-48c2-b96d-1b0b9c1bd6ec", "assumed": true, "ascendantuuid": "82982647-714a-4203-b8f0-3d9fa5d22b4e", "descendantuuid": "39a2c817-387a-4a54-a751-6dfc0d781f8c", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '845c483c-fadb-4d86-bc40-8f26ee15e3e2', 'INSERT', '{"uuid": "845c483c-fadb-4d86-bc40-8f26ee15e3e2", "assumed": true, "ascendantuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "descendantuuid": "82982647-714a-4203-b8f0-3d9fa5d22b4e", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '76d74da3-9fbd-43bb-9083-093a9254af2b', 'INSERT', '{"uuid": "76d74da3-9fbd-43bb-9083-093a9254af2b", "roletype": "AGENT", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fa56ac1c-a232-4e0b-98bb-82d3ecf4bb97', 'INSERT', '{"uuid": "fa56ac1c-a232-4e0b-98bb-82d3ecf4bb97", "assumed": true, "ascendantuuid": "82982647-714a-4203-b8f0-3d9fa5d22b4e", "descendantuuid": "76d74da3-9fbd-43bb-9083-093a9254af2b", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', 'INSERT', '{"uuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "roletype": "TENANT", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '09cb2efd-3998-4b84-a315-788b6375ffa6', 'INSERT', '{"op": "SELECT", "uuid": "09cb2efd-3998-4b84-a315-788b6375ffa6", "objectuuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '860c5bcf-0127-42e9-9057-86f63e8fb6d5', 'INSERT', '{"uuid": "860c5bcf-0127-42e9-9057-86f63e8fb6d5", "assumed": true, "ascendantuuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "descendantuuid": "09cb2efd-3998-4b84-a315-788b6375ffa6", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'be6f5601-acce-4422-abd5-2dff417f828f', 'INSERT', '{"uuid": "be6f5601-acce-4422-abd5-2dff417f828f", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '04497d4a-90e2-40cd-ae75-bce64fea3d95', 'INSERT', '{"uuid": "04497d4a-90e2-40cd-ae75-bce64fea3d95", "assumed": true, "ascendantuuid": "76d74da3-9fbd-43bb-9083-093a9254af2b", "descendantuuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1aa22445-4c2c-49e7-961c-d7ed77dca1c7', 'INSERT', '{"uuid": "1aa22445-4c2c-49e7-961c-d7ed77dca1c7", "assumed": true, "ascendantuuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'af0093ed-2cdb-4c57-8b68-5f1871f83f90', 'INSERT', '{"uuid": "af0093ed-2cdb-4c57-8b68-5f1871f83f90", "assumed": true, "ascendantuuid": "0303b9f3-8860-4ebc-b808-d4d2da18f5fb", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '93b39756-48a6-4a58-b196-58b68de6bc32', 'INSERT', '{"uuid": "93b39756-48a6-4a58-b196-58b68de6bc32", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "76d74da3-9fbd-43bb-9083-093a9254af2b", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7c418ce5-d2e7-4609-a25c-854a77422da5', 'INSERT', '{"uuid": "7c418ce5-d2e7-4609-a25c-854a77422da5", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "1ec552f6-834f-4b68-ae60-6d39e6d887e7", "grantedbyroleuuid": null, "grantedbytriggerof": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "a6bb6f3a-eb45-44ff-918b-7a94f9f770af", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'INSERT', '{"uuid": "af82432c-09a8-42a7-9525-e9095025d4dd", "serialid": 194, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0', 'INSERT', '{"op": "DELETE", "uuid": "5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5fccc27f-37d4-4c9f-9f50-5c431eeb5dd6', 'INSERT', '{"uuid": "5fccc27f-37d4-4c9f-9f50-5c431eeb5dd6", "assumed": true, "ascendantuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "descendantuuid": "5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5ffd40e9-d22a-453d-b88d-4c222412afc0', 'INSERT', '{"uuid": "5ffd40e9-d22a-453d-b88d-4c222412afc0", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1173ee00-62e1-423f-96bc-10a009e581b1', 'INSERT', '{"uuid": "1173ee00-62e1-423f-96bc-10a009e581b1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "grantedbyroleuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b05450fd-5e5b-4aa1-b334-0b886ced9492', 'INSERT', '{"uuid": "b05450fd-5e5b-4aa1-b334-0b886ced9492", "roletype": "ADMIN", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '708ff719-70c9-48f5-8664-dbf49352d261', 'INSERT', '{"op": "UPDATE", "uuid": "708ff719-70c9-48f5-8664-dbf49352d261", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a4973160-2485-4357-b9d4-04533f62326d', 'INSERT', '{"uuid": "a4973160-2485-4357-b9d4-04533f62326d", "assumed": true, "ascendantuuid": "b05450fd-5e5b-4aa1-b334-0b886ced9492", "descendantuuid": "708ff719-70c9-48f5-8664-dbf49352d261", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3142f58d-1600-42d5-8c4d-002f325423cf', 'INSERT', '{"uuid": "3142f58d-1600-42d5-8c4d-002f325423cf", "assumed": true, "ascendantuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "descendantuuid": "b05450fd-5e5b-4aa1-b334-0b886ced9492", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '2710f7f0-f352-4e71-a527-38076d6966ce', 'INSERT', '{"uuid": "2710f7f0-f352-4e71-a527-38076d6966ce", "roletype": "AGENT", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eec039fc-3cdc-48b0-8d80-371f5ab98ca8', 'INSERT', '{"uuid": "eec039fc-3cdc-48b0-8d80-371f5ab98ca8", "assumed": true, "ascendantuuid": "b05450fd-5e5b-4aa1-b334-0b886ced9492", "descendantuuid": "2710f7f0-f352-4e71-a527-38076d6966ce", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b012ee61-8155-4fa3-bee0-9a0918452bae', 'INSERT', '{"uuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "roletype": "TENANT", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7fd8da11-6a47-4ca3-8bf3-9713a6ac0305', 'INSERT', '{"op": "SELECT", "uuid": "7fd8da11-6a47-4ca3-8bf3-9713a6ac0305", "objectuuid": "af82432c-09a8-42a7-9525-e9095025d4dd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '873674d6-8281-4362-9a73-630c8e00c62c', 'INSERT', '{"uuid": "873674d6-8281-4362-9a73-630c8e00c62c", "assumed": true, "ascendantuuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "descendantuuid": "7fd8da11-6a47-4ca3-8bf3-9713a6ac0305", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '86e1fa7a-fcc5-4cb1-835b-62995092ec69', 'INSERT', '{"uuid": "86e1fa7a-fcc5-4cb1-835b-62995092ec69", "assumed": true, "ascendantuuid": "a6ff0898-04e1-49b7-8621-b42846df06e1", "descendantuuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1dca2eff-0e1e-4941-a54b-18ba818edaa4', 'INSERT', '{"uuid": "1dca2eff-0e1e-4941-a54b-18ba818edaa4", "assumed": true, "ascendantuuid": "2710f7f0-f352-4e71-a527-38076d6966ce", "descendantuuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '42131f0b-59fd-4698-b74a-aa1817515792', 'INSERT', '{"uuid": "42131f0b-59fd-4698-b74a-aa1817515792", "assumed": true, "ascendantuuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "descendantuuid": "5c9372e0-cb21-4ae7-a461-df086ad19426", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '95481de2-ae7a-4657-b880-d0ee44b27bfc', 'INSERT', '{"uuid": "95481de2-ae7a-4657-b880-d0ee44b27bfc", "assumed": true, "ascendantuuid": "b012ee61-8155-4fa3-bee0-9a0918452bae", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eabbd51a-4686-4d65-96e1-958c313ecf9b', 'INSERT', '{"uuid": "eabbd51a-4686-4d65-96e1-958c313ecf9b", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "2710f7f0-f352-4e71-a527-38076d6966ce", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '117b3c8e-3a79-4ad1-adca-c126ba5ce98a', 'INSERT', '{"uuid": "117b3c8e-3a79-4ad1-adca-c126ba5ce98a", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "c17186dc-564d-4f82-914b-202ad8bc9941", "grantedbyroleuuid": null, "grantedbytriggerof": "af82432c-09a8-42a7-9525-e9095025d4dd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "af82432c-09a8-42a7-9525-e9095025d4dd", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "contactuuid": "b4a3b50d-1c1f-4052-b584-0b7f2aec1a42"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'INSERT', '{"uuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0", "serialid": 195, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', 'INSERT', '{"uuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "roletype": "OWNER", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '63ab27e2-5a5b-483e-8346-0024da814b06', 'INSERT', '{"op": "DELETE", "uuid": "63ab27e2-5a5b-483e-8346-0024da814b06", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '38d1b657-379e-4a9a-8527-c30fa1d7c78b', 'INSERT', '{"uuid": "38d1b657-379e-4a9a-8527-c30fa1d7c78b", "assumed": true, "ascendantuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "descendantuuid": "63ab27e2-5a5b-483e-8346-0024da814b06", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '26b6b9d0-a985-4b9d-9b8e-e063ba480714', 'INSERT', '{"uuid": "26b6b9d0-a985-4b9d-9b8e-e063ba480714", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fb7994b8-3bb2-4381-9b28-5c5fffcf5500', 'INSERT', '{"uuid": "fb7994b8-3bb2-4381-9b28-5c5fffcf5500", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "grantedbyroleuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6c83af72-d5d7-4076-b7b6-33ca23c80ff8', 'INSERT', '{"uuid": "6c83af72-d5d7-4076-b7b6-33ca23c80ff8", "roletype": "ADMIN", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '14fd3310-5109-472b-9eb8-9b3aac0cc5c8', 'INSERT', '{"op": "UPDATE", "uuid": "14fd3310-5109-472b-9eb8-9b3aac0cc5c8", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '25ef6910-d687-4255-936f-9738868b5bdb', 'INSERT', '{"uuid": "25ef6910-d687-4255-936f-9738868b5bdb", "assumed": true, "ascendantuuid": "6c83af72-d5d7-4076-b7b6-33ca23c80ff8", "descendantuuid": "14fd3310-5109-472b-9eb8-9b3aac0cc5c8", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ed7f532c-3caa-49ef-825b-e36c90d490f9', 'INSERT', '{"uuid": "ed7f532c-3caa-49ef-825b-e36c90d490f9", "assumed": true, "ascendantuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "descendantuuid": "6c83af72-d5d7-4076-b7b6-33ca23c80ff8", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8833f9cb-d000-41ef-920f-6e6ba586c65d', 'INSERT', '{"uuid": "8833f9cb-d000-41ef-920f-6e6ba586c65d", "roletype": "AGENT", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6e1a316c-be94-44a8-90b9-1e9bf3e03516', 'INSERT', '{"uuid": "6e1a316c-be94-44a8-90b9-1e9bf3e03516", "assumed": true, "ascendantuuid": "6c83af72-d5d7-4076-b7b6-33ca23c80ff8", "descendantuuid": "8833f9cb-d000-41ef-920f-6e6ba586c65d", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '49e8c569-1fe0-4215-8cc3-698054ff896f', 'INSERT', '{"uuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "roletype": "TENANT", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a351e412-5f16-4c87-b09f-6c0290e20b7c', 'INSERT', '{"op": "SELECT", "uuid": "a351e412-5f16-4c87-b09f-6c0290e20b7c", "objectuuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3918e326-9f99-489b-8c87-5d3d95c8909b', 'INSERT', '{"uuid": "3918e326-9f99-489b-8c87-5d3d95c8909b", "assumed": true, "ascendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "descendantuuid": "a351e412-5f16-4c87-b09f-6c0290e20b7c", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '264c36d3-405f-4eef-98f0-cff6a9f50783', 'INSERT', '{"uuid": "264c36d3-405f-4eef-98f0-cff6a9f50783", "assumed": true, "ascendantuuid": "939dafca-fe72-499d-979d-6fe0288e6807", "descendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cc1f086f-9232-4b67-a4d6-b270c1496cc7', 'INSERT', '{"uuid": "cc1f086f-9232-4b67-a4d6-b270c1496cc7", "assumed": true, "ascendantuuid": "8833f9cb-d000-41ef-920f-6e6ba586c65d", "descendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'de1c6bc8-f470-4c0d-b47f-353980576e29', 'INSERT', '{"uuid": "de1c6bc8-f470-4c0d-b47f-353980576e29", "assumed": true, "ascendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "descendantuuid": "b91f7dd8-b4a4-4f9b-9192-300f8e982c6d", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c48e3a13-76e7-4ee6-acbd-6d88da4b0392', 'INSERT', '{"uuid": "c48e3a13-76e7-4ee6-acbd-6d88da4b0392", "assumed": true, "ascendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '860cf6b4-8697-4a7f-9c59-d65c3aa73067', 'INSERT', '{"uuid": "860cf6b4-8697-4a7f-9c59-d65c3aa73067", "assumed": true, "ascendantuuid": "49e8c569-1fe0-4215-8cc3-698054ff896f", "descendantuuid": "236b88d3-09bc-4750-9219-61529f7740af", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '927cd8d9-8a84-4b66-8a84-49ed4a4d93ca', 'INSERT', '{"uuid": "927cd8d9-8a84-4b66-8a84-49ed4a4d93ca", "assumed": true, "ascendantuuid": "f87398bc-225a-4eee-bea8-7983be6ae529", "descendantuuid": "8833f9cb-d000-41ef-920f-6e6ba586c65d", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5c324003-be19-4195-bb55-12ad791cfccd', 'INSERT', '{"uuid": "5c324003-be19-4195-bb55-12ad791cfccd", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "18fb2aed-c5ba-41ea-ac09-4ec940ff6eff", "grantedbyroleuuid": null, "grantedbytriggerof": "f691585e-eb5e-45bd-8d8a-8187094ed0a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'INSERT', '{"mark": null, "type": "EX_PARTNER", "uuid": "f691585e-eb5e-45bd-8d8a-8187094ed0a0", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "417b9a15-5e1b-4d15-b1b3-79dc19b49c50", "contactuuid": "7a334268-7d11-4765-8fa9-17e2c36cca7a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'INSERT', '{"uuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488", "serialid": 196, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0e190f5b-0333-4f70-aabc-71d2e810a712', 'INSERT', '{"uuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "roletype": "OWNER", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '0fc0933c-0397-4b0d-ae81-18c41d3fe082', 'INSERT', '{"op": "DELETE", "uuid": "0fc0933c-0397-4b0d-ae81-18c41d3fe082", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f04b5170-d247-4edb-bd83-4ce3c0199b3d', 'INSERT', '{"uuid": "f04b5170-d247-4edb-bd83-4ce3c0199b3d", "assumed": true, "ascendantuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "descendantuuid": "0fc0933c-0397-4b0d-ae81-18c41d3fe082", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '014c9f70-9876-4685-b99a-d88338f16dc7', 'INSERT', '{"uuid": "014c9f70-9876-4685-b99a-d88338f16dc7", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0f6d273a-ed72-414a-ba94-08f1cc96324c', 'INSERT', '{"uuid": "0f6d273a-ed72-414a-ba94-08f1cc96324c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "grantedbyroleuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8eb1d02d-d44f-42a8-bd93-a05174ce15e0', 'INSERT', '{"uuid": "8eb1d02d-d44f-42a8-bd93-a05174ce15e0", "roletype": "ADMIN", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '133a7879-3f1c-4daf-8b16-9160b4477288', 'INSERT', '{"op": "UPDATE", "uuid": "133a7879-3f1c-4daf-8b16-9160b4477288", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '84c8d1c7-d62d-4bc8-a34d-aa9872a20ed2', 'INSERT', '{"uuid": "84c8d1c7-d62d-4bc8-a34d-aa9872a20ed2", "assumed": true, "ascendantuuid": "8eb1d02d-d44f-42a8-bd93-a05174ce15e0", "descendantuuid": "133a7879-3f1c-4daf-8b16-9160b4477288", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3a7de6b1-c26d-4a9a-9b98-27d65c1a4973', 'INSERT', '{"uuid": "3a7de6b1-c26d-4a9a-9b98-27d65c1a4973", "assumed": true, "ascendantuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "descendantuuid": "8eb1d02d-d44f-42a8-bd93-a05174ce15e0", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '77ef9867-e939-4d36-85e1-4a573c4a9b55', 'INSERT', '{"uuid": "77ef9867-e939-4d36-85e1-4a573c4a9b55", "roletype": "AGENT", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e07c7714-cc7d-47bc-b867-8f17d5b3150b', 'INSERT', '{"uuid": "e07c7714-cc7d-47bc-b867-8f17d5b3150b", "assumed": true, "ascendantuuid": "8eb1d02d-d44f-42a8-bd93-a05174ce15e0", "descendantuuid": "77ef9867-e939-4d36-85e1-4a573c4a9b55", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', 'INSERT', '{"uuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "roletype": "TENANT", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd2ef2562-a654-4af3-b1eb-6e8bcd35c03e', 'INSERT', '{"op": "SELECT", "uuid": "d2ef2562-a654-4af3-b1eb-6e8bcd35c03e", "objectuuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '04fbc978-15b2-4609-b13e-3a307803ca2d', 'INSERT', '{"uuid": "04fbc978-15b2-4609-b13e-3a307803ca2d", "assumed": true, "ascendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "descendantuuid": "d2ef2562-a654-4af3-b1eb-6e8bcd35c03e", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fc6074ef-ac17-4e01-a504-81232802ed49', 'INSERT', '{"uuid": "fc6074ef-ac17-4e01-a504-81232802ed49", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c303b3da-aa0d-4b5a-a6ef-437aeaab8698', 'INSERT', '{"uuid": "c303b3da-aa0d-4b5a-a6ef-437aeaab8698", "assumed": true, "ascendantuuid": "77ef9867-e939-4d36-85e1-4a573c4a9b55", "descendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '922f86ad-53a1-4643-a528-a0707127b2d4', 'INSERT', '{"uuid": "922f86ad-53a1-4643-a528-a0707127b2d4", "assumed": true, "ascendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "descendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eb764aac-d784-4ebc-874c-c6c5285137d8', 'INSERT', '{"uuid": "eb764aac-d784-4ebc-874c-c6c5285137d8", "assumed": true, "ascendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '064926b6-0149-4518-bbe9-b201997cc90f', 'INSERT', '{"uuid": "064926b6-0149-4518-bbe9-b201997cc90f", "assumed": true, "ascendantuuid": "cedad28c-ea54-48a9-b2f8-e16a29ec56a1", "descendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b3132dbc-b482-486b-b02e-a8ad200cbdd2', 'INSERT', '{"uuid": "b3132dbc-b482-486b-b02e-a8ad200cbdd2", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "77ef9867-e939-4d36-85e1-4a573c4a9b55", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '38c323d4-bd10-48f2-86a9-ca9246ee0cc8', 'INSERT', '{"uuid": "38c323d4-bd10-48f2-86a9-ca9246ee0cc8", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "0e190f5b-0333-4f70-aabc-71d2e810a712", "grantedbyroleuuid": null, "grantedbytriggerof": "65879210-cf7c-4e5b-a2d1-742a42fcb488"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "65879210-cf7c-4e5b-a2d1-742a42fcb488", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "contactuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '97e5ed67-e81c-4c12-b354-45db951901c0', 'INSERT', '{"uuid": "97e5ed67-e81c-4c12-b354-45db951901c0", "serialid": 197, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7377295c-c6d9-4826-b712-ea5df5c3d8d1', 'INSERT', '{"uuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "roletype": "OWNER", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5ae15451-1a59-45da-b59d-02884a418fc1', 'INSERT', '{"op": "DELETE", "uuid": "5ae15451-1a59-45da-b59d-02884a418fc1", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'be632038-c8e0-441e-a7cd-80f1fab0f7a5', 'INSERT', '{"uuid": "be632038-c8e0-441e-a7cd-80f1fab0f7a5", "assumed": true, "ascendantuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "descendantuuid": "5ae15451-1a59-45da-b59d-02884a418fc1", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e513ed65-b37e-42c2-8d1b-d1eb96d5b988', 'INSERT', '{"uuid": "e513ed65-b37e-42c2-8d1b-d1eb96d5b988", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '18472c38-51a3-4360-b694-c118c3d75515', 'INSERT', '{"uuid": "18472c38-51a3-4360-b694-c118c3d75515", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "grantedbyroleuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '638a0990-bb30-434c-80b5-65f3e33732f6', 'INSERT', '{"uuid": "638a0990-bb30-434c-80b5-65f3e33732f6", "roletype": "ADMIN", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c0844f33-c3b3-477f-9321-4b342474802a', 'INSERT', '{"op": "UPDATE", "uuid": "c0844f33-c3b3-477f-9321-4b342474802a", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1f9ef4b2-12f7-439d-b0a4-d67d1f0ef28e', 'INSERT', '{"uuid": "1f9ef4b2-12f7-439d-b0a4-d67d1f0ef28e", "assumed": true, "ascendantuuid": "638a0990-bb30-434c-80b5-65f3e33732f6", "descendantuuid": "c0844f33-c3b3-477f-9321-4b342474802a", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '010f9b91-c272-49ee-af70-30a378c35bd8', 'INSERT', '{"uuid": "010f9b91-c272-49ee-af70-30a378c35bd8", "assumed": true, "ascendantuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "descendantuuid": "638a0990-bb30-434c-80b5-65f3e33732f6", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0de0bb80-9691-4f70-9bdb-53a862399dc1', 'INSERT', '{"uuid": "0de0bb80-9691-4f70-9bdb-53a862399dc1", "roletype": "AGENT", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4d64baff-ceff-4ad1-9abc-ddcc92cf9c5e', 'INSERT', '{"uuid": "4d64baff-ceff-4ad1-9abc-ddcc92cf9c5e", "assumed": true, "ascendantuuid": "638a0990-bb30-434c-80b5-65f3e33732f6", "descendantuuid": "0de0bb80-9691-4f70-9bdb-53a862399dc1", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', 'INSERT', '{"uuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "roletype": "TENANT", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c8d78c39-6d4d-48a7-96f8-80fdc50b2059', 'INSERT', '{"op": "SELECT", "uuid": "c8d78c39-6d4d-48a7-96f8-80fdc50b2059", "objectuuid": "97e5ed67-e81c-4c12-b354-45db951901c0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ee7d3e9e-1c6d-4877-8d1f-3c26bf7709d7', 'INSERT', '{"uuid": "ee7d3e9e-1c6d-4877-8d1f-3c26bf7709d7", "assumed": true, "ascendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "descendantuuid": "c8d78c39-6d4d-48a7-96f8-80fdc50b2059", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2fa47a46-e76f-441b-a411-cbba090ee3f1', 'INSERT', '{"uuid": "2fa47a46-e76f-441b-a411-cbba090ee3f1", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '38c385ef-16c5-471b-b065-dff65edf12ea', 'INSERT', '{"uuid": "38c385ef-16c5-471b-b065-dff65edf12ea", "assumed": true, "ascendantuuid": "0de0bb80-9691-4f70-9bdb-53a862399dc1", "descendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '274f5f7b-4e82-4e41-82ad-5ff7653d4209', 'INSERT', '{"uuid": "274f5f7b-4e82-4e41-82ad-5ff7653d4209", "assumed": true, "ascendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "descendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9f69e8b1-bc6d-4f52-996e-0d71cf466d34', 'INSERT', '{"uuid": "9f69e8b1-bc6d-4f52-996e-0d71cf466d34", "assumed": true, "ascendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9a96f7b8-8ddf-4868-a3d7-174813b2d180', 'INSERT', '{"uuid": "9a96f7b8-8ddf-4868-a3d7-174813b2d180", "assumed": true, "ascendantuuid": "701ea625-3ec6-4ee9-8fbb-fb95ab1137f7", "descendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '121f4ca4-da82-47ac-b2fb-96d63c8b897b', 'INSERT', '{"uuid": "121f4ca4-da82-47ac-b2fb-96d63c8b897b", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "0de0bb80-9691-4f70-9bdb-53a862399dc1", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9588e638-90a6-43c6-9a25-4a1293154772', 'INSERT', '{"uuid": "9588e638-90a6-43c6-9a25-4a1293154772", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "7377295c-c6d9-4826-b712-ea5df5c3d8d1", "grantedbyroleuuid": null, "grantedbytriggerof": "97e5ed67-e81c-4c12-b354-45db951901c0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '97e5ed67-e81c-4c12-b354-45db951901c0', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "97e5ed67-e81c-4c12-b354-45db951901c0", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "contactuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'INSERT', '{"uuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601", "serialid": 198, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '84802890-6128-4134-8ad7-667491cfcbf7', 'INSERT', '{"uuid": "84802890-6128-4134-8ad7-667491cfcbf7", "roletype": "OWNER", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '19932b77-d4fd-4664-a0c6-ff8fb707f697', 'INSERT', '{"op": "DELETE", "uuid": "19932b77-d4fd-4664-a0c6-ff8fb707f697", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a0896ff6-bd78-44d7-87c0-37f267aef94c', 'INSERT', '{"uuid": "a0896ff6-bd78-44d7-87c0-37f267aef94c", "assumed": true, "ascendantuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "descendantuuid": "19932b77-d4fd-4664-a0c6-ff8fb707f697", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6efe6567-1033-4081-ab3f-304926c7c1d3', 'INSERT', '{"uuid": "6efe6567-1033-4081-ab3f-304926c7c1d3", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7d0bd8b9-381a-4502-a4ee-2b91505447a6', 'INSERT', '{"uuid": "7d0bd8b9-381a-4502-a4ee-2b91505447a6", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "grantedbyroleuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '63eb26c8-3d39-45f7-b2ef-5038f301bddc', 'INSERT', '{"uuid": "63eb26c8-3d39-45f7-b2ef-5038f301bddc", "roletype": "ADMIN", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a71abf2a-ab11-4bdd-8591-6977673bdc32', 'INSERT', '{"op": "UPDATE", "uuid": "a71abf2a-ab11-4bdd-8591-6977673bdc32", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd0458ece-a35f-487c-aa0f-633de255dc6b', 'INSERT', '{"uuid": "d0458ece-a35f-487c-aa0f-633de255dc6b", "assumed": true, "ascendantuuid": "63eb26c8-3d39-45f7-b2ef-5038f301bddc", "descendantuuid": "a71abf2a-ab11-4bdd-8591-6977673bdc32", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '16ef5805-c3da-46ef-865b-14b723110a2a', 'INSERT', '{"uuid": "16ef5805-c3da-46ef-865b-14b723110a2a", "assumed": true, "ascendantuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "descendantuuid": "63eb26c8-3d39-45f7-b2ef-5038f301bddc", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'fadd73e5-eeca-4f5a-b07d-998d11eb411d', 'INSERT', '{"uuid": "fadd73e5-eeca-4f5a-b07d-998d11eb411d", "roletype": "AGENT", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0fd2ed3-afb3-4ea9-9f69-a572d7bb8425', 'INSERT', '{"uuid": "b0fd2ed3-afb3-4ea9-9f69-a572d7bb8425", "assumed": true, "ascendantuuid": "63eb26c8-3d39-45f7-b2ef-5038f301bddc", "descendantuuid": "fadd73e5-eeca-4f5a-b07d-998d11eb411d", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6dc07a2f-428b-4621-9f39-8679a5a5a780', 'INSERT', '{"uuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "roletype": "TENANT", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'e1cfb24e-d3c2-4279-b1b7-0e037766a0c3', 'INSERT', '{"op": "SELECT", "uuid": "e1cfb24e-d3c2-4279-b1b7-0e037766a0c3", "objectuuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '86dc0d91-08b4-47ae-b24e-b185c32deb05', 'INSERT', '{"uuid": "86dc0d91-08b4-47ae-b24e-b185c32deb05", "assumed": true, "ascendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "descendantuuid": "e1cfb24e-d3c2-4279-b1b7-0e037766a0c3", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e1e7a27b-2ca3-4ca6-938d-db8a130a56a4', 'INSERT', '{"uuid": "e1e7a27b-2ca3-4ca6-938d-db8a130a56a4", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '54e6fe3c-946f-4ffe-b571-1683b975b1b6', 'INSERT', '{"uuid": "54e6fe3c-946f-4ffe-b571-1683b975b1b6", "assumed": true, "ascendantuuid": "fadd73e5-eeca-4f5a-b07d-998d11eb411d", "descendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e1f74d3b-cd97-492b-baa2-8384d8cdfc97', 'INSERT', '{"uuid": "e1f74d3b-cd97-492b-baa2-8384d8cdfc97", "assumed": true, "ascendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "descendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3f31fd85-c31c-4258-8219-2ed6f7a38f29', 'INSERT', '{"uuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "roletype": "TENANT", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bb575fa2-0a38-404c-a280-bcc403c475f9', 'INSERT', '{"uuid": "bb575fa2-0a38-404c-a280-bcc403c475f9", "assumed": true, "ascendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a808d0d0-8971-4236-ba01-ad2bc3ef73bf', 'INSERT', '{"uuid": "a808d0d0-8971-4236-ba01-ad2bc3ef73bf", "assumed": true, "ascendantuuid": "6dc07a2f-428b-4621-9f39-8679a5a5a780", "descendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4d19a35a-143f-4b27-8056-19047cdc8e57', 'INSERT', '{"uuid": "4d19a35a-143f-4b27-8056-19047cdc8e57", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "fadd73e5-eeca-4f5a-b07d-998d11eb411d", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fc5672ca-4c2b-49ef-94a5-853622932577', 'INSERT', '{"uuid": "fc5672ca-4c2b-49ef-94a5-853622932577", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "84802890-6128-4134-8ad7-667491cfcbf7", "grantedbyroleuuid": null, "grantedbytriggerof": "a0e5508f-533d-4f7c-9602-6f23fa85e601"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'INSERT', '{"mark": null, "type": "VIP_CONTACT", "uuid": "a0e5508f-533d-4f7c-9602-6f23fa85e601", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "contactuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'INSERT', '{"uuid": "2eec1138-d2ad-43de-a105-605d0182a1f8", "serialid": 199, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', 'INSERT', '{"uuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "roletype": "OWNER", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '3c82a048-8d56-4f34-98c4-a20e193f815e', 'INSERT', '{"op": "DELETE", "uuid": "3c82a048-8d56-4f34-98c4-a20e193f815e", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '55622a21-18b4-4889-a133-b0f9e999a5f8', 'INSERT', '{"uuid": "55622a21-18b4-4889-a133-b0f9e999a5f8", "assumed": true, "ascendantuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "descendantuuid": "3c82a048-8d56-4f34-98c4-a20e193f815e", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bdec28d3-ff09-4651-a5cc-afb25e7cf5fd', 'INSERT', '{"uuid": "bdec28d3-ff09-4651-a5cc-afb25e7cf5fd", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '348bed58-906a-43d6-9fb5-789d99bc2448', 'INSERT', '{"uuid": "348bed58-906a-43d6-9fb5-789d99bc2448", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "grantedbyroleuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '47388b74-46ec-45fb-a817-031c959a6c2e', 'INSERT', '{"uuid": "47388b74-46ec-45fb-a817-031c959a6c2e", "roletype": "ADMIN", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803', 'INSERT', '{"op": "UPDATE", "uuid": "a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '57cb83c6-c9be-4a0d-9345-5c1d93dcbff5', 'INSERT', '{"uuid": "57cb83c6-c9be-4a0d-9345-5c1d93dcbff5", "assumed": true, "ascendantuuid": "47388b74-46ec-45fb-a817-031c959a6c2e", "descendantuuid": "a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bcfbb0b7-df3c-41ed-8493-c971aa14c270', 'INSERT', '{"uuid": "bcfbb0b7-df3c-41ed-8493-c971aa14c270", "assumed": true, "ascendantuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "descendantuuid": "47388b74-46ec-45fb-a817-031c959a6c2e", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'fb0b7122-f782-414f-85b1-c1df876a3441', 'INSERT', '{"uuid": "fb0b7122-f782-414f-85b1-c1df876a3441", "roletype": "AGENT", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '78f0fa7e-324e-4e4a-9321-5a1c72dae660', 'INSERT', '{"uuid": "78f0fa7e-324e-4e4a-9321-5a1c72dae660", "assumed": true, "ascendantuuid": "47388b74-46ec-45fb-a817-031c959a6c2e", "descendantuuid": "fb0b7122-f782-414f-85b1-c1df876a3441", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0195bb79-457f-42a6-a21f-ffd238256b28', 'INSERT', '{"uuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "roletype": "TENANT", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1230adbc-b61a-4ba1-b298-c831c2862e8f', 'INSERT', '{"op": "SELECT", "uuid": "1230adbc-b61a-4ba1-b298-c831c2862e8f", "objectuuid": "2eec1138-d2ad-43de-a105-605d0182a1f8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '86c9a95d-c08a-4375-8be1-1a23d89903c8', 'INSERT', '{"uuid": "86c9a95d-c08a-4375-8be1-1a23d89903c8", "assumed": true, "ascendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "descendantuuid": "1230adbc-b61a-4ba1-b298-c831c2862e8f", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'da788239-e153-4071-b312-c43279d9ac87', 'INSERT', '{"uuid": "da788239-e153-4071-b312-c43279d9ac87", "assumed": true, "ascendantuuid": "82d6e2a0-3c2d-4a8e-8638-4903696927d5", "descendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0f97ffe-65a5-4b38-9839-c914830c41f5', 'INSERT', '{"uuid": "b0f97ffe-65a5-4b38-9839-c914830c41f5", "assumed": true, "ascendantuuid": "fb0b7122-f782-414f-85b1-c1df876a3441", "descendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '53dd57a9-a5c4-4741-b922-e42cc3852f3c', 'INSERT', '{"uuid": "53dd57a9-a5c4-4741-b922-e42cc3852f3c", "assumed": true, "ascendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "descendantuuid": "25acc71c-db8f-46e4-950a-8ea76637bb9b", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b04b8eff-9ecd-41fc-beb0-3b9b92832d87', 'INSERT', '{"uuid": "b04b8eff-9ecd-41fc-beb0-3b9b92832d87", "assumed": true, "ascendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a77fa2fe-84af-45a4-aaf5-adb8bdc09c61', 'INSERT', '{"uuid": "a77fa2fe-84af-45a4-aaf5-adb8bdc09c61", "assumed": true, "ascendantuuid": "0195bb79-457f-42a6-a21f-ffd238256b28", "descendantuuid": "f913c978-1afc-4af0-9bb6-8c21eed95991", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6d0caee6-f2e7-4f1e-adc4-3405bfa88867', 'INSERT', '{"uuid": "6d0caee6-f2e7-4f1e-adc4-3405bfa88867", "assumed": true, "ascendantuuid": "da979efd-9d87-4dc5-a839-493e883cf292", "descendantuuid": "fb0b7122-f782-414f-85b1-c1df876a3441", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '5feb8ea2-f497-4058-b056-dd96514c70c5', 'INSERT', '{"op": "SELECT", "uuid": "5feb8ea2-f497-4058-b056-dd96514c70c5", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '35606a65-d96a-4b02-a621-af561e25d649', 'INSERT', '{"uuid": "35606a65-d96a-4b02-a621-af561e25d649", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d", "grantedbyroleuuid": null, "grantedbytriggerof": "2eec1138-d2ad-43de-a105-605d0182a1f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "2eec1138-d2ad-43de-a105-605d0182a1f8", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "177ab8a6-2f70-4c2d-b1ba-2153d0803b16", "contactuuid": "16da0560-e134-41c5-aafb-1f7a5b33692b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'INSERT', '{"uuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c", "serialid": 200, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8280b446-c17d-4d5f-aff5-ab391cd0af09', 'INSERT', '{"uuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "roletype": "OWNER", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8c70ecf7-82ce-4661-8cc5-0fadbcc4151a', 'INSERT', '{"op": "DELETE", "uuid": "8c70ecf7-82ce-4661-8cc5-0fadbcc4151a", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b8cc05ae-3a13-4346-83c4-9449520e9ddf', 'INSERT', '{"uuid": "b8cc05ae-3a13-4346-83c4-9449520e9ddf", "assumed": true, "ascendantuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "descendantuuid": "8c70ecf7-82ce-4661-8cc5-0fadbcc4151a", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '876fd5a0-0810-43ca-b132-29311d103c67', 'INSERT', '{"uuid": "876fd5a0-0810-43ca-b132-29311d103c67", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '94a375c1-4ab4-4f9b-b01b-7487db466f64', 'INSERT', '{"uuid": "94a375c1-4ab4-4f9b-b01b-7487db466f64", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "grantedbyroleuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '53e80cc6-7e19-4c55-8c1a-3190844ae734', 'INSERT', '{"uuid": "53e80cc6-7e19-4c55-8c1a-3190844ae734", "roletype": "ADMIN", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7aceef4b-2faa-48c5-8355-72db528f4822', 'INSERT', '{"op": "UPDATE", "uuid": "7aceef4b-2faa-48c5-8355-72db528f4822", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bbc7e03b-d588-4412-99ef-f0cdd5559a26', 'INSERT', '{"uuid": "bbc7e03b-d588-4412-99ef-f0cdd5559a26", "assumed": true, "ascendantuuid": "53e80cc6-7e19-4c55-8c1a-3190844ae734", "descendantuuid": "7aceef4b-2faa-48c5-8355-72db528f4822", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '65dbca62-0240-4f81-a4a5-c0d002c6db26', 'INSERT', '{"uuid": "65dbca62-0240-4f81-a4a5-c0d002c6db26", "assumed": true, "ascendantuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "descendantuuid": "53e80cc6-7e19-4c55-8c1a-3190844ae734", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', 'INSERT', '{"uuid": "4e5bc3c9-14f5-468c-8ef6-6bcb25c17948", "roletype": "AGENT", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '02019ab8-6ec7-4856-98f6-03c99788b6a7', 'INSERT', '{"uuid": "02019ab8-6ec7-4856-98f6-03c99788b6a7", "assumed": true, "ascendantuuid": "53e80cc6-7e19-4c55-8c1a-3190844ae734", "descendantuuid": "4e5bc3c9-14f5-468c-8ef6-6bcb25c17948", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '85e6093a-5013-45c3-a756-66e50d03b6bc', 'INSERT', '{"uuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "roletype": "TENANT", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '24fab1b7-ae06-42e0-8746-4754b526994d', 'INSERT', '{"op": "SELECT", "uuid": "24fab1b7-ae06-42e0-8746-4754b526994d", "objectuuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '49c0af6d-f0aa-430f-b03c-ecdfade261e4', 'INSERT', '{"uuid": "49c0af6d-f0aa-430f-b03c-ecdfade261e4", "assumed": true, "ascendantuuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "descendantuuid": "24fab1b7-ae06-42e0-8746-4754b526994d", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '37ed1b92-de74-4f45-8ae0-b641fc11f0cd', 'INSERT', '{"uuid": "37ed1b92-de74-4f45-8ae0-b641fc11f0cd", "assumed": true, "ascendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "descendantuuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e827db1b-3a2b-4978-93b2-8cf996dd2487', 'INSERT', '{"uuid": "e827db1b-3a2b-4978-93b2-8cf996dd2487", "assumed": true, "ascendantuuid": "4e5bc3c9-14f5-468c-8ef6-6bcb25c17948", "descendantuuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '13868160-f13c-4deb-91f9-d1bf6768d803', 'INSERT', '{"uuid": "13868160-f13c-4deb-91f9-d1bf6768d803", "assumed": true, "ascendantuuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "descendantuuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e7a500ad-1822-4607-9c36-c94a64bb8d60', 'INSERT', '{"uuid": "e7a500ad-1822-4607-9c36-c94a64bb8d60", "assumed": true, "ascendantuuid": "85e6093a-5013-45c3-a756-66e50d03b6bc", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '017ebbbd-4aa4-4c64-adf6-89fb2d5ce244', 'INSERT', '{"uuid": "017ebbbd-4aa4-4c64-adf6-89fb2d5ce244", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "4e5bc3c9-14f5-468c-8ef6-6bcb25c17948", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b970a351-ee05-41ec-b995-f75915afedec', 'INSERT', '{"uuid": "b970a351-ee05-41ec-b995-f75915afedec", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "8280b446-c17d-4d5f-aff5-ab391cd0af09", "grantedbyroleuuid": null, "grantedbytriggerof": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "7f24b032-3906-4b4c-9e91-4d0fd9f7855c", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "contactuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'fad03414-b62b-45d4-93fd-51c52149762c', 'INSERT', '{"uuid": "fad03414-b62b-45d4-93fd-51c52149762c", "serialid": 201, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7044a856-3670-42b7-9719-4a8638fff92a', 'INSERT', '{"uuid": "7044a856-3670-42b7-9719-4a8638fff92a", "roletype": "OWNER", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '13d82035-64c5-4ca9-a85e-988bc4a2eb4d', 'INSERT', '{"op": "DELETE", "uuid": "13d82035-64c5-4ca9-a85e-988bc4a2eb4d", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5eb167f7-80c1-4c71-9c63-b9d6994ec251', 'INSERT', '{"uuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "roletype": "OWNER", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '913004d0-3a2a-4c56-b24a-20575950dcb5', 'INSERT', '{"uuid": "913004d0-3a2a-4c56-b24a-20575950dcb5", "assumed": true, "ascendantuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "descendantuuid": "13d82035-64c5-4ca9-a85e-988bc4a2eb4d", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8328274d-3393-48ff-b2ed-0eb3466e8298', 'INSERT', '{"uuid": "8328274d-3393-48ff-b2ed-0eb3466e8298", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd784639a-94ce-40b6-968a-295ff498aa7a', 'INSERT', '{"uuid": "d784639a-94ce-40b6-968a-295ff498aa7a", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "grantedbyroleuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '20f04373-bbb4-4b9d-a89f-d21272d75d59', 'INSERT', '{"uuid": "20f04373-bbb4-4b9d-a89f-d21272d75d59", "roletype": "ADMIN", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '62ca73f6-89b1-4113-92ba-a7823aabf31e', 'INSERT', '{"op": "UPDATE", "uuid": "62ca73f6-89b1-4113-92ba-a7823aabf31e", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a41e82a4-97ef-4bc5-ad86-2840f3c37a11', 'INSERT', '{"uuid": "a41e82a4-97ef-4bc5-ad86-2840f3c37a11", "assumed": true, "ascendantuuid": "20f04373-bbb4-4b9d-a89f-d21272d75d59", "descendantuuid": "62ca73f6-89b1-4113-92ba-a7823aabf31e", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '84b09044-2858-4daf-bcac-bdc446c41aea', 'INSERT', '{"uuid": "84b09044-2858-4daf-bcac-bdc446c41aea", "assumed": true, "ascendantuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "descendantuuid": "20f04373-bbb4-4b9d-a89f-d21272d75d59", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '367f629c-223d-456c-98cf-ddf6600d5858', 'INSERT', '{"uuid": "367f629c-223d-456c-98cf-ddf6600d5858", "roletype": "AGENT", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '57713630-d87b-4811-9f01-ef736c0b4834', 'INSERT', '{"uuid": "57713630-d87b-4811-9f01-ef736c0b4834", "assumed": true, "ascendantuuid": "20f04373-bbb4-4b9d-a89f-d21272d75d59", "descendantuuid": "367f629c-223d-456c-98cf-ddf6600d5858", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', 'INSERT', '{"uuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "roletype": "TENANT", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '740e371f-18b1-4e93-8408-2fcc777b7da6', 'INSERT', '{"op": "SELECT", "uuid": "740e371f-18b1-4e93-8408-2fcc777b7da6", "objectuuid": "fad03414-b62b-45d4-93fd-51c52149762c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5b522b03-0f33-43b4-90a0-cdb5d3842343', 'INSERT', '{"uuid": "5b522b03-0f33-43b4-90a0-cdb5d3842343", "assumed": true, "ascendantuuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "descendantuuid": "740e371f-18b1-4e93-8408-2fcc777b7da6", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e0c22b32-549b-49e3-a838-172fa221eed6', 'INSERT', '{"uuid": "e0c22b32-549b-49e3-a838-172fa221eed6", "assumed": true, "ascendantuuid": "42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b", "descendantuuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '484d6f99-3537-4bce-b543-edec82063ebc', 'INSERT', '{"uuid": "484d6f99-3537-4bce-b543-edec82063ebc", "assumed": true, "ascendantuuid": "367f629c-223d-456c-98cf-ddf6600d5858", "descendantuuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '04e04fc5-fcec-47b4-b836-cf3210e750f3', 'INSERT', '{"uuid": "04e04fc5-fcec-47b4-b836-cf3210e750f3", "assumed": true, "ascendantuuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "descendantuuid": "24f9488b-412f-4314-b160-2897f4dcff1b", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7b5cda60-6c9e-46ec-af67-3cf3d4c8d356', 'INSERT', '{"uuid": "7b5cda60-6c9e-46ec-af67-3cf3d4c8d356", "assumed": true, "ascendantuuid": "4c98fcb4-e0b6-4692-86e5-dabb78af17ed", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5bb50ffd-5bb4-4cb5-91eb-99b64004ebee', 'INSERT', '{"uuid": "5bb50ffd-5bb4-4cb5-91eb-99b64004ebee", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "367f629c-223d-456c-98cf-ddf6600d5858", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ef476770-55e8-4eb4-a752-69c38dddc033', 'INSERT', '{"uuid": "ef476770-55e8-4eb4-a752-69c38dddc033", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "7044a856-3670-42b7-9719-4a8638fff92a", "grantedbyroleuuid": null, "grantedbytriggerof": "fad03414-b62b-45d4-93fd-51c52149762c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'fad03414-b62b-45d4-93fd-51c52149762c', 'INSERT', '{"mark": "customers-announce", "type": "SUBSCRIBER", "uuid": "fad03414-b62b-45d4-93fd-51c52149762c", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "contactuuid": "1fc10779-390b-40ff-b641-b6b5e2634ebb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '48a0fa39-0d72-4c0a-800f-afed02865850', 'INSERT', '{"uuid": "48a0fa39-0d72-4c0a-800f-afed02865850", "serialid": 202, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'cdc318a4-f418-4564-a38c-f93562dda048', 'INSERT', '{"uuid": "cdc318a4-f418-4564-a38c-f93562dda048", "roletype": "OWNER", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2c15e623-a22a-435b-a125-3edbf2a9b5f5', 'INSERT', '{"op": "DELETE", "uuid": "2c15e623-a22a-435b-a125-3edbf2a9b5f5", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '71191ee7-aa74-4044-ace7-7951b0b3c0d2', 'INSERT', '{"uuid": "71191ee7-aa74-4044-ace7-7951b0b3c0d2", "assumed": true, "ascendantuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "descendantuuid": "2c15e623-a22a-435b-a125-3edbf2a9b5f5", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3f0d820d-4d93-49b2-bcc1-7ee5c50e428c', 'INSERT', '{"uuid": "3f0d820d-4d93-49b2-bcc1-7ee5c50e428c", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0cade10-f7f9-4b8b-8f42-0cf53b892b9c', 'INSERT', '{"uuid": "b0cade10-f7f9-4b8b-8f42-0cf53b892b9c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "grantedbyroleuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', 'INSERT', '{"uuid": "f2a2d3d5-165d-43c4-91fc-7912f8a96bcc", "roletype": "ADMIN", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1c9c5558-dd2c-4293-bfcb-0160e981b6e0', 'INSERT', '{"op": "UPDATE", "uuid": "1c9c5558-dd2c-4293-bfcb-0160e981b6e0", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9eba2405-6cf5-40a7-b426-9e6458318053', 'INSERT', '{"uuid": "9eba2405-6cf5-40a7-b426-9e6458318053", "assumed": true, "ascendantuuid": "f2a2d3d5-165d-43c4-91fc-7912f8a96bcc", "descendantuuid": "1c9c5558-dd2c-4293-bfcb-0160e981b6e0", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '18c5068e-048b-4510-9b18-9fd2fb0d4135', 'INSERT', '{"uuid": "18c5068e-048b-4510-9b18-9fd2fb0d4135", "assumed": true, "ascendantuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "descendantuuid": "f2a2d3d5-165d-43c4-91fc-7912f8a96bcc", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ced737cc-1da8-4b12-808a-13e36b8bc37e', 'INSERT', '{"uuid": "ced737cc-1da8-4b12-808a-13e36b8bc37e", "roletype": "AGENT", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e9079c64-7557-4ae1-a866-4a96e5e49ba1', 'INSERT', '{"uuid": "e9079c64-7557-4ae1-a866-4a96e5e49ba1", "assumed": true, "ascendantuuid": "f2a2d3d5-165d-43c4-91fc-7912f8a96bcc", "descendantuuid": "ced737cc-1da8-4b12-808a-13e36b8bc37e", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '79ef402f-0c51-4ae0-a0dd-f0a09505a273', 'INSERT', '{"uuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "roletype": "TENANT", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '19241a87-0b31-4156-a479-cdb61cafaa66', 'INSERT', '{"op": "SELECT", "uuid": "19241a87-0b31-4156-a479-cdb61cafaa66", "objectuuid": "48a0fa39-0d72-4c0a-800f-afed02865850", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c21b9a49-8c79-4a8d-95f4-032db314e885', 'INSERT', '{"uuid": "c21b9a49-8c79-4a8d-95f4-032db314e885", "assumed": true, "ascendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "descendantuuid": "19241a87-0b31-4156-a479-cdb61cafaa66", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '828e4453-5b83-4a3c-8e49-29fc212ee8ab', 'INSERT', '{"uuid": "828e4453-5b83-4a3c-8e49-29fc212ee8ab", "assumed": true, "ascendantuuid": "f9d5ba94-1514-4400-88af-7b7d3798f473", "descendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '12864cb0-ed29-4cbf-a00b-4716e6fcff00', 'INSERT', '{"uuid": "12864cb0-ed29-4cbf-a00b-4716e6fcff00", "assumed": true, "ascendantuuid": "ced737cc-1da8-4b12-808a-13e36b8bc37e", "descendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a52c39d7-3d61-4707-8d2c-b85e571c0c7a', 'INSERT', '{"uuid": "a52c39d7-3d61-4707-8d2c-b85e571c0c7a", "assumed": true, "ascendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "descendantuuid": "20926d99-1f1f-497a-8e13-ce3cb4b1eb73", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'acc43637-f18c-46a9-9cbe-23c45b18ff7b', 'INSERT', '{"uuid": "acc43637-f18c-46a9-9cbe-23c45b18ff7b", "assumed": true, "ascendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '734b541b-498d-4e39-a136-8be5802563e1', 'INSERT', '{"uuid": "734b541b-498d-4e39-a136-8be5802563e1", "assumed": true, "ascendantuuid": "79ef402f-0c51-4ae0-a0dd-f0a09505a273", "descendantuuid": "ecdbb376-51c5-4de3-82f5-c5e73c0f43c5", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7321df72-9db0-4594-88ff-cc624280efc0', 'INSERT', '{"uuid": "7321df72-9db0-4594-88ff-cc624280efc0", "assumed": true, "ascendantuuid": "b28425cc-f859-43db-b3f5-64b5fb6a668b", "descendantuuid": "ced737cc-1da8-4b12-808a-13e36b8bc37e", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'aa207d78-61d8-4e6a-97e2-054f738a56a4', 'INSERT', '{"uuid": "aa207d78-61d8-4e6a-97e2-054f738a56a4", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "cdc318a4-f418-4564-a38c-f93562dda048", "grantedbyroleuuid": null, "grantedbytriggerof": "48a0fa39-0d72-4c0a-800f-afed02865850"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '48a0fa39-0d72-4c0a-800f-afed02865850', 'INSERT', '{"mark": null, "type": "VIP_CONTACT", "uuid": "48a0fa39-0d72-4c0a-800f-afed02865850", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "c8050a1b-0d28-4aa7-ac77-958c99152cd1", "contactuuid": "caac18bd-9277-47ac-99bb-368e2d64dac0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'INSERT', '{"uuid": "a84434fd-e879-4208-a8e8-8095e22b72bf", "serialid": 203, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0b67cb5e-3570-4ca7-945b-94f3390bec81', 'INSERT', '{"uuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "roletype": "OWNER", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '22b95a69-d861-4d90-bfef-a9c3f4ba5d52', 'INSERT', '{"op": "DELETE", "uuid": "22b95a69-d861-4d90-bfef-a9c3f4ba5d52", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e419060c-9fbe-40a1-bece-ed26c86303f3', 'INSERT', '{"uuid": "e419060c-9fbe-40a1-bece-ed26c86303f3", "assumed": true, "ascendantuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "descendantuuid": "22b95a69-d861-4d90-bfef-a9c3f4ba5d52", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4fb4d523-f9fe-4577-a320-8de8b7018354', 'INSERT', '{"uuid": "4fb4d523-f9fe-4577-a320-8de8b7018354", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '58c42133-e753-42ec-9179-1343126f6a88', 'INSERT', '{"uuid": "58c42133-e753-42ec-9179-1343126f6a88", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "grantedbyroleuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5306f8ae-55c4-460d-a133-45f8eae30eb6', 'INSERT', '{"uuid": "5306f8ae-55c4-460d-a133-45f8eae30eb6", "roletype": "ADMIN", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7', 'INSERT', '{"op": "UPDATE", "uuid": "a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'df06f05b-67e5-4a3a-bf44-25bae283b342', 'INSERT', '{"uuid": "df06f05b-67e5-4a3a-bf44-25bae283b342", "assumed": true, "ascendantuuid": "5306f8ae-55c4-460d-a133-45f8eae30eb6", "descendantuuid": "a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8a317992-4d7b-4f96-a216-b3d76a67b058', 'INSERT', '{"uuid": "8a317992-4d7b-4f96-a216-b3d76a67b058", "assumed": true, "ascendantuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "descendantuuid": "5306f8ae-55c4-460d-a133-45f8eae30eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '39500fd6-4dcf-4c33-9766-c9b4071e4754', 'INSERT', '{"uuid": "39500fd6-4dcf-4c33-9766-c9b4071e4754", "roletype": "AGENT", "objectuuid": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '62f04d9c-09d7-4a80-a932-aba12d4a9258', 'INSERT', '{"uuid": "62f04d9c-09d7-4a80-a932-aba12d4a9258", "assumed": true, "ascendantuuid": "5306f8ae-55c4-460d-a133-45f8eae30eb6", "descendantuuid": "39500fd6-4dcf-4c33-9766-c9b4071e4754", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b22cccac-454e-46d4-b440-f238db43371b', 'INSERT', '{"uuid": "b22cccac-454e-46d4-b440-f238db43371b", "assumed": true, "ascendantuuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "descendantuuid": "5feb8ea2-f497-4058-b056-dd96514c70c5", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c700dd59-b6cf-4d50-8fa2-d7bd1582cf98', 'INSERT', '{"uuid": "c700dd59-b6cf-4d50-8fa2-d7bd1582cf98", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '39514d32-b8b2-4191-8e3d-c339263c630f', 'INSERT', '{"uuid": "39514d32-b8b2-4191-8e3d-c339263c630f", "assumed": true, "ascendantuuid": "39500fd6-4dcf-4c33-9766-c9b4071e4754", "descendantuuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b5739fe2-cbc1-45a7-957c-1da1866ef72f', 'INSERT', '{"uuid": "b5739fe2-cbc1-45a7-957c-1da1866ef72f", "assumed": true, "ascendantuuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "descendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8d1f8a60-937f-44c1-bb27-ec4b42159618', 'INSERT', '{"uuid": "8d1f8a60-937f-44c1-bb27-ec4b42159618", "assumed": true, "ascendantuuid": "3f31fd85-c31c-4258-8219-2ed6f7a38f29", "descendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9270ca1c-1b92-45a2-ae06-6b81a4fd9d49', 'INSERT', '{"uuid": "9270ca1c-1b92-45a2-ae06-6b81a4fd9d49", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "39500fd6-4dcf-4c33-9766-c9b4071e4754", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '51aca5fc-851d-42e4-9d27-d41280eca08a', 'INSERT', '{"uuid": "51aca5fc-851d-42e4-9d27-d41280eca08a", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "0b67cb5e-3570-4ca7-945b-94f3390bec81", "grantedbyroleuuid": null, "grantedbytriggerof": "a84434fd-e879-4208-a8e8-8095e22b72bf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "a84434fd-e879-4208-a8e8-8095e22b72bf", "version": 0, "anchoruuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "holderuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "contactuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'INSERT', '{"uuid": "93d87d13-efdb-4d31-83e6-3b13db983c12", "serialid": 204, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3461faee-7a67-45d3-af18-7de8686c381d', 'INSERT', '{"uuid": "3461faee-7a67-45d3-af18-7de8686c381d", "roletype": "OWNER", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '164e7fa0-ccac-4331-be5a-dc965b1c31d6', 'INSERT', '{"op": "DELETE", "uuid": "164e7fa0-ccac-4331-be5a-dc965b1c31d6", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e1f676e2-21fd-4689-88c8-800518d22080', 'INSERT', '{"uuid": "e1f676e2-21fd-4689-88c8-800518d22080", "assumed": true, "ascendantuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "descendantuuid": "164e7fa0-ccac-4331-be5a-dc965b1c31d6", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd16fb908-a8c8-4be1-b52e-e7e39c12ea07', 'INSERT', '{"uuid": "d16fb908-a8c8-4be1-b52e-e7e39c12ea07", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f22de112-02a1-48f0-8a9c-0ff8dd22c8d0', 'INSERT', '{"uuid": "f22de112-02a1-48f0-8a9c-0ff8dd22c8d0", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "grantedbyroleuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', 'INSERT', '{"uuid": "1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8", "roletype": "ADMIN", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'dbee33c8-80d8-40c9-9d16-af5c99aea9ae', 'INSERT', '{"op": "UPDATE", "uuid": "dbee33c8-80d8-40c9-9d16-af5c99aea9ae", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '780fd786-74cf-4b97-81b9-ac4b909fef18', 'INSERT', '{"uuid": "780fd786-74cf-4b97-81b9-ac4b909fef18", "assumed": true, "ascendantuuid": "1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8", "descendantuuid": "dbee33c8-80d8-40c9-9d16-af5c99aea9ae", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '85faf70c-058e-4612-b290-4141325917a5', 'INSERT', '{"uuid": "85faf70c-058e-4612-b290-4141325917a5", "assumed": true, "ascendantuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "descendantuuid": "1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3d17a863-17af-48a5-a6aa-abc815209773', 'INSERT', '{"uuid": "3d17a863-17af-48a5-a6aa-abc815209773", "roletype": "AGENT", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1a293898-9590-4232-99d0-c839bac38a4b', 'INSERT', '{"uuid": "1a293898-9590-4232-99d0-c839bac38a4b", "assumed": true, "ascendantuuid": "1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8", "descendantuuid": "3d17a863-17af-48a5-a6aa-abc815209773", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0447c01c-fae5-4c80-a59f-a9f330321b9c', 'INSERT', '{"uuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "roletype": "TENANT", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1b4208a5-e7ba-460e-922f-a9fb5c7e79e7', 'INSERT', '{"op": "SELECT", "uuid": "1b4208a5-e7ba-460e-922f-a9fb5c7e79e7", "objectuuid": "93d87d13-efdb-4d31-83e6-3b13db983c12", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '974163d5-e3e7-4703-9b47-768296eb4c57', 'INSERT', '{"uuid": "974163d5-e3e7-4703-9b47-768296eb4c57", "assumed": true, "ascendantuuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "descendantuuid": "1b4208a5-e7ba-460e-922f-a9fb5c7e79e7", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6638829e-b4a4-4148-bed1-1df9bd27bc83', 'INSERT', '{"uuid": "6638829e-b4a4-4148-bed1-1df9bd27bc83", "assumed": true, "ascendantuuid": "57ee73c6-769e-461e-9cea-7bfe56970bf7", "descendantuuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '21c8f5cf-38b2-4fb7-a4fd-8b6893a55394', 'INSERT', '{"uuid": "21c8f5cf-38b2-4fb7-a4fd-8b6893a55394", "assumed": true, "ascendantuuid": "3d17a863-17af-48a5-a6aa-abc815209773", "descendantuuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cc6788b2-65f0-406e-a3dd-3b58eb3ebeb7', 'INSERT', '{"uuid": "cc6788b2-65f0-406e-a3dd-3b58eb3ebeb7", "assumed": true, "ascendantuuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "descendantuuid": "e65ad361-79d6-46a3-a7c7-a18048b7237a", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '52109c52-b432-4d0c-8aca-dd0a99ca35eb', 'INSERT', '{"uuid": "52109c52-b432-4d0c-8aca-dd0a99ca35eb", "assumed": true, "ascendantuuid": "0447c01c-fae5-4c80-a59f-a9f330321b9c", "descendantuuid": "ea1789f5-11fe-4ec3-8d12-2623ba592c7f", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5fbff0ee-6d38-412a-bafe-d2017b2155b3', 'INSERT', '{"uuid": "5fbff0ee-6d38-412a-bafe-d2017b2155b3", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "3d17a863-17af-48a5-a6aa-abc815209773", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dde7f3bd-0a6b-4da2-8db7-92d54b443c7e', 'INSERT', '{"uuid": "dde7f3bd-0a6b-4da2-8db7-92d54b443c7e", "assumed": true, "ascendantuuid": "6ef557f3-0b1e-41e9-bde7-8abea686f965", "descendantuuid": "3461faee-7a67-45d3-af18-7de8686c381d", "grantedbyroleuuid": null, "grantedbytriggerof": "93d87d13-efdb-4d31-83e6-3b13db983c12"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "93d87d13-efdb-4d31-83e6-3b13db983c12", "version": 0, "anchoruuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "holderuuid": "89bca3fd-d7b2-46f5-821a-64c5566d03f1", "contactuuid": "eead6995-dd54-475f-8194-74445c421305"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'bad214a0-5220-4433-8714-52e4c736585a', 'INSERT', '{"uuid": "bad214a0-5220-4433-8714-52e4c736585a", "serialid": 205, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'fd1b146c-609a-486f-afe5-c87430e1be15', 'INSERT', '{"uuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "roletype": "OWNER", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'cebd9ecc-f841-4d44-a3fe-3c82827f2918', 'INSERT', '{"op": "DELETE", "uuid": "cebd9ecc-f841-4d44-a3fe-3c82827f2918", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b62e2ba3-fd5e-41dd-b36e-a4df8d27cc84', 'INSERT', '{"uuid": "b62e2ba3-fd5e-41dd-b36e-a4df8d27cc84", "assumed": true, "ascendantuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "descendantuuid": "cebd9ecc-f841-4d44-a3fe-3c82827f2918", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '342a26e0-01be-4477-8505-bb177f76f81d', 'INSERT', '{"uuid": "342a26e0-01be-4477-8505-bb177f76f81d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ea164af9-46a4-4691-bf45-39c089a3907f', 'INSERT', '{"uuid": "ea164af9-46a4-4691-bf45-39c089a3907f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "grantedbyroleuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd09b10a6-f74d-4e87-898d-851cfdb9dffb', 'INSERT', '{"uuid": "d09b10a6-f74d-4e87-898d-851cfdb9dffb", "roletype": "ADMIN", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ac3ee728-8957-4b2e-91d7-9f7a0e543931', 'INSERT', '{"op": "UPDATE", "uuid": "ac3ee728-8957-4b2e-91d7-9f7a0e543931", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '682f1b6c-bbe9-4229-bd9a-1782cd6296d6', 'INSERT', '{"uuid": "682f1b6c-bbe9-4229-bd9a-1782cd6296d6", "assumed": true, "ascendantuuid": "d09b10a6-f74d-4e87-898d-851cfdb9dffb", "descendantuuid": "ac3ee728-8957-4b2e-91d7-9f7a0e543931", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1d7a2de3-3754-4b1d-a763-d5a0d920dedb', 'INSERT', '{"uuid": "1d7a2de3-3754-4b1d-a763-d5a0d920dedb", "assumed": true, "ascendantuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "descendantuuid": "d09b10a6-f74d-4e87-898d-851cfdb9dffb", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3a1e0eb9-bf91-4bda-b804-8707d753644e', 'INSERT', '{"uuid": "3a1e0eb9-bf91-4bda-b804-8707d753644e", "roletype": "AGENT", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4fe44a04-1c1b-4046-91b2-54f0c6560020', 'INSERT', '{"uuid": "4fe44a04-1c1b-4046-91b2-54f0c6560020", "assumed": true, "ascendantuuid": "d09b10a6-f74d-4e87-898d-851cfdb9dffb", "descendantuuid": "3a1e0eb9-bf91-4bda-b804-8707d753644e", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', 'INSERT', '{"uuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "roletype": "TENANT", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '30b91518-31ef-4b3f-a539-c1f7566e0c77', 'INSERT', '{"op": "SELECT", "uuid": "30b91518-31ef-4b3f-a539-c1f7566e0c77", "objectuuid": "bad214a0-5220-4433-8714-52e4c736585a", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '420dd5f5-07b6-4e88-803d-23281381b7b9', 'INSERT', '{"uuid": "420dd5f5-07b6-4e88-803d-23281381b7b9", "assumed": true, "ascendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "descendantuuid": "30b91518-31ef-4b3f-a539-c1f7566e0c77", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '97796f5f-c386-44ab-b15a-8be0b6b8ce89', 'INSERT', '{"uuid": "97796f5f-c386-44ab-b15a-8be0b6b8ce89", "assumed": true, "ascendantuuid": "d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e", "descendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fddf76f7-6c95-4af7-841f-fe2ce0200617', 'INSERT', '{"uuid": "fddf76f7-6c95-4af7-841f-fe2ce0200617", "assumed": true, "ascendantuuid": "3a1e0eb9-bf91-4bda-b804-8707d753644e", "descendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'df62b4b8-bc0d-4a5b-9285-7c489e5a7e13', 'INSERT', '{"uuid": "df62b4b8-bc0d-4a5b-9285-7c489e5a7e13", "assumed": true, "ascendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "descendantuuid": "6c787015-c910-455d-8b2c-c3ae7bece7e7", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2eaa6dc6-2561-4bc8-b138-16b73f9df2a5', 'INSERT', '{"uuid": "2eaa6dc6-2561-4bc8-b138-16b73f9df2a5", "assumed": true, "ascendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "descendantuuid": "e668cce4-9f01-4c71-b28c-79859e02971b", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '36a8ac7a-fff5-4bf0-b3c6-99fbc1901d48', 'INSERT', '{"uuid": "36a8ac7a-fff5-4bf0-b3c6-99fbc1901d48", "assumed": true, "ascendantuuid": "c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3", "descendantuuid": "4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4276e2db-6b2f-413b-a29e-6e8a82b16ba9', 'INSERT', '{"uuid": "4276e2db-6b2f-413b-a29e-6e8a82b16ba9", "assumed": true, "ascendantuuid": "9e5fa680-2abc-4f25-bb22-bd2fe04fd860", "descendantuuid": "3a1e0eb9-bf91-4bda-b804-8707d753644e", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '769e962a-57dc-45ab-92b3-68c217f8b495', 'INSERT', '{"uuid": "769e962a-57dc-45ab-92b3-68c217f8b495", "assumed": true, "ascendantuuid": "b4224d96-af95-4008-9a96-9ae04b44913f", "descendantuuid": "fd1b146c-609a-486f-afe5-c87430e1be15", "grantedbyroleuuid": null, "grantedbytriggerof": "bad214a0-5220-4433-8714-52e4c736585a"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '3a64d35c-f155-4420-a87f-ddd771f7e500', 'INSERT', '{"op": "DELETE", "uuid": "3a64d35c-f155-4420-a87f-ddd771f7e500", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'bad214a0-5220-4433-8714-52e4c736585a', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "bad214a0-5220-4433-8714-52e4c736585a", "version": 0, "anchoruuid": "ff030436-d19e-4606-9d48-7e192eaf469f", "holderuuid": "2fd1ba30-936a-41a8-8fbe-e93be547f44b", "contactuuid": "4b68de11-a658-44bb-be49-ad592e73e3d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '5add96a4-6fff-4fe2-8628-669d72252417', 'INSERT', '{"uuid": "5add96a4-6fff-4fe2-8628-669d72252417", "serialid": 206, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8e9971fb-270c-4897-ae63-50f457d9d0d5', 'INSERT', '{"uuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "roletype": "OWNER", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fa9a7713-93f2-46c6-b3de-9d6e42bce983', 'INSERT', '{"op": "DELETE", "uuid": "fa9a7713-93f2-46c6-b3de-9d6e42bce983", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4d1f8cfe-9901-4ba6-a66f-3a859d8c3669', 'INSERT', '{"uuid": "4d1f8cfe-9901-4ba6-a66f-3a859d8c3669", "assumed": true, "ascendantuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "descendantuuid": "fa9a7713-93f2-46c6-b3de-9d6e42bce983", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'afd8494c-f583-4ba5-8b40-e67b5f56bc03', 'INSERT', '{"uuid": "afd8494c-f583-4ba5-8b40-e67b5f56bc03", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '654992e9-98eb-4f59-a8dc-37068c28dcae', 'INSERT', '{"uuid": "654992e9-98eb-4f59-a8dc-37068c28dcae", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "grantedbyroleuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', 'INSERT', '{"uuid": "a352a7f2-6caf-48bd-8f2e-90a1b3d248fd", "roletype": "ADMIN", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '052b4092-a5bf-47f3-8ba2-0734ec9129d4', 'INSERT', '{"op": "UPDATE", "uuid": "052b4092-a5bf-47f3-8ba2-0734ec9129d4", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd23139da-5dba-4b5c-8471-596a168c8fe4', 'INSERT', '{"uuid": "d23139da-5dba-4b5c-8471-596a168c8fe4", "assumed": true, "ascendantuuid": "a352a7f2-6caf-48bd-8f2e-90a1b3d248fd", "descendantuuid": "052b4092-a5bf-47f3-8ba2-0734ec9129d4", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '984f748c-bef5-4ffd-a9f3-1af2e470d8ff', 'INSERT', '{"uuid": "984f748c-bef5-4ffd-a9f3-1af2e470d8ff", "assumed": true, "ascendantuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "descendantuuid": "a352a7f2-6caf-48bd-8f2e-90a1b3d248fd", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', 'INSERT', '{"uuid": "7bdb3dd3-ed56-43ff-8a99-a49101ba7d48", "roletype": "AGENT", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e2247b4c-a6cf-4cbf-bdf8-a64aeaf6933a', 'INSERT', '{"uuid": "e2247b4c-a6cf-4cbf-bdf8-a64aeaf6933a", "assumed": true, "ascendantuuid": "a352a7f2-6caf-48bd-8f2e-90a1b3d248fd", "descendantuuid": "7bdb3dd3-ed56-43ff-8a99-a49101ba7d48", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0caafe33-8257-4550-9e75-c8a828d5dbc6', 'INSERT', '{"uuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "roletype": "TENANT", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '4c75b994-e714-4781-a51d-6f582ae07f6e', 'INSERT', '{"op": "SELECT", "uuid": "4c75b994-e714-4781-a51d-6f582ae07f6e", "objectuuid": "5add96a4-6fff-4fe2-8628-669d72252417", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '36b6b1e1-03f8-45e0-b810-7f506aa69c67', 'INSERT', '{"uuid": "36b6b1e1-03f8-45e0-b810-7f506aa69c67", "assumed": true, "ascendantuuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "descendantuuid": "4c75b994-e714-4781-a51d-6f582ae07f6e", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b7427b8f-db70-496a-b5a4-ce1e704c8246', 'INSERT', '{"uuid": "b7427b8f-db70-496a-b5a4-ce1e704c8246", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b9f6bf0a-34e9-4783-ac50-a2e294cd2722', 'INSERT', '{"uuid": "b9f6bf0a-34e9-4783-ac50-a2e294cd2722", "assumed": true, "ascendantuuid": "7bdb3dd3-ed56-43ff-8a99-a49101ba7d48", "descendantuuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3f430afe-ae59-4e28-8a56-7bd911f9eac7', 'INSERT', '{"uuid": "3f430afe-ae59-4e28-8a56-7bd911f9eac7", "assumed": true, "ascendantuuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "descendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '08e80826-b815-426c-b59c-60e089174ff7', 'INSERT', '{"uuid": "08e80826-b815-426c-b59c-60e089174ff7", "assumed": true, "ascendantuuid": "0caafe33-8257-4550-9e75-c8a828d5dbc6", "descendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '856b0f90-83dc-4f65-b862-b9e69c5d4608', 'INSERT', '{"uuid": "856b0f90-83dc-4f65-b862-b9e69c5d4608", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "7bdb3dd3-ed56-43ff-8a99-a49101ba7d48", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dc3c5bd9-f54c-48c2-b912-4750f16d7485', 'INSERT', '{"uuid": "dc3c5bd9-f54c-48c2-b912-4750f16d7485", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "8e9971fb-270c-4897-ae63-50f457d9d0d5", "grantedbyroleuuid": null, "grantedbytriggerof": "5add96a4-6fff-4fe2-8628-669d72252417"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '5add96a4-6fff-4fe2-8628-669d72252417', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "5add96a4-6fff-4fe2-8628-669d72252417", "version": 0, "anchoruuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "holderuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "contactuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '2185083d-3134-4b30-9dcb-674058feaac2', 'INSERT', '{"uuid": "2185083d-3134-4b30-9dcb-674058feaac2", "serialid": 207, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7f74a25b-753a-4534-bd83-0db07cc6df2f', 'INSERT', '{"uuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "roletype": "OWNER", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '05a6b2b6-58dc-4310-bcf1-d923168e2070', 'INSERT', '{"op": "DELETE", "uuid": "05a6b2b6-58dc-4310-bcf1-d923168e2070", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dfcfbf97-4d74-47e5-8ff6-58d4d15c1961', 'INSERT', '{"uuid": "dfcfbf97-4d74-47e5-8ff6-58d4d15c1961", "assumed": true, "ascendantuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "descendantuuid": "05a6b2b6-58dc-4310-bcf1-d923168e2070", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '596f965f-b224-495b-9f5f-5150af69979f', 'INSERT', '{"op": "SELECT", "uuid": "596f965f-b224-495b-9f5f-5150af69979f", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a4a3c7b3-c797-4956-8f17-b8234b3a8839', 'INSERT', '{"uuid": "a4a3c7b3-c797-4956-8f17-b8234b3a8839", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5018f5b5-e839-4c10-8272-5784e4c709fa', 'INSERT', '{"uuid": "5018f5b5-e839-4c10-8272-5784e4c709fa", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "grantedbyroleuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '64229d80-11aa-4910-9e0c-a211d9a5ca95', 'INSERT', '{"uuid": "64229d80-11aa-4910-9e0c-a211d9a5ca95", "roletype": "ADMIN", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9ddb3c98-f345-4f59-b067-7673d0e06673', 'INSERT', '{"op": "UPDATE", "uuid": "9ddb3c98-f345-4f59-b067-7673d0e06673", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '64348744-47d9-4c5c-b851-a6eb71c1baad', 'INSERT', '{"uuid": "64348744-47d9-4c5c-b851-a6eb71c1baad", "assumed": true, "ascendantuuid": "64229d80-11aa-4910-9e0c-a211d9a5ca95", "descendantuuid": "9ddb3c98-f345-4f59-b067-7673d0e06673", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1e4e4775-1354-4816-8818-b11d5abdb247', 'INSERT', '{"uuid": "1e4e4775-1354-4816-8818-b11d5abdb247", "assumed": true, "ascendantuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "descendantuuid": "64229d80-11aa-4910-9e0c-a211d9a5ca95", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '98f81765-6d0e-4cb5-ab49-da912f668f5d', 'INSERT', '{"uuid": "98f81765-6d0e-4cb5-ab49-da912f668f5d", "roletype": "AGENT", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cff9d5f6-722e-4d0b-9631-53cb1078c8ab', 'INSERT', '{"uuid": "cff9d5f6-722e-4d0b-9631-53cb1078c8ab", "assumed": true, "ascendantuuid": "64229d80-11aa-4910-9e0c-a211d9a5ca95", "descendantuuid": "98f81765-6d0e-4cb5-ab49-da912f668f5d", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f4bed22e-44be-4ce4-9d95-5d9be630012a', 'INSERT', '{"uuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "roletype": "TENANT", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8a7273c3-5012-45bd-9d3f-72dd52163117', 'INSERT', '{"op": "SELECT", "uuid": "8a7273c3-5012-45bd-9d3f-72dd52163117", "objectuuid": "2185083d-3134-4b30-9dcb-674058feaac2", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b8fcfba2-925f-41b3-a68d-9f5e282ee1d6', 'INSERT', '{"uuid": "b8fcfba2-925f-41b3-a68d-9f5e282ee1d6", "assumed": true, "ascendantuuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "descendantuuid": "8a7273c3-5012-45bd-9d3f-72dd52163117", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2e09df1b-489e-4f3a-add9-eecca44a15a7', 'INSERT', '{"uuid": "2e09df1b-489e-4f3a-add9-eecca44a15a7", "assumed": true, "ascendantuuid": "93ec1b20-de2b-4af1-924f-047a7afa0276", "descendantuuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f50fdd37-fce2-49aa-bb36-bf91c808a68a', 'INSERT', '{"uuid": "f50fdd37-fce2-49aa-bb36-bf91c808a68a", "assumed": true, "ascendantuuid": "98f81765-6d0e-4cb5-ab49-da912f668f5d", "descendantuuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1bc31c7c-b350-408c-9da4-811d0151766a', 'INSERT', '{"uuid": "1bc31c7c-b350-408c-9da4-811d0151766a", "assumed": true, "ascendantuuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "descendantuuid": "4330591d-61d5-4435-827a-c71b8328a700", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '497285ad-4b61-4108-89af-9341718f8570', 'INSERT', '{"uuid": "497285ad-4b61-4108-89af-9341718f8570", "assumed": true, "ascendantuuid": "f4bed22e-44be-4ce4-9d95-5d9be630012a", "descendantuuid": "a7ff4f1c-7c33-43e0-b264-37339141f7f9", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0750ea1a-1e29-498b-93cf-5b9bb974d6e3', 'INSERT', '{"uuid": "0750ea1a-1e29-498b-93cf-5b9bb974d6e3", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "98f81765-6d0e-4cb5-ab49-da912f668f5d", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4e95f12e-e96e-48ea-acfc-6f5c81541152', 'INSERT', '{"uuid": "4e95f12e-e96e-48ea-acfc-6f5c81541152", "assumed": true, "ascendantuuid": "f32f51d5-3384-426e-a1c1-b5b6a263b647", "descendantuuid": "7f74a25b-753a-4534-bd83-0db07cc6df2f", "grantedbyroleuuid": null, "grantedbytriggerof": "2185083d-3134-4b30-9dcb-674058feaac2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '2185083d-3134-4b30-9dcb-674058feaac2', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "2185083d-3134-4b30-9dcb-674058feaac2", "version": 0, "anchoruuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "holderuuid": "450cf76f-d9bb-4308-ae8f-bd09bbbafd31", "contactuuid": "8e7648e6-e74e-4a37-b9c0-3a5998921e1f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'INSERT', '{"uuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f", "serialid": 208, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8772af22-67d6-4721-bc48-20f841f171e6', 'INSERT', '{"uuid": "8772af22-67d6-4721-bc48-20f841f171e6", "roletype": "OWNER", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b31618ff-d749-4aa9-86b8-08eb2de9dcac', 'INSERT', '{"op": "DELETE", "uuid": "b31618ff-d749-4aa9-86b8-08eb2de9dcac", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '91f4f621-48ec-4953-90a5-29e8c96da6d2', 'INSERT', '{"uuid": "91f4f621-48ec-4953-90a5-29e8c96da6d2", "assumed": true, "ascendantuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "descendantuuid": "b31618ff-d749-4aa9-86b8-08eb2de9dcac", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ee5f23de-7bc0-486a-af2b-ce8ca809a8a7', 'INSERT', '{"uuid": "ee5f23de-7bc0-486a-af2b-ce8ca809a8a7", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3d46e72a-eae9-4ce6-81da-08bd21c11e09', 'INSERT', '{"uuid": "3d46e72a-eae9-4ce6-81da-08bd21c11e09", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "grantedbyroleuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '2899fdb3-40ae-4885-8d6b-7c0f07493ef8', 'INSERT', '{"uuid": "2899fdb3-40ae-4885-8d6b-7c0f07493ef8", "roletype": "ADMIN", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '9b229b0a-e7b9-4fce-a134-c6f5199ce495', 'INSERT', '{"op": "UPDATE", "uuid": "9b229b0a-e7b9-4fce-a134-c6f5199ce495", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1783ac20-fc60-4574-a39b-8f8cabb6c84b', 'INSERT', '{"uuid": "1783ac20-fc60-4574-a39b-8f8cabb6c84b", "assumed": true, "ascendantuuid": "2899fdb3-40ae-4885-8d6b-7c0f07493ef8", "descendantuuid": "9b229b0a-e7b9-4fce-a134-c6f5199ce495", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '361867cb-91aa-4ee1-b95a-5e4c1abd3725', 'INSERT', '{"uuid": "361867cb-91aa-4ee1-b95a-5e4c1abd3725", "assumed": true, "ascendantuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "descendantuuid": "2899fdb3-40ae-4885-8d6b-7c0f07493ef8", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', 'INSERT', '{"uuid": "f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3", "roletype": "AGENT", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1f578f1d-cf4c-404a-9d05-d39bb050b9dc', 'INSERT', '{"uuid": "1f578f1d-cf4c-404a-9d05-d39bb050b9dc", "assumed": true, "ascendantuuid": "2899fdb3-40ae-4885-8d6b-7c0f07493ef8", "descendantuuid": "f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', 'INSERT', '{"uuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "roletype": "TENANT", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '46ba8c49-58f7-441b-a7c0-290a9f490a1f', 'INSERT', '{"op": "SELECT", "uuid": "46ba8c49-58f7-441b-a7c0-290a9f490a1f", "objectuuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a4f9d60c-0e9a-4d31-8516-ad679c978264', 'INSERT', '{"uuid": "a4f9d60c-0e9a-4d31-8516-ad679c978264", "assumed": true, "ascendantuuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "descendantuuid": "46ba8c49-58f7-441b-a7c0-290a9f490a1f", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '935e8f3b-8569-4b85-8c4f-771a8b2c0deb', 'INSERT', '{"uuid": "935e8f3b-8569-4b85-8c4f-771a8b2c0deb", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e0e15d6c-1f34-4ad9-99bb-dae9bea370e0', 'INSERT', '{"uuid": "e0e15d6c-1f34-4ad9-99bb-dae9bea370e0", "assumed": true, "ascendantuuid": "f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3", "descendantuuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '54344d9d-5501-48d4-b021-efb561be481a', 'INSERT', '{"uuid": "54344d9d-5501-48d4-b021-efb561be481a", "assumed": true, "ascendantuuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '87faed89-6652-4ebd-a2c2-183e88046dab', 'INSERT', '{"uuid": "87faed89-6652-4ebd-a2c2-183e88046dab", "assumed": true, "ascendantuuid": "ce3d8199-1a11-409c-8f0f-99a8344f1d1a", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ce026d6a-238b-4663-8a6a-63b30be9a7e0', 'INSERT', '{"uuid": "ce026d6a-238b-4663-8a6a-63b30be9a7e0", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5ada012b-e322-4928-a6b4-c08620cceadb', 'INSERT', '{"uuid": "5ada012b-e322-4928-a6b4-c08620cceadb", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "8772af22-67d6-4721-bc48-20f841f171e6", "grantedbyroleuuid": null, "grantedbytriggerof": "c60e1d4e-01a1-42a8-9521-1681c77b350f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "c60e1d4e-01a1-42a8-9521-1681c77b350f", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "contactuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'INSERT', '{"uuid": "17ea3654-289d-4892-a837-3ddcaea2d7db", "serialid": 209, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', 'INSERT', '{"uuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "roletype": "OWNER", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1be877de-9e9e-478b-855b-f4f0e6dfb842', 'INSERT', '{"op": "DELETE", "uuid": "1be877de-9e9e-478b-855b-f4f0e6dfb842", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6b7b8728-4071-4b75-b2a7-1ddd2e1bc468', 'INSERT', '{"uuid": "6b7b8728-4071-4b75-b2a7-1ddd2e1bc468", "assumed": true, "ascendantuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "descendantuuid": "1be877de-9e9e-478b-855b-f4f0e6dfb842", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3715d066-6c22-4d60-a579-859b3340ffdc', 'INSERT', '{"uuid": "3715d066-6c22-4d60-a579-859b3340ffdc", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc4ccda5-cc3c-44a0-b079-795628799f81', 'INSERT', '{"uuid": "bc4ccda5-cc3c-44a0-b079-795628799f81", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "grantedbyroleuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ec3bede7-5502-40df-bcaf-d2782c15ed50', 'INSERT', '{"uuid": "ec3bede7-5502-40df-bcaf-d2782c15ed50", "roletype": "ADMIN", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7a48ec29-24be-4d13-b788-264eb6fe6327', 'INSERT', '{"op": "UPDATE", "uuid": "7a48ec29-24be-4d13-b788-264eb6fe6327", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '84b30d19-36de-4e02-bf21-3d3571be13c5', 'INSERT', '{"uuid": "84b30d19-36de-4e02-bf21-3d3571be13c5", "assumed": true, "ascendantuuid": "ec3bede7-5502-40df-bcaf-d2782c15ed50", "descendantuuid": "7a48ec29-24be-4d13-b788-264eb6fe6327", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '044cd5d9-8e21-4ae8-89a6-3308958528d3', 'INSERT', '{"uuid": "044cd5d9-8e21-4ae8-89a6-3308958528d3", "assumed": true, "ascendantuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "descendantuuid": "ec3bede7-5502-40df-bcaf-d2782c15ed50", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '98c6c409-250f-4977-89da-f3c242f4be8b', 'INSERT', '{"uuid": "98c6c409-250f-4977-89da-f3c242f4be8b", "roletype": "AGENT", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd2e8f68d-5efb-4926-9ba3-6bbc84b41544', 'INSERT', '{"uuid": "d2e8f68d-5efb-4926-9ba3-6bbc84b41544", "assumed": true, "ascendantuuid": "ec3bede7-5502-40df-bcaf-d2782c15ed50", "descendantuuid": "98c6c409-250f-4977-89da-f3c242f4be8b", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', 'INSERT', '{"uuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "roletype": "TENANT", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2fc229bc-25f7-407d-bdfc-e9469c17ca34', 'INSERT', '{"op": "SELECT", "uuid": "2fc229bc-25f7-407d-bdfc-e9469c17ca34", "objectuuid": "17ea3654-289d-4892-a837-3ddcaea2d7db", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '201bce64-1c53-4047-bfd3-1892e4bb545f', 'INSERT', '{"uuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "roletype": "OWNER", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9a50a114-f2e1-4465-8c3d-df1fde31e0c4', 'INSERT', '{"uuid": "9a50a114-f2e1-4465-8c3d-df1fde31e0c4", "assumed": true, "ascendantuuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "descendantuuid": "2fc229bc-25f7-407d-bdfc-e9469c17ca34", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dc1d7bd9-a178-4b6f-8ddd-88f6a01afe4e', 'INSERT', '{"uuid": "dc1d7bd9-a178-4b6f-8ddd-88f6a01afe4e", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b691f5d4-921f-4f4a-9e96-d4d962d90bb0', 'INSERT', '{"uuid": "b691f5d4-921f-4f4a-9e96-d4d962d90bb0", "assumed": true, "ascendantuuid": "98c6c409-250f-4977-89da-f3c242f4be8b", "descendantuuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f9442aed-5ca1-4bcf-9552-cb5a35ecbd8d', 'INSERT', '{"uuid": "f9442aed-5ca1-4bcf-9552-cb5a35ecbd8d", "assumed": true, "ascendantuuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '91e2ffc4-0265-42d1-ba63-f35be286e999', 'INSERT', '{"uuid": "91e2ffc4-0265-42d1-ba63-f35be286e999", "assumed": true, "ascendantuuid": "bf5371a6-e09c-4484-b57c-62aa6befdd0c", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b9fc0e8c-5f9f-4781-b485-379d44c53792', 'INSERT', '{"uuid": "b9fc0e8c-5f9f-4781-b485-379d44c53792", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "98c6c409-250f-4977-89da-f3c242f4be8b", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a906bcfa-8745-41df-a97f-691c5a303f1a', 'INSERT', '{"uuid": "a906bcfa-8745-41df-a97f-691c5a303f1a", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "bd1cdc2f-13aa-490d-84bf-1cea1d91fd05", "grantedbyroleuuid": null, "grantedbytriggerof": "17ea3654-289d-4892-a837-3ddcaea2d7db"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "17ea3654-289d-4892-a837-3ddcaea2d7db", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "contactuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '60702c01-7285-4eea-a937-6019d6e3661d', 'INSERT', '{"uuid": "60702c01-7285-4eea-a937-6019d6e3661d", "serialid": 210, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6093331c-adb2-44e9-baac-ef073278751f', 'INSERT', '{"uuid": "6093331c-adb2-44e9-baac-ef073278751f", "roletype": "OWNER", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '46d04d79-5187-44ec-8f30-e6f823bc47e6', 'INSERT', '{"op": "DELETE", "uuid": "46d04d79-5187-44ec-8f30-e6f823bc47e6", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd9fbd26a-a4b0-4ad1-8c38-3281b7b4b992', 'INSERT', '{"uuid": "d9fbd26a-a4b0-4ad1-8c38-3281b7b4b992", "assumed": true, "ascendantuuid": "6093331c-adb2-44e9-baac-ef073278751f", "descendantuuid": "46d04d79-5187-44ec-8f30-e6f823bc47e6", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '71a02cb0-4e2d-49ad-8ebc-e91cefaf35bd', 'INSERT', '{"uuid": "71a02cb0-4e2d-49ad-8ebc-e91cefaf35bd", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "6093331c-adb2-44e9-baac-ef073278751f", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4ca42285-8620-423d-833e-591a0c311ef9', 'INSERT', '{"uuid": "4ca42285-8620-423d-833e-591a0c311ef9", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "6093331c-adb2-44e9-baac-ef073278751f", "grantedbyroleuuid": "6093331c-adb2-44e9-baac-ef073278751f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a0cf1824-6284-4031-980e-1df923d144e0', 'INSERT', '{"uuid": "a0cf1824-6284-4031-980e-1df923d144e0", "roletype": "ADMIN", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '3817a2b3-7031-4489-8c87-23babe729843', 'INSERT', '{"op": "UPDATE", "uuid": "3817a2b3-7031-4489-8c87-23babe729843", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '16fdb069-9d57-40a4-8993-547d5a39c03e', 'INSERT', '{"uuid": "16fdb069-9d57-40a4-8993-547d5a39c03e", "assumed": true, "ascendantuuid": "a0cf1824-6284-4031-980e-1df923d144e0", "descendantuuid": "3817a2b3-7031-4489-8c87-23babe729843", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b37eb949-13ea-455c-a7da-cb958219a181', 'INSERT', '{"uuid": "b37eb949-13ea-455c-a7da-cb958219a181", "assumed": true, "ascendantuuid": "6093331c-adb2-44e9-baac-ef073278751f", "descendantuuid": "a0cf1824-6284-4031-980e-1df923d144e0", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0a93387c-682c-45d7-8a24-e538678f5cf4', 'INSERT', '{"uuid": "0a93387c-682c-45d7-8a24-e538678f5cf4", "roletype": "AGENT", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '45c9a1c0-a672-495c-a16c-37e8b92d4a7d', 'INSERT', '{"uuid": "45c9a1c0-a672-495c-a16c-37e8b92d4a7d", "assumed": true, "ascendantuuid": "a0cf1824-6284-4031-980e-1df923d144e0", "descendantuuid": "0a93387c-682c-45d7-8a24-e538678f5cf4", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', 'INSERT', '{"uuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "roletype": "TENANT", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd241e268-fffd-4d21-9936-819ae9975f85', 'INSERT', '{"op": "SELECT", "uuid": "d241e268-fffd-4d21-9936-819ae9975f85", "objectuuid": "60702c01-7285-4eea-a937-6019d6e3661d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6feec489-d95d-4a2f-8d34-76f11e5a0276', 'INSERT', '{"uuid": "6feec489-d95d-4a2f-8d34-76f11e5a0276", "assumed": true, "ascendantuuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "descendantuuid": "d241e268-fffd-4d21-9936-819ae9975f85", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd63c04ff-728e-4847-bfb3-b8780540a025', 'INSERT', '{"uuid": "d63c04ff-728e-4847-bfb3-b8780540a025", "assumed": true, "ascendantuuid": "5b391d1b-439d-4ba6-9be1-dc9e8c161c7c", "descendantuuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '31b7bb2a-4e2c-401a-9f51-160a53e4cc3c', 'INSERT', '{"uuid": "31b7bb2a-4e2c-401a-9f51-160a53e4cc3c", "assumed": true, "ascendantuuid": "0a93387c-682c-45d7-8a24-e538678f5cf4", "descendantuuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4e6714ed-44b6-4846-9158-030ab6e876eb', 'INSERT', '{"uuid": "4e6714ed-44b6-4846-9158-030ab6e876eb", "assumed": true, "ascendantuuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "descendantuuid": "5167487b-90ee-40b9-9c34-535b74b3186e", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '46508dd1-469a-45be-81bd-6346a9bbc63e', 'INSERT', '{"uuid": "46508dd1-469a-45be-81bd-6346a9bbc63e", "assumed": true, "ascendantuuid": "35a0a69f-e93c-43f7-b406-3c2d01e1cd8c", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd171cf8a-9426-4276-aedc-3e137be04705', 'INSERT', '{"uuid": "d171cf8a-9426-4276-aedc-3e137be04705", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "0a93387c-682c-45d7-8a24-e538678f5cf4", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '92aca332-eddc-4be4-8811-e2a99cacf5fd', 'INSERT', '{"uuid": "92aca332-eddc-4be4-8811-e2a99cacf5fd", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "6093331c-adb2-44e9-baac-ef073278751f", "grantedbyroleuuid": null, "grantedbytriggerof": "60702c01-7285-4eea-a937-6019d6e3661d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '60702c01-7285-4eea-a937-6019d6e3661d', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "60702c01-7285-4eea-a937-6019d6e3661d", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "contactuuid": "25358342-4f90-4397-b4c4-d90524ac0b7b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'INSERT', '{"uuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f", "serialid": 211, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '86514079-9959-4ffe-9563-4be364780b39', 'INSERT', '{"uuid": "86514079-9959-4ffe-9563-4be364780b39", "roletype": "OWNER", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1bc97522-8adf-4246-bb4f-9a870002fbd4', 'INSERT', '{"op": "DELETE", "uuid": "1bc97522-8adf-4246-bb4f-9a870002fbd4", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7afeee51-a00e-4f79-afcc-7be6f4b53665', 'INSERT', '{"uuid": "7afeee51-a00e-4f79-afcc-7be6f4b53665", "assumed": true, "ascendantuuid": "86514079-9959-4ffe-9563-4be364780b39", "descendantuuid": "1bc97522-8adf-4246-bb4f-9a870002fbd4", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8a007e81-834c-46cd-a09a-35e7992b74b4', 'INSERT', '{"uuid": "8a007e81-834c-46cd-a09a-35e7992b74b4", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "86514079-9959-4ffe-9563-4be364780b39", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3f5d16e1-aca2-4017-86f9-0ec97c86886f', 'INSERT', '{"uuid": "3f5d16e1-aca2-4017-86f9-0ec97c86886f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "86514079-9959-4ffe-9563-4be364780b39", "grantedbyroleuuid": "86514079-9959-4ffe-9563-4be364780b39", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '94fb08b4-d5d1-43a5-a395-b1e261a46e0b', 'INSERT', '{"uuid": "94fb08b4-d5d1-43a5-a395-b1e261a46e0b", "roletype": "ADMIN", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7ee9690d-ebff-4afb-95db-fad387eb4255', 'INSERT', '{"op": "UPDATE", "uuid": "7ee9690d-ebff-4afb-95db-fad387eb4255", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8fb309bc-79ef-4085-b25e-58e7b0827fbf', 'INSERT', '{"uuid": "8fb309bc-79ef-4085-b25e-58e7b0827fbf", "assumed": true, "ascendantuuid": "94fb08b4-d5d1-43a5-a395-b1e261a46e0b", "descendantuuid": "7ee9690d-ebff-4afb-95db-fad387eb4255", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a98c8ed6-d9d3-4420-9da7-900372a76869', 'INSERT', '{"uuid": "a98c8ed6-d9d3-4420-9da7-900372a76869", "assumed": true, "ascendantuuid": "86514079-9959-4ffe-9563-4be364780b39", "descendantuuid": "94fb08b4-d5d1-43a5-a395-b1e261a46e0b", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd6e4ad57-a163-4508-a694-99a87eeeb986', 'INSERT', '{"uuid": "d6e4ad57-a163-4508-a694-99a87eeeb986", "roletype": "AGENT", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b8b3f481-4402-4ea0-850e-8a52ab5e8703', 'INSERT', '{"uuid": "b8b3f481-4402-4ea0-850e-8a52ab5e8703", "assumed": true, "ascendantuuid": "94fb08b4-d5d1-43a5-a395-b1e261a46e0b", "descendantuuid": "d6e4ad57-a163-4508-a694-99a87eeeb986", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', 'INSERT', '{"uuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "roletype": "TENANT", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2d00deb0-bb73-447f-b867-71be2d2dbfda', 'INSERT', '{"op": "SELECT", "uuid": "2d00deb0-bb73-447f-b867-71be2d2dbfda", "objectuuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7987aafb-1726-4434-b942-f3e03f2944a0', 'INSERT', '{"uuid": "7987aafb-1726-4434-b942-f3e03f2944a0", "assumed": true, "ascendantuuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "descendantuuid": "2d00deb0-bb73-447f-b867-71be2d2dbfda", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '60dcb967-6300-4985-adcb-5a49474e2f7b', 'INSERT', '{"uuid": "60dcb967-6300-4985-adcb-5a49474e2f7b", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c423d783-e419-49f1-8804-296f71d6c254', 'INSERT', '{"uuid": "c423d783-e419-49f1-8804-296f71d6c254", "assumed": true, "ascendantuuid": "d6e4ad57-a163-4508-a694-99a87eeeb986", "descendantuuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '47c7c631-f6bb-40ad-8b2b-05274dd958f0', 'INSERT', '{"uuid": "47c7c631-f6bb-40ad-8b2b-05274dd958f0", "assumed": true, "ascendantuuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bf19153e-8a52-4339-ae59-971174f639f2', 'INSERT', '{"uuid": "bf19153e-8a52-4339-ae59-971174f639f2", "assumed": true, "ascendantuuid": "67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c9bc9ea4-66ff-43f0-86b1-4f6f8fd31e5c', 'INSERT', '{"uuid": "c9bc9ea4-66ff-43f0-86b1-4f6f8fd31e5c", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "d6e4ad57-a163-4508-a694-99a87eeeb986", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bbe4f41e-6ecd-4688-b44a-8a94a9badd9b', 'INSERT', '{"uuid": "bbe4f41e-6ecd-4688-b44a-8a94a9badd9b", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "86514079-9959-4ffe-9563-4be364780b39", "grantedbyroleuuid": null, "grantedbytriggerof": "a66a844c-e5b3-4569-96cf-06197abc0d2f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "a66a844c-e5b3-4569-96cf-06197abc0d2f", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'INSERT', '{"uuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e", "serialid": 212, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e743b05d-4d77-4167-be21-b86213521704', 'INSERT', '{"uuid": "e743b05d-4d77-4167-be21-b86213521704", "assumed": true, "ascendantuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "descendantuuid": "3a64d35c-f155-4420-a87f-ddd771f7e500", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '48e818a3-167f-4dc8-8aff-c22b63aba62b', 'INSERT', '{"uuid": "48e818a3-167f-4dc8-8aff-c22b63aba62b", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '92b37cad-3482-4ece-8be4-dd7f5bc524ab', 'INSERT', '{"uuid": "92b37cad-3482-4ece-8be4-dd7f5bc524ab", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "grantedbyroleuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '44c0b607-7d0a-4701-9570-8d339189020f', 'INSERT', '{"uuid": "44c0b607-7d0a-4701-9570-8d339189020f", "roletype": "ADMIN", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '238a91bb-2186-41f0-a97b-6e4c62a2c6a8', 'INSERT', '{"op": "UPDATE", "uuid": "238a91bb-2186-41f0-a97b-6e4c62a2c6a8", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0021ca7-6132-406c-ab5d-e981e394586e', 'INSERT', '{"uuid": "b0021ca7-6132-406c-ab5d-e981e394586e", "assumed": true, "ascendantuuid": "44c0b607-7d0a-4701-9570-8d339189020f", "descendantuuid": "238a91bb-2186-41f0-a97b-6e4c62a2c6a8", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0d7f87c0-db06-4a82-a3d6-d64698f34c55', 'INSERT', '{"uuid": "0d7f87c0-db06-4a82-a3d6-d64698f34c55", "assumed": true, "ascendantuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "descendantuuid": "44c0b607-7d0a-4701-9570-8d339189020f", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '91f36783-f411-4708-a88e-b30fb94d849a', 'INSERT', '{"uuid": "91f36783-f411-4708-a88e-b30fb94d849a", "roletype": "AGENT", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6100fa03-8dc5-4f16-85b6-65546e1bef7a', 'INSERT', '{"uuid": "6100fa03-8dc5-4f16-85b6-65546e1bef7a", "assumed": true, "ascendantuuid": "44c0b607-7d0a-4701-9570-8d339189020f", "descendantuuid": "91f36783-f411-4708-a88e-b30fb94d849a", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '52c74fa2-27f4-4046-8712-759b3f47e48a', 'INSERT', '{"uuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "roletype": "TENANT", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f', 'INSERT', '{"op": "SELECT", "uuid": "0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f", "objectuuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cf8cb48d-1d87-4b11-b2d1-df908149d755', 'INSERT', '{"uuid": "cf8cb48d-1d87-4b11-b2d1-df908149d755", "assumed": true, "ascendantuuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "descendantuuid": "0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7fd305af-57be-43a7-a732-f26418a1ca53', 'INSERT', '{"uuid": "7fd305af-57be-43a7-a732-f26418a1ca53", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '57536f03-fcb5-44ff-a589-e98cd3df123b', 'INSERT', '{"uuid": "57536f03-fcb5-44ff-a589-e98cd3df123b", "assumed": true, "ascendantuuid": "91f36783-f411-4708-a88e-b30fb94d849a", "descendantuuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8ed30d78-487b-468d-aa73-e3bb5e4b5d17', 'INSERT', '{"uuid": "8ed30d78-487b-468d-aa73-e3bb5e4b5d17", "assumed": true, "ascendantuuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '72bdf079-cbb7-4a67-8666-4583db5d3cca', 'INSERT', '{"uuid": "72bdf079-cbb7-4a67-8666-4583db5d3cca", "assumed": true, "ascendantuuid": "52c74fa2-27f4-4046-8712-759b3f47e48a", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '805468da-74ec-4b41-93c6-6bee7da7cd0b', 'INSERT', '{"uuid": "805468da-74ec-4b41-93c6-6bee7da7cd0b", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "91f36783-f411-4708-a88e-b30fb94d849a", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0e8d9f5-6d48-4cef-9ef7-0730917a3d14', 'INSERT', '{"uuid": "b0e8d9f5-6d48-4cef-9ef7-0730917a3d14", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "5eb167f7-80c1-4c71-9c63-b9d6994ec251", "grantedbyroleuuid": null, "grantedbytriggerof": "f7ddff21-e58a-426b-a693-46a2b45c9d4e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "f7ddff21-e58a-426b-a693-46a2b45c9d4e", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'INSERT', '{"uuid": "8363ec62-6d90-4dd9-940b-6073b3246c39", "serialid": 213, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', 'INSERT', '{"uuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "roletype": "OWNER", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '8b30e218-5562-41af-82ce-bf3f633d1f3d', 'INSERT', '{"op": "DELETE", "uuid": "8b30e218-5562-41af-82ce-bf3f633d1f3d", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bed9a100-fd78-4b56-bfc8-2f484b955947', 'INSERT', '{"uuid": "bed9a100-fd78-4b56-bfc8-2f484b955947", "assumed": true, "ascendantuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "descendantuuid": "8b30e218-5562-41af-82ce-bf3f633d1f3d", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '213e0b7e-5f3e-4e42-bdf6-30a0ac699b28', 'INSERT', '{"uuid": "213e0b7e-5f3e-4e42-bdf6-30a0ac699b28", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '80161fac-c749-4b08-8c84-0ebafd2d3a98', 'INSERT', '{"uuid": "80161fac-c749-4b08-8c84-0ebafd2d3a98", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "grantedbyroleuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '553adc79-d3f6-4b92-88d3-8c9328e5a616', 'INSERT', '{"uuid": "553adc79-d3f6-4b92-88d3-8c9328e5a616", "roletype": "ADMIN", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '31a9442f-92c2-4f7d-9895-a7095ee96952', 'INSERT', '{"op": "UPDATE", "uuid": "31a9442f-92c2-4f7d-9895-a7095ee96952", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b01e33b6-b72e-4ff8-bce3-5e4fee5d954d', 'INSERT', '{"uuid": "b01e33b6-b72e-4ff8-bce3-5e4fee5d954d", "assumed": true, "ascendantuuid": "553adc79-d3f6-4b92-88d3-8c9328e5a616", "descendantuuid": "31a9442f-92c2-4f7d-9895-a7095ee96952", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '166f5922-7578-4ecb-b9ac-b89136e7ef33', 'INSERT', '{"uuid": "166f5922-7578-4ecb-b9ac-b89136e7ef33", "assumed": true, "ascendantuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "descendantuuid": "553adc79-d3f6-4b92-88d3-8c9328e5a616", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '832cde07-7e08-41a0-84e0-201f12393e15', 'INSERT', '{"uuid": "832cde07-7e08-41a0-84e0-201f12393e15", "roletype": "AGENT", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4290306a-ac53-43a6-84a2-c234e41835a0', 'INSERT', '{"uuid": "4290306a-ac53-43a6-84a2-c234e41835a0", "assumed": true, "ascendantuuid": "553adc79-d3f6-4b92-88d3-8c9328e5a616", "descendantuuid": "832cde07-7e08-41a0-84e0-201f12393e15", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4e1db019-7622-4ba1-aec7-4046419a7b28', 'INSERT', '{"uuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "roletype": "TENANT", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'bacb714c-ac84-4f51-b8e3-fc74b27e1388', 'INSERT', '{"op": "SELECT", "uuid": "bacb714c-ac84-4f51-b8e3-fc74b27e1388", "objectuuid": "8363ec62-6d90-4dd9-940b-6073b3246c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '34d62e8e-b3d7-468b-a291-fc969c3b9cb0', 'INSERT', '{"uuid": "34d62e8e-b3d7-468b-a291-fc969c3b9cb0", "assumed": true, "ascendantuuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "descendantuuid": "bacb714c-ac84-4f51-b8e3-fc74b27e1388", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd196d344-99a6-4eda-8a2c-9a589cd035dd', 'INSERT', '{"uuid": "d196d344-99a6-4eda-8a2c-9a589cd035dd", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1938ede4-bf20-4e00-af7c-e2824876b1c8', 'INSERT', '{"uuid": "1938ede4-bf20-4e00-af7c-e2824876b1c8", "assumed": true, "ascendantuuid": "832cde07-7e08-41a0-84e0-201f12393e15", "descendantuuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5d6d973a-91c3-446a-8265-c561784b9469', 'INSERT', '{"uuid": "5d6d973a-91c3-446a-8265-c561784b9469", "assumed": true, "ascendantuuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e37e4ee5-9e16-48d3-8f4f-a830266ea4f8', 'INSERT', '{"uuid": "e37e4ee5-9e16-48d3-8f4f-a830266ea4f8", "assumed": true, "ascendantuuid": "4e1db019-7622-4ba1-aec7-4046419a7b28", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'aabbd5f7-d31b-41e3-a111-736caf90ba92', 'INSERT', '{"uuid": "aabbd5f7-d31b-41e3-a111-736caf90ba92", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "832cde07-7e08-41a0-84e0-201f12393e15", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '13193ab0-7409-4371-9d99-43fc3d4b3c38', 'INSERT', '{"uuid": "13193ab0-7409-4371-9d99-43fc3d4b3c38", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "2a60ab65-5d4d-49bf-b184-3b1ef563bd62", "grantedbyroleuuid": null, "grantedbytriggerof": "8363ec62-6d90-4dd9-940b-6073b3246c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "8363ec62-6d90-4dd9-940b-6073b3246c39", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'INSERT', '{"uuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3", "serialid": 214, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4e4469ab-f0e8-4927-a374-33384a97811f', 'INSERT', '{"uuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "roletype": "OWNER", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '4f6ce070-55e4-4d2c-9429-5d4b3fa25077', 'INSERT', '{"op": "DELETE", "uuid": "4f6ce070-55e4-4d2c-9429-5d4b3fa25077", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '87762c8c-7d03-493c-a236-12373e0eee27', 'INSERT', '{"uuid": "87762c8c-7d03-493c-a236-12373e0eee27", "assumed": true, "ascendantuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "descendantuuid": "4f6ce070-55e4-4d2c-9429-5d4b3fa25077", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '99fc01f9-b91b-4df6-a9eb-35c880f38117', 'INSERT', '{"uuid": "99fc01f9-b91b-4df6-a9eb-35c880f38117", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fd064544-7017-4079-954e-2557cb22467c', 'INSERT', '{"uuid": "fd064544-7017-4079-954e-2557cb22467c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "grantedbyroleuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', 'INSERT', '{"uuid": "f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1", "roletype": "ADMIN", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '274595e4-31af-488a-997e-688d10886a47', 'INSERT', '{"op": "UPDATE", "uuid": "274595e4-31af-488a-997e-688d10886a47", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c12808fb-f852-4149-8745-207250682761', 'INSERT', '{"uuid": "c12808fb-f852-4149-8745-207250682761", "assumed": true, "ascendantuuid": "f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1", "descendantuuid": "274595e4-31af-488a-997e-688d10886a47", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b19b89e1-320b-4676-b2e1-878d02e24a0c', 'INSERT', '{"uuid": "b19b89e1-320b-4676-b2e1-878d02e24a0c", "assumed": true, "ascendantuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "descendantuuid": "f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'c110be44-7852-4eaa-b52a-c87a93de1076', 'INSERT', '{"uuid": "c110be44-7852-4eaa-b52a-c87a93de1076", "roletype": "AGENT", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '96fce452-6a70-41b3-b800-a0a9aa31461a', 'INSERT', '{"uuid": "96fce452-6a70-41b3-b800-a0a9aa31461a", "assumed": true, "ascendantuuid": "f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1", "descendantuuid": "c110be44-7852-4eaa-b52a-c87a93de1076", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', 'INSERT', '{"uuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "roletype": "TENANT", "objectuuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '07568fe6-b570-4eb9-b88e-9eeab35ca495', 'INSERT', '{"uuid": "07568fe6-b570-4eb9-b88e-9eeab35ca495", "assumed": true, "ascendantuuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "descendantuuid": "596f965f-b224-495b-9f5f-5150af69979f", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'af0c2637-5a4b-46ee-a5d1-dc6d671266bb', 'INSERT', '{"uuid": "af0c2637-5a4b-46ee-a5d1-dc6d671266bb", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6de23849-34f4-4c8c-b947-9a8e40f7c7a7', 'INSERT', '{"uuid": "6de23849-34f4-4c8c-b947-9a8e40f7c7a7", "assumed": true, "ascendantuuid": "c110be44-7852-4eaa-b52a-c87a93de1076", "descendantuuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '470a225c-108e-4d1d-8ea2-483a412b9bbf', 'INSERT', '{"uuid": "470a225c-108e-4d1d-8ea2-483a412b9bbf", "assumed": true, "ascendantuuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cd11068c-9a45-48e7-808e-fb0dd02f45b9', 'INSERT', '{"uuid": "cd11068c-9a45-48e7-808e-fb0dd02f45b9", "assumed": true, "ascendantuuid": "b9ad5d7e-cf8d-4265-9271-2e32128b69d2", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dff92d19-dc34-4296-a0d7-91b0d9631d30', 'INSERT', '{"uuid": "dff92d19-dc34-4296-a0d7-91b0d9631d30", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "c110be44-7852-4eaa-b52a-c87a93de1076", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ec2adc5b-1930-45b7-86c7-2accc5f02e6a', 'INSERT', '{"uuid": "ec2adc5b-1930-45b7-86c7-2accc5f02e6a", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "4e4469ab-f0e8-4927-a374-33384a97811f", "grantedbyroleuuid": null, "grantedbytriggerof": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "6561ab8d-b9a0-497c-ba5e-60403c5eb5d3", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'INSERT', '{"uuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768", "serialid": 215, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', 'INSERT', '{"uuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "roletype": "OWNER", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'e77c42c3-559a-44af-90cd-304eab1646a5', 'INSERT', '{"op": "DELETE", "uuid": "e77c42c3-559a-44af-90cd-304eab1646a5", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '35ab9b66-1ade-4b49-bb31-ebe516a34c67', 'INSERT', '{"uuid": "35ab9b66-1ade-4b49-bb31-ebe516a34c67", "assumed": true, "ascendantuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "descendantuuid": "e77c42c3-559a-44af-90cd-304eab1646a5", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '750eda48-2032-4eb7-842e-f212a05cb566', 'INSERT', '{"uuid": "750eda48-2032-4eb7-842e-f212a05cb566", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9a2a51d9-3e9a-4524-9093-b622c3183afc', 'INSERT', '{"uuid": "9a2a51d9-3e9a-4524-9093-b622c3183afc", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "grantedbyroleuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ba6c1883-e891-4628-bea0-78b9787b1403', 'INSERT', '{"uuid": "ba6c1883-e891-4628-bea0-78b9787b1403", "roletype": "ADMIN", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '0ab92d43-0a98-4d77-9f65-44d74acfe5b8', 'INSERT', '{"op": "UPDATE", "uuid": "0ab92d43-0a98-4d77-9f65-44d74acfe5b8", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '290221cd-e520-4a1c-8119-df58ec4dfae0', 'INSERT', '{"uuid": "290221cd-e520-4a1c-8119-df58ec4dfae0", "assumed": true, "ascendantuuid": "ba6c1883-e891-4628-bea0-78b9787b1403", "descendantuuid": "0ab92d43-0a98-4d77-9f65-44d74acfe5b8", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '92df1b96-88c6-436f-9a5d-9590b4e1a0b1', 'INSERT', '{"uuid": "92df1b96-88c6-436f-9a5d-9590b4e1a0b1", "assumed": true, "ascendantuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "descendantuuid": "ba6c1883-e891-4628-bea0-78b9787b1403", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3877cf69-dfcc-4ff3-83a1-65ef1471f919', 'INSERT', '{"uuid": "3877cf69-dfcc-4ff3-83a1-65ef1471f919", "roletype": "AGENT", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6fef9941-52e9-4692-aa2b-e986773bacef', 'INSERT', '{"uuid": "6fef9941-52e9-4692-aa2b-e986773bacef", "assumed": true, "ascendantuuid": "ba6c1883-e891-4628-bea0-78b9787b1403", "descendantuuid": "3877cf69-dfcc-4ff3-83a1-65ef1471f919", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4d8fb33e-f5de-4716-a301-a753f59c5aed', 'INSERT', '{"uuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "roletype": "TENANT", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f6542fe1-149a-4244-b812-18ad82ff555f', 'INSERT', '{"op": "SELECT", "uuid": "f6542fe1-149a-4244-b812-18ad82ff555f", "objectuuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cc3ccd82-fa75-402e-a188-337c8f44c64d', 'INSERT', '{"uuid": "cc3ccd82-fa75-402e-a188-337c8f44c64d", "assumed": true, "ascendantuuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "descendantuuid": "f6542fe1-149a-4244-b812-18ad82ff555f", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '47dc5cdb-3e87-4e5d-950c-16ba19152b64', 'INSERT', '{"uuid": "47dc5cdb-3e87-4e5d-950c-16ba19152b64", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b88a2bef-44ca-479c-8eef-704a5e217691', 'INSERT', '{"uuid": "b88a2bef-44ca-479c-8eef-704a5e217691", "assumed": true, "ascendantuuid": "3877cf69-dfcc-4ff3-83a1-65ef1471f919", "descendantuuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd0aa8661-c85f-4de9-8ca1-cf86c25d15f7', 'INSERT', '{"uuid": "d0aa8661-c85f-4de9-8ca1-cf86c25d15f7", "assumed": true, "ascendantuuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2dc93f8b-9342-4f0c-8031-9340353d364d', 'INSERT', '{"uuid": "2dc93f8b-9342-4f0c-8031-9340353d364d", "assumed": true, "ascendantuuid": "4d8fb33e-f5de-4716-a301-a753f59c5aed", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '410cf3aa-8db7-4683-9fec-069ab6073afd', 'INSERT', '{"uuid": "410cf3aa-8db7-4683-9fec-069ab6073afd", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "3877cf69-dfcc-4ff3-83a1-65ef1471f919", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd4ee96b0-fd17-4bbd-b1e8-98f9ce015c9e', 'INSERT', '{"uuid": "d4ee96b0-fd17-4bbd-b1e8-98f9ce015c9e", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f", "grantedbyroleuuid": null, "grantedbytriggerof": "bc9fabea-d44b-455c-87d6-a0b0428e7768"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "bc9fabea-d44b-455c-87d6-a0b0428e7768", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'INSERT', '{"uuid": "a13af5de-4315-46dd-ae08-427ea72b35a0", "serialid": 216, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '80da5984-53fc-4439-a4b2-2aa030416ddf', 'INSERT', '{"uuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "roletype": "OWNER", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2715a520-f38d-486b-9053-055f6289c966', 'INSERT', '{"op": "DELETE", "uuid": "2715a520-f38d-486b-9053-055f6289c966", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '869b3806-564d-4c47-a7ca-bb7285365647', 'INSERT', '{"uuid": "869b3806-564d-4c47-a7ca-bb7285365647", "assumed": true, "ascendantuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "descendantuuid": "2715a520-f38d-486b-9053-055f6289c966", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '774a242d-e8b0-416f-9c72-a68ffebe0315', 'INSERT', '{"uuid": "774a242d-e8b0-416f-9c72-a68ffebe0315", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '45130952-0637-4191-88e6-9398918afd0d', 'INSERT', '{"uuid": "45130952-0637-4191-88e6-9398918afd0d", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "grantedbyroleuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', 'INSERT', '{"uuid": "8f1fbdf5-7aba-43d7-932e-a9e4f386ae84", "roletype": "ADMIN", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1a09398f-873b-4c9a-9392-c129ccf0d636', 'INSERT', '{"op": "UPDATE", "uuid": "1a09398f-873b-4c9a-9392-c129ccf0d636", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'face9f8a-f956-4f10-a47c-0f7af36fda49', 'INSERT', '{"uuid": "face9f8a-f956-4f10-a47c-0f7af36fda49", "assumed": true, "ascendantuuid": "8f1fbdf5-7aba-43d7-932e-a9e4f386ae84", "descendantuuid": "1a09398f-873b-4c9a-9392-c129ccf0d636", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '22d3b5e6-c4d4-45cd-99da-8008b2040278', 'INSERT', '{"uuid": "22d3b5e6-c4d4-45cd-99da-8008b2040278", "assumed": true, "ascendantuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "descendantuuid": "8f1fbdf5-7aba-43d7-932e-a9e4f386ae84", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '46a6fc92-c738-40d2-be20-7762997fdd21', 'INSERT', '{"uuid": "46a6fc92-c738-40d2-be20-7762997fdd21", "roletype": "AGENT", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b0dd85e2-83d4-4f03-b24a-db9db12cf607', 'INSERT', '{"uuid": "b0dd85e2-83d4-4f03-b24a-db9db12cf607", "assumed": true, "ascendantuuid": "8f1fbdf5-7aba-43d7-932e-a9e4f386ae84", "descendantuuid": "46a6fc92-c738-40d2-be20-7762997fdd21", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', 'INSERT', '{"uuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "roletype": "TENANT", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '44074e80-79cc-4965-9525-29ed20419544', 'INSERT', '{"op": "SELECT", "uuid": "44074e80-79cc-4965-9525-29ed20419544", "objectuuid": "a13af5de-4315-46dd-ae08-427ea72b35a0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dac85b6b-4dd2-42b2-a151-b8dfce5b2bd5', 'INSERT', '{"uuid": "dac85b6b-4dd2-42b2-a151-b8dfce5b2bd5", "assumed": true, "ascendantuuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "descendantuuid": "44074e80-79cc-4965-9525-29ed20419544", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3878bbdd-11c5-47b0-9e20-c70896c918cb', 'INSERT', '{"uuid": "3878bbdd-11c5-47b0-9e20-c70896c918cb", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9b63a093-30f1-4628-80e9-a7baf79a4ebc', 'INSERT', '{"uuid": "9b63a093-30f1-4628-80e9-a7baf79a4ebc", "assumed": true, "ascendantuuid": "46a6fc92-c738-40d2-be20-7762997fdd21", "descendantuuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fd33e269-1be7-4616-b094-5e0ae35a65a7', 'INSERT', '{"uuid": "fd33e269-1be7-4616-b094-5e0ae35a65a7", "assumed": true, "ascendantuuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '26b6187d-24dd-4f65-b5a4-a6d8095a4c16', 'INSERT', '{"uuid": "26b6187d-24dd-4f65-b5a4-a6d8095a4c16", "assumed": true, "ascendantuuid": "9fc0d602-3a23-4ce9-b8eb-216e58c23cb6", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c9e8265f-376e-454c-a97b-aff7a2e3cf3d', 'INSERT', '{"uuid": "c9e8265f-376e-454c-a97b-aff7a2e3cf3d", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "46a6fc92-c738-40d2-be20-7762997fdd21", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '313114d1-83cc-4289-959b-e5068b98e0ea', 'INSERT', '{"uuid": "313114d1-83cc-4289-959b-e5068b98e0ea", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "80da5984-53fc-4439-a4b2-2aa030416ddf", "grantedbyroleuuid": null, "grantedbytriggerof": "a13af5de-4315-46dd-ae08-427ea72b35a0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "a13af5de-4315-46dd-ae08-427ea72b35a0", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'INSERT', '{"uuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc", "serialid": 217, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ab127630-3367-4898-b0d7-f3ef0f6fb7cf', 'INSERT', '{"op": "DELETE", "uuid": "ab127630-3367-4898-b0d7-f3ef0f6fb7cf", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd114921e-f2b3-4530-aeac-c318b0456251', 'INSERT', '{"uuid": "d114921e-f2b3-4530-aeac-c318b0456251", "assumed": true, "ascendantuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "descendantuuid": "ab127630-3367-4898-b0d7-f3ef0f6fb7cf", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '549a494a-cb4c-4b9e-ae81-c386e0cd0ab1', 'INSERT', '{"uuid": "549a494a-cb4c-4b9e-ae81-c386e0cd0ab1", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c48c846e-f9c3-43c7-adea-e54cddfe9f2a', 'INSERT', '{"uuid": "c48c846e-f9c3-43c7-adea-e54cddfe9f2a", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "grantedbyroleuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5927cb7b-54a9-429d-a229-d3ab87cccecb', 'INSERT', '{"uuid": "5927cb7b-54a9-429d-a229-d3ab87cccecb", "roletype": "ADMIN", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '53f0c6bb-a76b-4f8d-81f9-a476c9106436', 'INSERT', '{"op": "UPDATE", "uuid": "53f0c6bb-a76b-4f8d-81f9-a476c9106436", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '01aa4b8c-b7d7-446b-80a8-d2ed6eaeb321', 'INSERT', '{"uuid": "01aa4b8c-b7d7-446b-80a8-d2ed6eaeb321", "assumed": true, "ascendantuuid": "5927cb7b-54a9-429d-a229-d3ab87cccecb", "descendantuuid": "53f0c6bb-a76b-4f8d-81f9-a476c9106436", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dd21baf1-92df-4d7b-9b61-ac7870a870a5', 'INSERT', '{"uuid": "dd21baf1-92df-4d7b-9b61-ac7870a870a5", "assumed": true, "ascendantuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "descendantuuid": "5927cb7b-54a9-429d-a229-d3ab87cccecb", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b2c4c782-4afe-4518-8c92-0de8c70b70b2', 'INSERT', '{"uuid": "b2c4c782-4afe-4518-8c92-0de8c70b70b2", "roletype": "AGENT", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'db27b1dc-0c50-4cf4-a029-1496adfdbcd0', 'INSERT', '{"uuid": "db27b1dc-0c50-4cf4-a029-1496adfdbcd0", "assumed": true, "ascendantuuid": "5927cb7b-54a9-429d-a229-d3ab87cccecb", "descendantuuid": "b2c4c782-4afe-4518-8c92-0de8c70b70b2", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5a04d74f-230c-451d-ad05-3f08d0e95b0b', 'INSERT', '{"uuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "roletype": "TENANT", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '88d7ad95-2568-4cfe-8f1c-e09ac9fe8983', 'INSERT', '{"op": "SELECT", "uuid": "88d7ad95-2568-4cfe-8f1c-e09ac9fe8983", "objectuuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd9dc0aac-67e0-4844-a34f-5f5485f9fb49', 'INSERT', '{"uuid": "d9dc0aac-67e0-4844-a34f-5f5485f9fb49", "assumed": true, "ascendantuuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "descendantuuid": "88d7ad95-2568-4cfe-8f1c-e09ac9fe8983", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0b50edc0-4338-44b7-8053-be59f47bf734', 'INSERT', '{"uuid": "0b50edc0-4338-44b7-8053-be59f47bf734", "assumed": true, "ascendantuuid": "4241127c-1c6d-41b4-9350-3aa73785f6c5", "descendantuuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '31f4ead0-bcc1-4092-a334-0252cb746d85', 'INSERT', '{"uuid": "31f4ead0-bcc1-4092-a334-0252cb746d85", "assumed": true, "ascendantuuid": "b2c4c782-4afe-4518-8c92-0de8c70b70b2", "descendantuuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bca29c27-e651-4eaa-823b-e6f257666696', 'INSERT', '{"uuid": "bca29c27-e651-4eaa-823b-e6f257666696", "assumed": true, "ascendantuuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "descendantuuid": "206fcdf2-c22e-480f-9029-42183cc2990e", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '03d88972-e76d-48da-8474-86285c42fb0a', 'INSERT', '{"uuid": "03d88972-e76d-48da-8474-86285c42fb0a", "assumed": true, "ascendantuuid": "5a04d74f-230c-451d-ad05-3f08d0e95b0b", "descendantuuid": "bdeffe17-405f-4ad0-8131-82728ea0e382", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '020a2ccd-31a8-4a54-8dbe-2acbd6bac42f', 'INSERT', '{"uuid": "020a2ccd-31a8-4a54-8dbe-2acbd6bac42f", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "b2c4c782-4afe-4518-8c92-0de8c70b70b2", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '01125877-8fa2-42f1-a7df-a0dc6e7a6789', 'INSERT', '{"uuid": "01125877-8fa2-42f1-a7df-a0dc6e7a6789", "assumed": true, "ascendantuuid": "1373e547-4804-4c8d-9014-ce51c65f3a06", "descendantuuid": "201bce64-1c53-4047-bfd3-1892e4bb545f", "grantedbyroleuuid": null, "grantedbytriggerof": "cea1bd90-a42c-4cbf-97c3-33c134537bfc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "cea1bd90-a42c-4cbf-97c3-33c134537bfc", "version": 0, "anchoruuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "holderuuid": "a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763", "contactuuid": "4997dce8-4927-4a10-a7b3-16c574eb79c9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'INSERT', '{"uuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76", "serialid": 218, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '32326817-2750-452c-8898-bcb42c36d85f', 'INSERT', '{"uuid": "32326817-2750-452c-8898-bcb42c36d85f", "roletype": "OWNER", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd', 'INSERT', '{"op": "DELETE", "uuid": "dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4ea51bc6-c651-4d38-bf2a-ab9686d376ca', 'INSERT', '{"uuid": "4ea51bc6-c651-4d38-bf2a-ab9686d376ca", "assumed": true, "ascendantuuid": "32326817-2750-452c-8898-bcb42c36d85f", "descendantuuid": "dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '282e731f-a9ff-4f44-9c93-431614440eb3', 'INSERT', '{"uuid": "282e731f-a9ff-4f44-9c93-431614440eb3", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "32326817-2750-452c-8898-bcb42c36d85f", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8ed063cd-8a99-4619-913e-961b3c5d538b', 'INSERT', '{"uuid": "8ed063cd-8a99-4619-913e-961b3c5d538b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "32326817-2750-452c-8898-bcb42c36d85f", "grantedbyroleuuid": "32326817-2750-452c-8898-bcb42c36d85f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'f7c2a405-965c-48a4-aecb-4312952d072e', 'INSERT', '{"uuid": "f7c2a405-965c-48a4-aecb-4312952d072e", "roletype": "ADMIN", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '138ab6b6-1b04-4565-bbcf-db30047e0050', 'INSERT', '{"op": "UPDATE", "uuid": "138ab6b6-1b04-4565-bbcf-db30047e0050", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '696f7628-61c5-4406-820d-e85d8774e048', 'INSERT', '{"uuid": "696f7628-61c5-4406-820d-e85d8774e048", "assumed": true, "ascendantuuid": "f7c2a405-965c-48a4-aecb-4312952d072e", "descendantuuid": "138ab6b6-1b04-4565-bbcf-db30047e0050", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '803c73ee-d210-430d-939d-47e2ec8b4bf0', 'INSERT', '{"uuid": "803c73ee-d210-430d-939d-47e2ec8b4bf0", "assumed": true, "ascendantuuid": "32326817-2750-452c-8898-bcb42c36d85f", "descendantuuid": "f7c2a405-965c-48a4-aecb-4312952d072e", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a67d167a-e0da-4fe0-b2a1-cc320687f44a', 'INSERT', '{"uuid": "a67d167a-e0da-4fe0-b2a1-cc320687f44a", "roletype": "AGENT", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dd56533a-5068-4349-837b-7847a26884b0', 'INSERT', '{"uuid": "dd56533a-5068-4349-837b-7847a26884b0", "assumed": true, "ascendantuuid": "f7c2a405-965c-48a4-aecb-4312952d072e", "descendantuuid": "a67d167a-e0da-4fe0-b2a1-cc320687f44a", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ab46de32-5a21-4029-b5c2-517f6d6002c3', 'INSERT', '{"uuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "roletype": "TENANT", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'beec505c-c47c-46ff-bdb5-7fe04a5595c6', 'INSERT', '{"op": "SELECT", "uuid": "beec505c-c47c-46ff-bdb5-7fe04a5595c6", "objectuuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cc35556d-69d7-40f7-9d44-103a60e2d871', 'INSERT', '{"uuid": "cc35556d-69d7-40f7-9d44-103a60e2d871", "assumed": true, "ascendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "descendantuuid": "beec505c-c47c-46ff-bdb5-7fe04a5595c6", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '41500a4e-22af-47f9-a4f4-8af1b28c4c33', 'INSERT', '{"uuid": "41500a4e-22af-47f9-a4f4-8af1b28c4c33", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6d9a0688-78d3-499e-89cb-3cec3597c28b', 'INSERT', '{"uuid": "6d9a0688-78d3-499e-89cb-3cec3597c28b", "assumed": true, "ascendantuuid": "a67d167a-e0da-4fe0-b2a1-cc320687f44a", "descendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2d444fb7-5554-4721-ba46-9b3d7fa1255b', 'INSERT', '{"uuid": "2d444fb7-5554-4721-ba46-9b3d7fa1255b", "assumed": true, "ascendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "descendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5b99af89-725d-472e-996f-8a0cabbddef1', 'INSERT', '{"uuid": "5b99af89-725d-472e-996f-8a0cabbddef1", "assumed": true, "ascendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c3376d95-4f15-4c1d-94a5-1cb9ecaa819d', 'INSERT', '{"uuid": "c3376d95-4f15-4c1d-94a5-1cb9ecaa819d", "assumed": true, "ascendantuuid": "ab46de32-5a21-4029-b5c2-517f6d6002c3", "descendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd21c8c1e-b2f3-4aa6-8e1d-15fdbaaf521e', 'INSERT', '{"uuid": "d21c8c1e-b2f3-4aa6-8e1d-15fdbaaf521e", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "a67d167a-e0da-4fe0-b2a1-cc320687f44a", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e1ab8227-6ba0-4a77-a029-625d58c33d7e', 'INSERT', '{"uuid": "e1ab8227-6ba0-4a77-a029-625d58c33d7e", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "32326817-2750-452c-8898-bcb42c36d85f", "grantedbyroleuuid": null, "grantedbytriggerof": "fac4bfec-9f0b-427f-b032-ca54188d0a76"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "fac4bfec-9f0b-427f-b032-ca54188d0a76", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "contactuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'INSERT', '{"uuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3", "serialid": 219, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd5048fcc-cb35-4f37-bfdc-611473026b50', 'INSERT', '{"uuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "roletype": "OWNER", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ebf101f3-6206-4cd7-a5df-276dcec51cba', 'INSERT', '{"op": "DELETE", "uuid": "ebf101f3-6206-4cd7-a5df-276dcec51cba", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '711505a2-74a7-46e5-bcf7-f78f7abe07c2', 'INSERT', '{"uuid": "711505a2-74a7-46e5-bcf7-f78f7abe07c2", "assumed": true, "ascendantuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "descendantuuid": "ebf101f3-6206-4cd7-a5df-276dcec51cba", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6400872d-bfea-4616-92c5-3a5b9e49b568', 'INSERT', '{"uuid": "6400872d-bfea-4616-92c5-3a5b9e49b568", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1b459f37-35d9-461e-b10f-619a69fd5d1f', 'INSERT', '{"uuid": "1b459f37-35d9-461e-b10f-619a69fd5d1f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "grantedbyroleuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', 'INSERT', '{"uuid": "2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7", "roletype": "ADMIN", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '31faa035-267f-46d2-b9b1-af688c393431', 'INSERT', '{"op": "UPDATE", "uuid": "31faa035-267f-46d2-b9b1-af688c393431", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2bdd1162-d22a-41f1-8d62-76d00859b2dd', 'INSERT', '{"uuid": "2bdd1162-d22a-41f1-8d62-76d00859b2dd", "assumed": true, "ascendantuuid": "2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7", "descendantuuid": "31faa035-267f-46d2-b9b1-af688c393431", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1069eeff-cd63-4704-9fb0-5d90f52e2d1f', 'INSERT', '{"uuid": "1069eeff-cd63-4704-9fb0-5d90f52e2d1f", "assumed": true, "ascendantuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "descendantuuid": "2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '13854f26-4d9d-411f-a6a8-d1cf8c267a32', 'INSERT', '{"uuid": "13854f26-4d9d-411f-a6a8-d1cf8c267a32", "roletype": "AGENT", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0b6a0e6c-a348-4012-afcd-31559085775a', 'INSERT', '{"uuid": "0b6a0e6c-a348-4012-afcd-31559085775a", "assumed": true, "ascendantuuid": "2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7", "descendantuuid": "13854f26-4d9d-411f-a6a8-d1cf8c267a32", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '44900785-555c-468f-9aa1-277c191fc3a6', 'INSERT', '{"uuid": "44900785-555c-468f-9aa1-277c191fc3a6", "roletype": "TENANT", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '2b33fc20-f3b2-474c-9d9e-40be8240e900', 'INSERT', '{"op": "SELECT", "uuid": "2b33fc20-f3b2-474c-9d9e-40be8240e900", "objectuuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3fa17011-0e90-454f-943c-f287b530fb2a', 'INSERT', '{"uuid": "3fa17011-0e90-454f-943c-f287b530fb2a", "assumed": true, "ascendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "descendantuuid": "2b33fc20-f3b2-474c-9d9e-40be8240e900", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '79f93e0c-49f6-4906-a2b8-d95b28c23d9f', 'INSERT', '{"uuid": "79f93e0c-49f6-4906-a2b8-d95b28c23d9f", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9b98cf31-9486-4214-a564-1f60b7a71abb', 'INSERT', '{"uuid": "9b98cf31-9486-4214-a564-1f60b7a71abb", "assumed": true, "ascendantuuid": "13854f26-4d9d-411f-a6a8-d1cf8c267a32", "descendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5e524f54-2607-45cd-a168-6e9d84211128', 'INSERT', '{"uuid": "5e524f54-2607-45cd-a168-6e9d84211128", "assumed": true, "ascendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "descendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '05854007-d696-4479-a4fe-abece95d2523', 'INSERT', '{"uuid": "05854007-d696-4479-a4fe-abece95d2523", "assumed": true, "ascendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a23ef302-960c-4bfb-885e-116acbddeaba', 'INSERT', '{"uuid": "a23ef302-960c-4bfb-885e-116acbddeaba", "assumed": true, "ascendantuuid": "44900785-555c-468f-9aa1-277c191fc3a6", "descendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ba50a550-d607-4a56-94a9-e41246052b1e', 'INSERT', '{"uuid": "ba50a550-d607-4a56-94a9-e41246052b1e", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "13854f26-4d9d-411f-a6a8-d1cf8c267a32", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dc55d2f6-b265-44bb-a98e-b7c3592e3291', 'INSERT', '{"uuid": "dc55d2f6-b265-44bb-a98e-b7c3592e3291", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "d5048fcc-cb35-4f37-bfdc-611473026b50", "grantedbyroleuuid": null, "grantedbytriggerof": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "867a7a28-0ad7-4310-b7de-3d5615d0bfa3", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "contactuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'INSERT', '{"uuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453", "serialid": 220, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'a24b3dcc-92b3-475f-8741-4399f604e189', 'INSERT', '{"uuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "roletype": "OWNER", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '36c7d299-20b9-47b4-a2ed-bd7031ad3dd1', 'INSERT', '{"op": "DELETE", "uuid": "36c7d299-20b9-47b4-a2ed-bd7031ad3dd1", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dbe1cefb-01f0-4b91-8cb0-6e2c52397406', 'INSERT', '{"uuid": "dbe1cefb-01f0-4b91-8cb0-6e2c52397406", "assumed": true, "ascendantuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "descendantuuid": "36c7d299-20b9-47b4-a2ed-bd7031ad3dd1", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b644db95-825b-45ad-9154-7c6eb6ff1acd', 'INSERT', '{"uuid": "b644db95-825b-45ad-9154-7c6eb6ff1acd", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4755567d-e545-4f6d-b64a-963637a12b87', 'INSERT', '{"uuid": "4755567d-e545-4f6d-b64a-963637a12b87", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "grantedbyroleuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1d6da0f9-048c-4b62-bedd-5f4d4d35b284', 'INSERT', '{"uuid": "1d6da0f9-048c-4b62-bedd-5f4d4d35b284", "roletype": "ADMIN", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '95ad7ff4-f585-48c5-945a-1a87c3bb2229', 'INSERT', '{"op": "UPDATE", "uuid": "95ad7ff4-f585-48c5-945a-1a87c3bb2229", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '450d6656-4d24-44d4-b9ce-7423e413dbfb', 'INSERT', '{"uuid": "450d6656-4d24-44d4-b9ce-7423e413dbfb", "assumed": true, "ascendantuuid": "1d6da0f9-048c-4b62-bedd-5f4d4d35b284", "descendantuuid": "95ad7ff4-f585-48c5-945a-1a87c3bb2229", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '6479f241-dfad-499f-bc9e-45ccfa2f19eb', 'INSERT', '{"uuid": "6479f241-dfad-499f-bc9e-45ccfa2f19eb", "assumed": true, "ascendantuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "descendantuuid": "1d6da0f9-048c-4b62-bedd-5f4d4d35b284", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', 'INSERT', '{"uuid": "33bff6f5-22a5-4a5c-bcf1-1e3003bcf530", "roletype": "AGENT", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '76b61779-3f11-44af-aab5-48fa969c9a5b', 'INSERT', '{"uuid": "76b61779-3f11-44af-aab5-48fa969c9a5b", "assumed": true, "ascendantuuid": "1d6da0f9-048c-4b62-bedd-5f4d4d35b284", "descendantuuid": "33bff6f5-22a5-4a5c-bcf1-1e3003bcf530", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'eebc57f5-8fbd-4665-9328-78b0a6600478', 'INSERT', '{"uuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "roletype": "TENANT", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '1be5be35-a23a-4f02-967b-f4a7237f482a', 'INSERT', '{"op": "SELECT", "uuid": "1be5be35-a23a-4f02-967b-f4a7237f482a", "objectuuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f3c72143-eeca-460a-a7cc-6f9220c810af', 'INSERT', '{"uuid": "f3c72143-eeca-460a-a7cc-6f9220c810af", "assumed": true, "ascendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "descendantuuid": "1be5be35-a23a-4f02-967b-f4a7237f482a", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a16d0761-a5ec-4dcb-8921-41d145e326dd', 'INSERT', '{"uuid": "a16d0761-a5ec-4dcb-8921-41d145e326dd", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3fe5ffb0-c3a5-45b6-9f8f-25c200062b8d', 'INSERT', '{"uuid": "3fe5ffb0-c3a5-45b6-9f8f-25c200062b8d", "assumed": true, "ascendantuuid": "33bff6f5-22a5-4a5c-bcf1-1e3003bcf530", "descendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fbb0d745-15bc-4e97-a72d-383ff3ce3b91', 'INSERT', '{"uuid": "fbb0d745-15bc-4e97-a72d-383ff3ce3b91", "assumed": true, "ascendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "descendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5205f110-721f-4e35-a47b-94b36cf3c7f2', 'INSERT', '{"uuid": "5205f110-721f-4e35-a47b-94b36cf3c7f2", "assumed": true, "ascendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '97c8d585-7e82-439a-b062-a010baf72200', 'INSERT', '{"uuid": "97c8d585-7e82-439a-b062-a010baf72200", "assumed": true, "ascendantuuid": "eebc57f5-8fbd-4665-9328-78b0a6600478", "descendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9b9e5987-ef87-43a0-ab02-aa74a30a81a8', 'INSERT', '{"uuid": "9b9e5987-ef87-43a0-ab02-aa74a30a81a8", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "33bff6f5-22a5-4a5c-bcf1-1e3003bcf530", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b66437d8-25cc-48f6-9fed-56ebb854d5dd', 'INSERT', '{"uuid": "b66437d8-25cc-48f6-9fed-56ebb854d5dd", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "a24b3dcc-92b3-475f-8741-4399f604e189", "grantedbyroleuuid": null, "grantedbytriggerof": "18124f89-8ce6-4813-8efe-3ed47b7eb453"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "18124f89-8ce6-4813-8efe-3ed47b7eb453", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "contactuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'INSERT', '{"uuid": "cbda6432-b849-4787-84ab-88e680dbfa72", "serialid": 221, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'cf88430b-e0a1-431e-9912-098933e6771c', 'INSERT', '{"uuid": "cf88430b-e0a1-431e-9912-098933e6771c", "roletype": "OWNER", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'eb9181ce-7b72-4ed9-93aa-49eb66db32eb', 'INSERT', '{"op": "DELETE", "uuid": "eb9181ce-7b72-4ed9-93aa-49eb66db32eb", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f47d3670-a996-43b9-ac56-bc64167bf8e9', 'INSERT', '{"uuid": "f47d3670-a996-43b9-ac56-bc64167bf8e9", "assumed": true, "ascendantuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "descendantuuid": "eb9181ce-7b72-4ed9-93aa-49eb66db32eb", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bf388cd5-754d-4a67-a900-74c8ae8d0763', 'INSERT', '{"uuid": "bf388cd5-754d-4a67-a900-74c8ae8d0763", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '04ee36e9-7e18-455b-bec1-f850ccc4fa03', 'INSERT', '{"uuid": "04ee36e9-7e18-455b-bec1-f850ccc4fa03", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "grantedbyroleuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', 'INSERT', '{"uuid": "5f9120b4-56a8-4a73-96bb-2fd1edcfbf43", "roletype": "ADMIN", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f9768956-c483-4cf1-852d-b6767a8d96cc', 'INSERT', '{"op": "UPDATE", "uuid": "f9768956-c483-4cf1-852d-b6767a8d96cc", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b8521069-8984-42f5-ad51-92f0bf13da89', 'INSERT', '{"uuid": "b8521069-8984-42f5-ad51-92f0bf13da89", "assumed": true, "ascendantuuid": "5f9120b4-56a8-4a73-96bb-2fd1edcfbf43", "descendantuuid": "f9768956-c483-4cf1-852d-b6767a8d96cc", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '832b6b8c-1734-43e9-b1a9-15b3fbf6bf25', 'INSERT', '{"uuid": "832b6b8c-1734-43e9-b1a9-15b3fbf6bf25", "assumed": true, "ascendantuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "descendantuuid": "5f9120b4-56a8-4a73-96bb-2fd1edcfbf43", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '12a30425-8c0e-4e0d-b9ae-da96e2776217', 'INSERT', '{"uuid": "12a30425-8c0e-4e0d-b9ae-da96e2776217", "roletype": "AGENT", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '86891920-aabe-4630-a89e-4bce541e351c', 'INSERT', '{"uuid": "86891920-aabe-4630-a89e-4bce541e351c", "assumed": true, "ascendantuuid": "5f9120b4-56a8-4a73-96bb-2fd1edcfbf43", "descendantuuid": "12a30425-8c0e-4e0d-b9ae-da96e2776217", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '917b274c-a8da-403c-9ac2-5be884f4a47f', 'INSERT', '{"uuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "roletype": "TENANT", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'a37b1549-de63-4830-81ab-816dbea5ddf9', 'INSERT', '{"op": "SELECT", "uuid": "a37b1549-de63-4830-81ab-816dbea5ddf9", "objectuuid": "cbda6432-b849-4787-84ab-88e680dbfa72", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'df32434f-3f53-4421-9a54-91a734df8b09', 'INSERT', '{"uuid": "df32434f-3f53-4421-9a54-91a734df8b09", "assumed": true, "ascendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "descendantuuid": "a37b1549-de63-4830-81ab-816dbea5ddf9", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'da816bce-54d8-4bfd-be4a-107ff0e28ae9', 'INSERT', '{"uuid": "da816bce-54d8-4bfd-be4a-107ff0e28ae9", "assumed": true, "ascendantuuid": "d3aa37e9-88d7-4099-8fa8-0bb25f6db328", "descendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7b905937-6603-4649-b2fc-f3c294a5506e', 'INSERT', '{"uuid": "7b905937-6603-4649-b2fc-f3c294a5506e", "assumed": true, "ascendantuuid": "12a30425-8c0e-4e0d-b9ae-da96e2776217", "descendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '601bf4bf-ed9e-4d04-bfcc-f50e7d9720fc', 'INSERT', '{"uuid": "601bf4bf-ed9e-4d04-bfcc-f50e7d9720fc", "assumed": true, "ascendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "descendantuuid": "3f62e7fa-ffed-4a15-88c2-2d4a231c7db0", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd18a77de-532d-44d3-8759-87b41db913e9', 'INSERT', '{"uuid": "d18a77de-532d-44d3-8759-87b41db913e9", "assumed": true, "ascendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "descendantuuid": "e97003a9-9162-4142-8d08-814e6c8fabd9", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8629ae4f-a025-4264-a2ad-24cdb50f24fd', 'INSERT', '{"uuid": "8629ae4f-a025-4264-a2ad-24cdb50f24fd", "assumed": true, "ascendantuuid": "917b274c-a8da-403c-9ac2-5be884f4a47f", "descendantuuid": "96d81c1c-7d32-4b58-b7d3-7d7d88d250b7", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ec402129-b125-44df-8dd1-919c43709a99', 'INSERT', '{"uuid": "ec402129-b125-44df-8dd1-919c43709a99", "assumed": true, "ascendantuuid": "957da54d-43eb-45d5-a3c4-34976d178bf3", "descendantuuid": "12a30425-8c0e-4e0d-b9ae-da96e2776217", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b986a66d-e06f-4c7c-a71b-b8ba4dd9ffd8', 'INSERT', '{"uuid": "b986a66d-e06f-4c7c-a71b-b8ba4dd9ffd8", "assumed": true, "ascendantuuid": "95f09796-be4b-4b39-a759-a1f5a4fe54fb", "descendantuuid": "cf88430b-e0a1-431e-9912-098933e6771c", "grantedbyroleuuid": null, "grantedbytriggerof": "cbda6432-b849-4787-84ab-88e680dbfa72"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "cbda6432-b849-4787-84ab-88e680dbfa72", "version": 0, "anchoruuid": "38cc5d59-085f-449e-aeb3-439febbabd9b", "holderuuid": "d7485220-e4f2-4683-9e84-7728a2ef4ebf", "contactuuid": "9dcab961-1465-40e3-8d83-357b22af2674"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'INSERT', '{"uuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34", "serialid": 222, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7bddc04e-775b-48f6-acb1-c1c9e638f836', 'INSERT', '{"uuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "roletype": "OWNER", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '283a7da7-7cf5-489b-bd81-a370cd694f3a', 'INSERT', '{"op": "DELETE", "uuid": "283a7da7-7cf5-489b-bd81-a370cd694f3a", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '34b11791-5906-4753-b722-7fa782ef8ef2', 'INSERT', '{"uuid": "34b11791-5906-4753-b722-7fa782ef8ef2", "assumed": true, "ascendantuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "descendantuuid": "283a7da7-7cf5-489b-bd81-a370cd694f3a", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f5db57a6-93dd-4658-b13b-827f28d9ef59', 'INSERT', '{"uuid": "f5db57a6-93dd-4658-b13b-827f28d9ef59", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '75685f6f-2403-40ef-b08b-1625bd699a13', 'INSERT', '{"uuid": "75685f6f-2403-40ef-b08b-1625bd699a13", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "grantedbyroleuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd8668032-3755-4ef6-8ea7-7c34e0109e25', 'INSERT', '{"uuid": "d8668032-3755-4ef6-8ea7-7c34e0109e25", "roletype": "ADMIN", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'fe2d0171-effb-42e9-ad87-d877454fa221', 'INSERT', '{"op": "UPDATE", "uuid": "fe2d0171-effb-42e9-ad87-d877454fa221", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd34d2490-26a3-40dd-8417-faec7508092e', 'INSERT', '{"uuid": "d34d2490-26a3-40dd-8417-faec7508092e", "assumed": true, "ascendantuuid": "d8668032-3755-4ef6-8ea7-7c34e0109e25", "descendantuuid": "fe2d0171-effb-42e9-ad87-d877454fa221", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '75f5c8b1-9e1c-4dbf-85c8-c119cfe29326', 'INSERT', '{"uuid": "75f5c8b1-9e1c-4dbf-85c8-c119cfe29326", "assumed": true, "ascendantuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "descendantuuid": "d8668032-3755-4ef6-8ea7-7c34e0109e25", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9dc88526-27f4-4c56-aef0-740429a8c457', 'INSERT', '{"uuid": "9dc88526-27f4-4c56-aef0-740429a8c457", "roletype": "AGENT", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f93454ce-5594-4cc7-a797-35fc38e745a3', 'INSERT', '{"uuid": "f93454ce-5594-4cc7-a797-35fc38e745a3", "assumed": true, "ascendantuuid": "d8668032-3755-4ef6-8ea7-7c34e0109e25", "descendantuuid": "9dc88526-27f4-4c56-aef0-740429a8c457", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'INSERT', '{"uuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "roletype": "TENANT", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c4f3311d-618c-4e1b-9e0e-925465a5f932', 'INSERT', '{"op": "SELECT", "uuid": "c4f3311d-618c-4e1b-9e0e-925465a5f932", "objectuuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '541ddc9b-d0eb-4f83-a647-f4047f2135db', 'INSERT', '{"uuid": "541ddc9b-d0eb-4f83-a647-f4047f2135db", "assumed": true, "ascendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "descendantuuid": "c4f3311d-618c-4e1b-9e0e-925465a5f932", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fb7d467d-75bb-443f-897b-124fa953f729', 'INSERT', '{"uuid": "fb7d467d-75bb-443f-897b-124fa953f729", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a0391c4f-dff7-4778-a463-002d9e935bbd', 'INSERT', '{"uuid": "a0391c4f-dff7-4778-a463-002d9e935bbd", "assumed": true, "ascendantuuid": "9dc88526-27f4-4c56-aef0-740429a8c457", "descendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4652cf4f-b896-4c22-bea8-a0ce0f862fc0', 'INSERT', '{"uuid": "4652cf4f-b896-4c22-bea8-a0ce0f862fc0", "assumed": true, "ascendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "descendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c8c5f426-06e7-4ad2-a82b-048f51ac1beb', 'INSERT', '{"uuid": "c8c5f426-06e7-4ad2-a82b-048f51ac1beb", "assumed": true, "ascendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b043c952-cab2-4c4c-b6b6-668548bac175', 'INSERT', '{"uuid": "b043c952-cab2-4c4c-b6b6-668548bac175", "assumed": true, "ascendantuuid": "67d9bcbb-574f-405a-b48c-f7ccfb9e0a06", "descendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1e109da8-4793-473a-9a19-ec9a228f9eea', 'INSERT', '{"uuid": "1e109da8-4793-473a-9a19-ec9a228f9eea", "assumed": true, "ascendantuuid": "d8668032-3755-4ef6-8ea7-7c34e0109e25", "descendantuuid": "a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c6d9e156-e05a-4104-8be8-16d50b6450f2', 'INSERT', '{"uuid": "c6d9e156-e05a-4104-8be8-16d50b6450f2", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "9dc88526-27f4-4c56-aef0-740429a8c457", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b381a17d-1961-4aec-9ce1-b475906f1ac0', 'INSERT', '{"uuid": "b381a17d-1961-4aec-9ce1-b475906f1ac0", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "7bddc04e-775b-48f6-acb1-c1c9e638f836", "grantedbyroleuuid": null, "grantedbytriggerof": "f3b07a47-e7ac-4fea-850e-1d785edfea34"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'INSERT', '{"mark": null, "type": "REPRESENTATIVE", "uuid": "f3b07a47-e7ac-4fea-850e-1d785edfea34", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "contactuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '4761d35a-2de3-4415-a91d-f53d15162aea', 'INSERT', '{"uuid": "4761d35a-2de3-4415-a91d-f53d15162aea", "serialid": 223, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ec817efa-d1de-4264-91e4-608b736b59fd', 'INSERT', '{"uuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "roletype": "OWNER", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f276aa53-a904-46ec-863b-18e593fd2c3e', 'INSERT', '{"op": "DELETE", "uuid": "f276aa53-a904-46ec-863b-18e593fd2c3e", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9c7f8f52-49c5-4f65-b0e9-2620f0c113bc', 'INSERT', '{"uuid": "9c7f8f52-49c5-4f65-b0e9-2620f0c113bc", "assumed": true, "ascendantuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "descendantuuid": "f276aa53-a904-46ec-863b-18e593fd2c3e", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c2534fb6-fa15-41a5-9d0c-8445406cdd70', 'INSERT', '{"uuid": "c2534fb6-fa15-41a5-9d0c-8445406cdd70", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e22b72b0-fcf6-4b88-9166-2d94b2496746', 'INSERT', '{"uuid": "e22b72b0-fcf6-4b88-9166-2d94b2496746", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "grantedbyroleuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0fae86ec-61fc-4f23-9713-a51f3f49505d', 'INSERT', '{"uuid": "0fae86ec-61fc-4f23-9713-a51f3f49505d", "roletype": "ADMIN", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '17df9716-97f3-4970-813b-d144044d718f', 'INSERT', '{"op": "UPDATE", "uuid": "17df9716-97f3-4970-813b-d144044d718f", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b641e4cf-6ea1-474e-b301-1f468f0373ba', 'INSERT', '{"uuid": "b641e4cf-6ea1-474e-b301-1f468f0373ba", "assumed": true, "ascendantuuid": "0fae86ec-61fc-4f23-9713-a51f3f49505d", "descendantuuid": "17df9716-97f3-4970-813b-d144044d718f", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f61ec4c4-d206-4ee7-8722-062ba7b07b79', 'INSERT', '{"uuid": "f61ec4c4-d206-4ee7-8722-062ba7b07b79", "assumed": true, "ascendantuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "descendantuuid": "0fae86ec-61fc-4f23-9713-a51f3f49505d", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '57070af3-92a3-4285-b6e8-8644989f8fce', 'INSERT', '{"uuid": "57070af3-92a3-4285-b6e8-8644989f8fce", "roletype": "AGENT", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd629a3a2-6161-48ce-a520-646f49c89e15', 'INSERT', '{"uuid": "d629a3a2-6161-48ce-a520-646f49c89e15", "assumed": true, "ascendantuuid": "0fae86ec-61fc-4f23-9713-a51f3f49505d", "descendantuuid": "57070af3-92a3-4285-b6e8-8644989f8fce", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '087d73fd-3c94-4735-b59a-189efda4a80e', 'INSERT', '{"uuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "roletype": "TENANT", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '82813289-dc57-4c85-8c73-8e7f71966bbc', 'INSERT', '{"op": "SELECT", "uuid": "82813289-dc57-4c85-8c73-8e7f71966bbc", "objectuuid": "4761d35a-2de3-4415-a91d-f53d15162aea", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4a55cc2e-66f0-4d08-aff1-67405a9ae037', 'INSERT', '{"uuid": "4a55cc2e-66f0-4d08-aff1-67405a9ae037", "assumed": true, "ascendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "descendantuuid": "82813289-dc57-4c85-8c73-8e7f71966bbc", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9c2ddc22-9324-4687-bd2c-6b59c22dc953', 'INSERT', '{"uuid": "9c2ddc22-9324-4687-bd2c-6b59c22dc953", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bf80cf56-1b0d-4a25-8b71-a86863d888de', 'INSERT', '{"uuid": "bf80cf56-1b0d-4a25-8b71-a86863d888de", "assumed": true, "ascendantuuid": "57070af3-92a3-4285-b6e8-8644989f8fce", "descendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'afda5e1d-620c-4bff-a0cd-f321fb6b8580', 'INSERT', '{"uuid": "afda5e1d-620c-4bff-a0cd-f321fb6b8580", "assumed": true, "ascendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "descendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a9a302d7-c9e3-4025-8c2a-a0007c270277', 'INSERT', '{"uuid": "a9a302d7-c9e3-4025-8c2a-a0007c270277", "assumed": true, "ascendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1bd5d7d2-6de0-4b56-b53a-86b113907e3c', 'INSERT', '{"uuid": "1bd5d7d2-6de0-4b56-b53a-86b113907e3c", "assumed": true, "ascendantuuid": "087d73fd-3c94-4735-b59a-189efda4a80e", "descendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1c75fd2c-8206-4872-8c63-78da5890be1b', 'INSERT', '{"uuid": "1c75fd2c-8206-4872-8c63-78da5890be1b", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "57070af3-92a3-4285-b6e8-8644989f8fce", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fea36da2-ee0d-4001-8c9f-e7e17f3654c3', 'INSERT', '{"uuid": "fea36da2-ee0d-4001-8c9f-e7e17f3654c3", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "ec817efa-d1de-4264-91e4-608b736b59fd", "grantedbyroleuuid": null, "grantedbytriggerof": "4761d35a-2de3-4415-a91d-f53d15162aea"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '4761d35a-2de3-4415-a91d-f53d15162aea', 'INSERT', '{"mark": "generalversammlung", "type": "SUBSCRIBER", "uuid": "4761d35a-2de3-4415-a91d-f53d15162aea", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "contactuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'INSERT', '{"uuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272", "serialid": 224, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '6d7c3c90-cec2-472a-b143-3f730bb92d11', 'INSERT', '{"uuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "roletype": "OWNER", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '54ab8484-47e5-432c-afd4-7791561e09a7', 'INSERT', '{"op": "DELETE", "uuid": "54ab8484-47e5-432c-afd4-7791561e09a7", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0a6c8d17-c23e-4caa-8966-9911542ccd0f', 'INSERT', '{"uuid": "0a6c8d17-c23e-4caa-8966-9911542ccd0f", "assumed": true, "ascendantuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "descendantuuid": "54ab8484-47e5-432c-afd4-7791561e09a7", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '688a5723-8b60-4795-8993-7879f8fbe8f2', 'INSERT', '{"uuid": "688a5723-8b60-4795-8993-7879f8fbe8f2", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '459eda2a-d5c1-4328-aee8-952a50b2d3a1', 'INSERT', '{"uuid": "459eda2a-d5c1-4328-aee8-952a50b2d3a1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "grantedbyroleuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '0e9f7adf-90bd-4ec9-bf40-82963cd51410', 'INSERT', '{"uuid": "0e9f7adf-90bd-4ec9-bf40-82963cd51410", "roletype": "ADMIN", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '846820c5-9147-4f79-9b06-62110498d191', 'INSERT', '{"op": "UPDATE", "uuid": "846820c5-9147-4f79-9b06-62110498d191", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9d5a0b69-d7af-41a4-9d64-847c56a45de8', 'INSERT', '{"uuid": "9d5a0b69-d7af-41a4-9d64-847c56a45de8", "assumed": true, "ascendantuuid": "0e9f7adf-90bd-4ec9-bf40-82963cd51410", "descendantuuid": "846820c5-9147-4f79-9b06-62110498d191", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fe8a68e5-e01e-4402-b135-5b94ce2f6d89', 'INSERT', '{"uuid": "fe8a68e5-e01e-4402-b135-5b94ce2f6d89", "assumed": true, "ascendantuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "descendantuuid": "0e9f7adf-90bd-4ec9-bf40-82963cd51410", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', 'INSERT', '{"uuid": "54c33e22-f4c5-45c4-a86d-fb8ed86afbf7", "roletype": "AGENT", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd3743c67-560e-4f22-9090-32a0c779b346', 'INSERT', '{"uuid": "d3743c67-560e-4f22-9090-32a0c779b346", "assumed": true, "ascendantuuid": "0e9f7adf-90bd-4ec9-bf40-82963cd51410", "descendantuuid": "54c33e22-f4c5-45c4-a86d-fb8ed86afbf7", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'd5007585-6703-493f-a24d-f99f4fb1b09c', 'INSERT', '{"uuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "roletype": "TENANT", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7cfdc7ad-f7bc-42d1-9b72-ce871adf665b', 'INSERT', '{"op": "SELECT", "uuid": "7cfdc7ad-f7bc-42d1-9b72-ce871adf665b", "objectuuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '84b5def8-230d-4b1d-b2f2-2789341c1eaf', 'INSERT', '{"uuid": "84b5def8-230d-4b1d-b2f2-2789341c1eaf", "assumed": true, "ascendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "descendantuuid": "7cfdc7ad-f7bc-42d1-9b72-ce871adf665b", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8a643ea9-487d-4bc5-bee0-394c5c62d309', 'INSERT', '{"uuid": "8a643ea9-487d-4bc5-bee0-394c5c62d309", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dbf2917f-3aa0-405f-b6bb-2d0e7f080cbb', 'INSERT', '{"uuid": "dbf2917f-3aa0-405f-b6bb-2d0e7f080cbb", "assumed": true, "ascendantuuid": "54c33e22-f4c5-45c4-a86d-fb8ed86afbf7", "descendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f0cdc2ac-fe93-44f2-8f07-72f307737241', 'INSERT', '{"uuid": "f0cdc2ac-fe93-44f2-8f07-72f307737241", "assumed": true, "ascendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "descendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '34c5eff9-432f-4da6-af1e-9944aa43a831', 'INSERT', '{"uuid": "34c5eff9-432f-4da6-af1e-9944aa43a831", "assumed": true, "ascendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '493c6d1d-d431-4d2f-8dc1-560810ef9f70', 'INSERT', '{"uuid": "493c6d1d-d431-4d2f-8dc1-560810ef9f70", "assumed": true, "ascendantuuid": "d5007585-6703-493f-a24d-f99f4fb1b09c", "descendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fed98897-4115-4492-ba35-be1025525650', 'INSERT', '{"uuid": "fed98897-4115-4492-ba35-be1025525650", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "54c33e22-f4c5-45c4-a86d-fb8ed86afbf7", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8db51064-73b9-4a5c-8051-5ab121cd52c5', 'INSERT', '{"uuid": "8db51064-73b9-4a5c-8051-5ab121cd52c5", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "6d7c3c90-cec2-472a-b143-3f730bb92d11", "grantedbyroleuuid": null, "grantedbytriggerof": "04c248f9-20e0-42e1-adf3-b24d2ff7a272"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'INSERT', '{"mark": "members-announce", "type": "SUBSCRIBER", "uuid": "04c248f9-20e0-42e1-adf3-b24d2ff7a272", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "contactuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'INSERT', '{"uuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6", "serialid": 225, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '330cd455-c002-4416-8074-feb6c6b4849d', 'INSERT', '{"uuid": "330cd455-c002-4416-8074-feb6c6b4849d", "roletype": "OWNER", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b0f7eade-7384-445b-9f6a-76f19007d9b7', 'INSERT', '{"op": "DELETE", "uuid": "b0f7eade-7384-445b-9f6a-76f19007d9b7", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '5e2c18c6-89af-4344-b9f9-58b2a860eff9', 'INSERT', '{"uuid": "5e2c18c6-89af-4344-b9f9-58b2a860eff9", "assumed": true, "ascendantuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "descendantuuid": "b0f7eade-7384-445b-9f6a-76f19007d9b7", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '58f9a354-5b5f-4740-9314-533ce8e92515', 'INSERT', '{"uuid": "58f9a354-5b5f-4740-9314-533ce8e92515", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd621455c-aa20-4281-aa4f-d06346979700', 'INSERT', '{"uuid": "d621455c-aa20-4281-aa4f-d06346979700", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "grantedbyroleuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e2eddb4e-842b-450a-a9a4-54a3875b33c5', 'INSERT', '{"uuid": "e2eddb4e-842b-450a-a9a4-54a3875b33c5", "roletype": "ADMIN", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '4a4b0f7b-8506-4ed5-be19-7c0baa476c45', 'INSERT', '{"op": "UPDATE", "uuid": "4a4b0f7b-8506-4ed5-be19-7c0baa476c45", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd4007d15-842b-4bb6-8424-02102c1b6610', 'INSERT', '{"uuid": "d4007d15-842b-4bb6-8424-02102c1b6610", "assumed": true, "ascendantuuid": "e2eddb4e-842b-450a-a9a4-54a3875b33c5", "descendantuuid": "4a4b0f7b-8506-4ed5-be19-7c0baa476c45", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e78f06d6-b048-4d2e-b189-c90c3081af1c', 'INSERT', '{"uuid": "e78f06d6-b048-4d2e-b189-c90c3081af1c", "assumed": true, "ascendantuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "descendantuuid": "e2eddb4e-842b-450a-a9a4-54a3875b33c5", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '256a2cac-4d33-46c0-833c-fd12d91af365', 'INSERT', '{"uuid": "256a2cac-4d33-46c0-833c-fd12d91af365", "roletype": "AGENT", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '522ba310-4163-4c47-8afa-f69784d4545e', 'INSERT', '{"uuid": "522ba310-4163-4c47-8afa-f69784d4545e", "assumed": true, "ascendantuuid": "e2eddb4e-842b-450a-a9a4-54a3875b33c5", "descendantuuid": "256a2cac-4d33-46c0-833c-fd12d91af365", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', 'INSERT', '{"uuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "roletype": "TENANT", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '815ba931-a309-42fc-8865-b077937d4bd5', 'INSERT', '{"op": "SELECT", "uuid": "815ba931-a309-42fc-8865-b077937d4bd5", "objectuuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '279aebd0-8e1d-4322-86c4-1b19dfef89e1', 'INSERT', '{"uuid": "279aebd0-8e1d-4322-86c4-1b19dfef89e1", "assumed": true, "ascendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "descendantuuid": "815ba931-a309-42fc-8865-b077937d4bd5", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dfff69c7-ce5b-4b67-a425-2b649e7cec7c', 'INSERT', '{"uuid": "dfff69c7-ce5b-4b67-a425-2b649e7cec7c", "assumed": true, "ascendantuuid": "ba7a634b-c352-418c-a8c0-58918f32f8a7", "descendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '05bef46b-e96c-485d-a6b9-9d80d682da9a', 'INSERT', '{"uuid": "05bef46b-e96c-485d-a6b9-9d80d682da9a", "assumed": true, "ascendantuuid": "256a2cac-4d33-46c0-833c-fd12d91af365", "descendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '54ababde-0fa4-4e1b-973b-ac63cc1f610a', 'INSERT', '{"uuid": "54ababde-0fa4-4e1b-973b-ac63cc1f610a", "assumed": true, "ascendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "descendantuuid": "ed0f7762-a094-4a88-abde-8472da33bcfb", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '67a037de-9171-4712-af63-3d455334e3a6', 'INSERT', '{"uuid": "67a037de-9171-4712-af63-3d455334e3a6", "assumed": true, "ascendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b7527a2d-767e-4282-ace1-499ec24c6346', 'INSERT', '{"uuid": "b7527a2d-767e-4282-ace1-499ec24c6346", "assumed": true, "ascendantuuid": "5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c", "descendantuuid": "b29939d1-67c0-4527-88fd-41812023f402", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7de75775-7af6-43cd-830c-13e8789fd9f2', 'INSERT', '{"uuid": "7de75775-7af6-43cd-830c-13e8789fd9f2", "assumed": true, "ascendantuuid": "2812b2d9-15c6-479c-b59d-bf980f4bc9d7", "descendantuuid": "256a2cac-4d33-46c0-833c-fd12d91af365", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd30e86da-adad-4745-8a48-e5be9b0f9d76', 'INSERT', '{"uuid": "d30e86da-adad-4745-8a48-e5be9b0f9d76", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "330cd455-c002-4416-8074-feb6c6b4849d", "grantedbyroleuuid": null, "grantedbytriggerof": "7113f4da-b942-4f17-97f8-d3fdfd2966c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'INSERT', '{"mark": "members-discussion", "type": "SUBSCRIBER", "uuid": "7113f4da-b942-4f17-97f8-d3fdfd2966c6", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "7c10a7d7-bac2-41e2-a5c0-963e191239a8", "contactuuid": "627a274d-55b0-42e7-963c-8b0cc3e204b4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '4dbf555d-3375-442e-a87d-815d1492af55', 'INSERT', '{"uuid": "4dbf555d-3375-442e-a87d-815d1492af55", "serialid": 226, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '34bbf849-5720-4440-bf30-378dd9748533', 'INSERT', '{"uuid": "34bbf849-5720-4440-bf30-378dd9748533", "roletype": "OWNER", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd7dd1750-2c6a-48b1-bfa7-ad708c3df73a', 'INSERT', '{"op": "DELETE", "uuid": "d7dd1750-2c6a-48b1-bfa7-ad708c3df73a", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc0c3692-931f-47cd-a978-6b047013867e', 'INSERT', '{"uuid": "bc0c3692-931f-47cd-a978-6b047013867e", "assumed": true, "ascendantuuid": "34bbf849-5720-4440-bf30-378dd9748533", "descendantuuid": "d7dd1750-2c6a-48b1-bfa7-ad708c3df73a", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '71496d88-e1c8-4873-af0c-2844c46002e0', 'INSERT', '{"uuid": "71496d88-e1c8-4873-af0c-2844c46002e0", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "34bbf849-5720-4440-bf30-378dd9748533", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a2a50664-25d9-46ab-837d-becb88e61928', 'INSERT', '{"uuid": "a2a50664-25d9-46ab-837d-becb88e61928", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "34bbf849-5720-4440-bf30-378dd9748533", "grantedbyroleuuid": "34bbf849-5720-4440-bf30-378dd9748533", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '4d252783-00e1-4fec-a661-ec1154d98a2c', 'INSERT', '{"uuid": "4d252783-00e1-4fec-a661-ec1154d98a2c", "roletype": "ADMIN", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '20af1fdc-7bf2-4f7c-941d-5294057a2148', 'INSERT', '{"op": "UPDATE", "uuid": "20af1fdc-7bf2-4f7c-941d-5294057a2148", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd029e4df-1abc-450f-992c-f533359f5e8e', 'INSERT', '{"uuid": "d029e4df-1abc-450f-992c-f533359f5e8e", "assumed": true, "ascendantuuid": "4d252783-00e1-4fec-a661-ec1154d98a2c", "descendantuuid": "20af1fdc-7bf2-4f7c-941d-5294057a2148", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7db91226-ca55-49e2-9092-61070d586bc7', 'INSERT', '{"uuid": "7db91226-ca55-49e2-9092-61070d586bc7", "assumed": true, "ascendantuuid": "34bbf849-5720-4440-bf30-378dd9748533", "descendantuuid": "4d252783-00e1-4fec-a661-ec1154d98a2c", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '830e7013-1330-4974-925e-20e142b148fb', 'INSERT', '{"uuid": "830e7013-1330-4974-925e-20e142b148fb", "roletype": "AGENT", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '482c8a90-0346-46dc-967e-bf83a0073a4e', 'INSERT', '{"uuid": "482c8a90-0346-46dc-967e-bf83a0073a4e", "assumed": true, "ascendantuuid": "4d252783-00e1-4fec-a661-ec1154d98a2c", "descendantuuid": "830e7013-1330-4974-925e-20e142b148fb", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', 'INSERT', '{"uuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "roletype": "TENANT", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd0bcff97-900b-4660-9245-993dee9485eb', 'INSERT', '{"op": "SELECT", "uuid": "d0bcff97-900b-4660-9245-993dee9485eb", "objectuuid": "4dbf555d-3375-442e-a87d-815d1492af55", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8af3c1cf-a2be-4bef-855f-795538afc814', 'INSERT', '{"uuid": "8af3c1cf-a2be-4bef-855f-795538afc814", "assumed": true, "ascendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "descendantuuid": "d0bcff97-900b-4660-9245-993dee9485eb", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '41ab30df-d7a0-45d4-9c5c-2ddbc5175fa8', 'INSERT', '{"uuid": "41ab30df-d7a0-45d4-9c5c-2ddbc5175fa8", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'dd0ab251-a266-4d40-8d7a-c313d6b3f980', 'INSERT', '{"uuid": "dd0ab251-a266-4d40-8d7a-c313d6b3f980", "assumed": true, "ascendantuuid": "830e7013-1330-4974-925e-20e142b148fb", "descendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c373196d-e4d9-4972-8993-cb5c1167ec97', 'INSERT', '{"uuid": "c373196d-e4d9-4972-8993-cb5c1167ec97", "assumed": true, "ascendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "descendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '51279ced-5bad-4531-86c3-c589a640dd86', 'INSERT', '{"uuid": "51279ced-5bad-4531-86c3-c589a640dd86", "assumed": true, "ascendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2b72c665-ba86-405a-8ab6-e9afd3404b9b', 'INSERT', '{"uuid": "2b72c665-ba86-405a-8ab6-e9afd3404b9b", "assumed": true, "ascendantuuid": "85b69ad4-c6cb-4ef4-8d96-94abd80c9352", "descendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd822aedb-9ebd-4813-b0f2-f21ba2abfef6', 'INSERT', '{"uuid": "d822aedb-9ebd-4813-b0f2-f21ba2abfef6", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "830e7013-1330-4974-925e-20e142b148fb", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c65c112f-6b3e-49e4-adac-342db3aaec5e', 'INSERT', '{"uuid": "c65c112f-6b3e-49e4-adac-342db3aaec5e", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "34bbf849-5720-4440-bf30-378dd9748533", "grantedbyroleuuid": null, "grantedbytriggerof": "4dbf555d-3375-442e-a87d-815d1492af55"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '4dbf555d-3375-442e-a87d-815d1492af55', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "4dbf555d-3375-442e-a87d-815d1492af55", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "contactuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'INSERT', '{"uuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f", "serialid": 227, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', 'INSERT', '{"uuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "roletype": "OWNER", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '36e09c9c-05d3-46fd-ba19-91e3dbb1ded0', 'INSERT', '{"op": "DELETE", "uuid": "36e09c9c-05d3-46fd-ba19-91e3dbb1ded0", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e3a970d4-3ece-4205-8b85-e5e409b25f1f', 'INSERT', '{"uuid": "e3a970d4-3ece-4205-8b85-e5e409b25f1f", "assumed": true, "ascendantuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "descendantuuid": "36e09c9c-05d3-46fd-ba19-91e3dbb1ded0", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '010c767c-b0b7-4368-974d-e840e9af432e', 'INSERT', '{"uuid": "010c767c-b0b7-4368-974d-e840e9af432e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '68f695bb-bd44-4a4a-8c4c-b2ee85778c8b', 'INSERT', '{"uuid": "68f695bb-bd44-4a4a-8c4c-b2ee85778c8b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "grantedbyroleuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'aab86d81-273f-48e2-91ec-8379a4097dea', 'INSERT', '{"uuid": "aab86d81-273f-48e2-91ec-8379a4097dea", "roletype": "ADMIN", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ae3d0091-aa98-44a3-adbb-2552b6179e97', 'INSERT', '{"op": "UPDATE", "uuid": "ae3d0091-aa98-44a3-adbb-2552b6179e97", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '19026f01-4f3d-4272-9bf5-1f3aa61ee0d1', 'INSERT', '{"uuid": "19026f01-4f3d-4272-9bf5-1f3aa61ee0d1", "assumed": true, "ascendantuuid": "aab86d81-273f-48e2-91ec-8379a4097dea", "descendantuuid": "ae3d0091-aa98-44a3-adbb-2552b6179e97", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f429870b-65ce-4de9-949e-cef531e9b9e6', 'INSERT', '{"uuid": "f429870b-65ce-4de9-949e-cef531e9b9e6", "assumed": true, "ascendantuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "descendantuuid": "aab86d81-273f-48e2-91ec-8379a4097dea", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e16ceaa4-25a8-449a-9d9c-59a87fdc228a', 'INSERT', '{"uuid": "e16ceaa4-25a8-449a-9d9c-59a87fdc228a", "roletype": "AGENT", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '25adbcc6-4ec3-4740-8bc4-95a703509008', 'INSERT', '{"uuid": "25adbcc6-4ec3-4740-8bc4-95a703509008", "assumed": true, "ascendantuuid": "aab86d81-273f-48e2-91ec-8379a4097dea", "descendantuuid": "e16ceaa4-25a8-449a-9d9c-59a87fdc228a", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '5885b073-ed04-4ac7-9f4b-664507df0de1', 'INSERT', '{"uuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "roletype": "TENANT", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '7ac91a3d-9409-471f-b6f6-8f50ea03a292', 'INSERT', '{"op": "SELECT", "uuid": "7ac91a3d-9409-471f-b6f6-8f50ea03a292", "objectuuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '04c69432-1659-4037-99db-a715d90d4a31', 'INSERT', '{"uuid": "04c69432-1659-4037-99db-a715d90d4a31", "assumed": true, "ascendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "descendantuuid": "7ac91a3d-9409-471f-b6f6-8f50ea03a292", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '930a02fa-7b02-489e-a327-6b748881ab5b', 'INSERT', '{"uuid": "930a02fa-7b02-489e-a327-6b748881ab5b", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1337009b-a5a6-46a4-8fa1-04094d858e72', 'INSERT', '{"uuid": "1337009b-a5a6-46a4-8fa1-04094d858e72", "assumed": true, "ascendantuuid": "e16ceaa4-25a8-449a-9d9c-59a87fdc228a", "descendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0ceaf7d3-822e-497e-a790-7a876018d747', 'INSERT', '{"uuid": "0ceaf7d3-822e-497e-a790-7a876018d747", "assumed": true, "ascendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "descendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e465d748-4151-4c5a-9786-7a2abac4a32f', 'INSERT', '{"uuid": "e465d748-4151-4c5a-9786-7a2abac4a32f", "assumed": true, "ascendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '28f51aaa-a34d-472c-b28b-a67e469b585d', 'INSERT', '{"uuid": "28f51aaa-a34d-472c-b28b-a67e469b585d", "assumed": true, "ascendantuuid": "5885b073-ed04-4ac7-9f4b-664507df0de1", "descendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bd90ce06-c899-4c68-8bea-367c8d5d20be', 'INSERT', '{"uuid": "bd90ce06-c899-4c68-8bea-367c8d5d20be", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "e16ceaa4-25a8-449a-9d9c-59a87fdc228a", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '64abbebf-3e7a-49f7-95d4-b8eb8cb2d9a6', 'INSERT', '{"uuid": "64abbebf-3e7a-49f7-95d4-b8eb8cb2d9a6", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "1d4bc5a7-76c0-49a2-93dd-22e0554d886f", "grantedbyroleuuid": null, "grantedbytriggerof": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "ac44bd92-4e10-441c-8af3-6fc7cd6b242f", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "contactuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'INSERT', '{"uuid": "e74992df-66a8-4572-9e55-ec7b210f04e0", "serialid": 228, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '1a2692a7-05c3-433a-990c-54a184a91661', 'INSERT', '{"uuid": "1a2692a7-05c3-433a-990c-54a184a91661", "roletype": "OWNER", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'b0a82131-7ecd-4685-be5a-89dd1c4cc7de', 'INSERT', '{"op": "DELETE", "uuid": "b0a82131-7ecd-4685-be5a-89dd1c4cc7de", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e37467aa-eee1-4f42-aac8-fa3219b8c712', 'INSERT', '{"uuid": "e37467aa-eee1-4f42-aac8-fa3219b8c712", "assumed": true, "ascendantuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "descendantuuid": "b0a82131-7ecd-4685-be5a-89dd1c4cc7de", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '774d40b1-0544-4e8f-a6d9-feeae437ec88', 'INSERT', '{"uuid": "774d40b1-0544-4e8f-a6d9-feeae437ec88", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0f85a127-53ac-4858-841e-bdbb56283a00', 'INSERT', '{"uuid": "0f85a127-53ac-4858-841e-bdbb56283a00", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "grantedbyroleuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'b27f42df-1a56-4626-a3cf-1eb46e7e8770', 'INSERT', '{"uuid": "b27f42df-1a56-4626-a3cf-1eb46e7e8770", "roletype": "ADMIN", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '0897f76b-9b66-45ae-a884-5c7edd121433', 'INSERT', '{"op": "UPDATE", "uuid": "0897f76b-9b66-45ae-a884-5c7edd121433", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a119e799-70dd-4717-a1bd-a35f90d15523', 'INSERT', '{"uuid": "a119e799-70dd-4717-a1bd-a35f90d15523", "assumed": true, "ascendantuuid": "b27f42df-1a56-4626-a3cf-1eb46e7e8770", "descendantuuid": "0897f76b-9b66-45ae-a884-5c7edd121433", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8535405b-0693-40f0-b2b8-8c088e2aa0be', 'INSERT', '{"uuid": "8535405b-0693-40f0-b2b8-8c088e2aa0be", "assumed": true, "ascendantuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "descendantuuid": "b27f42df-1a56-4626-a3cf-1eb46e7e8770", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'aa81a9b0-86ef-4ebe-98d3-54359961608d', 'INSERT', '{"uuid": "aa81a9b0-86ef-4ebe-98d3-54359961608d", "roletype": "AGENT", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'bc5cd623-3012-46ed-bcfc-48022264d99e', 'INSERT', '{"uuid": "bc5cd623-3012-46ed-bcfc-48022264d99e", "assumed": true, "ascendantuuid": "b27f42df-1a56-4626-a3cf-1eb46e7e8770", "descendantuuid": "aa81a9b0-86ef-4ebe-98d3-54359961608d", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '51727d0c-b455-4171-9bc3-23ff5c73ed81', 'INSERT', '{"uuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "roletype": "TENANT", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '4d79f2a1-1130-4416-8c72-b6cc85740644', 'INSERT', '{"op": "SELECT", "uuid": "4d79f2a1-1130-4416-8c72-b6cc85740644", "objectuuid": "e74992df-66a8-4572-9e55-ec7b210f04e0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '25c8818e-bb35-48a0-b4ac-3c6f1bd40298', 'INSERT', '{"uuid": "25c8818e-bb35-48a0-b4ac-3c6f1bd40298", "assumed": true, "ascendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "descendantuuid": "4d79f2a1-1130-4416-8c72-b6cc85740644", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a864b583-edb7-464f-921f-c56ca092edad', 'INSERT', '{"uuid": "a864b583-edb7-464f-921f-c56ca092edad", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b03eb30c-1c1d-480e-b772-619994aec55e', 'INSERT', '{"uuid": "b03eb30c-1c1d-480e-b772-619994aec55e", "assumed": true, "ascendantuuid": "aa81a9b0-86ef-4ebe-98d3-54359961608d", "descendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd8ac1b4c-0a68-49b7-bc54-4efa3f22acca', 'INSERT', '{"uuid": "d8ac1b4c-0a68-49b7-bc54-4efa3f22acca", "assumed": true, "ascendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "descendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f21beb4a-baab-4547-977a-7f91103b548b', 'INSERT', '{"uuid": "f21beb4a-baab-4547-977a-7f91103b548b", "assumed": true, "ascendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fa89309d-7016-4782-8076-26c126b8fe5f', 'INSERT', '{"uuid": "fa89309d-7016-4782-8076-26c126b8fe5f", "assumed": true, "ascendantuuid": "51727d0c-b455-4171-9bc3-23ff5c73ed81", "descendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0d1b286c-9f93-45a5-9ccf-6d2ce623c427', 'INSERT', '{"uuid": "0d1b286c-9f93-45a5-9ccf-6d2ce623c427", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "aa81a9b0-86ef-4ebe-98d3-54359961608d", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3580f37b-438d-415e-9c63-c10f78c769e6', 'INSERT', '{"uuid": "3580f37b-438d-415e-9c63-c10f78c769e6", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "1a2692a7-05c3-433a-990c-54a184a91661", "grantedbyroleuuid": null, "grantedbytriggerof": "e74992df-66a8-4572-9e55-ec7b210f04e0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'INSERT', '{"mark": "operations-discussion", "type": "SUBSCRIBER", "uuid": "e74992df-66a8-4572-9e55-ec7b210f04e0", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "contactuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'INSERT', '{"uuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3", "serialid": 229, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', 'INSERT', '{"uuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "roletype": "OWNER", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '44a911af-8a2f-431f-9e1e-004746901334', 'INSERT', '{"op": "DELETE", "uuid": "44a911af-8a2f-431f-9e1e-004746901334", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8fb85ae7-6857-4fde-a081-155245d8eab1', 'INSERT', '{"uuid": "8fb85ae7-6857-4fde-a081-155245d8eab1", "assumed": true, "ascendantuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "descendantuuid": "44a911af-8a2f-431f-9e1e-004746901334", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a2c9543c-270a-4401-a46d-63c780af7d7b', 'INSERT', '{"uuid": "a2c9543c-270a-4401-a46d-63c780af7d7b", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '060a3faf-27c1-420c-bae4-5f8eff13d866', 'INSERT', '{"uuid": "060a3faf-27c1-420c-bae4-5f8eff13d866", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "grantedbyroleuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'af3322a3-54cc-4315-b815-607a8c362d2e', 'INSERT', '{"uuid": "af3322a3-54cc-4315-b815-607a8c362d2e", "roletype": "ADMIN", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'c885871c-5f3b-4a02-a550-f962132d898b', 'INSERT', '{"op": "UPDATE", "uuid": "c885871c-5f3b-4a02-a550-f962132d898b", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '49cc28f1-0933-4f2d-a7b0-ee521012359f', 'INSERT', '{"uuid": "49cc28f1-0933-4f2d-a7b0-ee521012359f", "assumed": true, "ascendantuuid": "af3322a3-54cc-4315-b815-607a8c362d2e", "descendantuuid": "c885871c-5f3b-4a02-a550-f962132d898b", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e7f93905-e0a2-495f-ab86-a028e30f82fd', 'INSERT', '{"uuid": "e7f93905-e0a2-495f-ab86-a028e30f82fd", "assumed": true, "ascendantuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "descendantuuid": "af3322a3-54cc-4315-b815-607a8c362d2e", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'dc730495-43f8-42be-af37-a084da0f568e', 'INSERT', '{"uuid": "dc730495-43f8-42be-af37-a084da0f568e", "roletype": "AGENT", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b21d98df-7db5-4df5-b481-393062d2133f', 'INSERT', '{"uuid": "b21d98df-7db5-4df5-b481-393062d2133f", "assumed": true, "ascendantuuid": "af3322a3-54cc-4315-b815-607a8c362d2e", "descendantuuid": "dc730495-43f8-42be-af37-a084da0f568e", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '8ea7ce48-b945-4053-8255-be69b2aa688d', 'INSERT', '{"uuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "roletype": "TENANT", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'cfdfa9ee-7570-4a4f-bad4-0e18fdff5004', 'INSERT', '{"op": "SELECT", "uuid": "cfdfa9ee-7570-4a4f-bad4-0e18fdff5004", "objectuuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '59ac54a3-5532-4652-a621-4ef9c6c7490a', 'INSERT', '{"uuid": "59ac54a3-5532-4652-a621-4ef9c6c7490a", "assumed": true, "ascendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "descendantuuid": "cfdfa9ee-7570-4a4f-bad4-0e18fdff5004", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd279712e-e2a3-495c-aeb0-e881ff3db933', 'INSERT', '{"uuid": "d279712e-e2a3-495c-aeb0-e881ff3db933", "assumed": true, "ascendantuuid": "fdcffa04-a455-4869-ab8f-2f2fa05e4b02", "descendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '9c2723b2-c46c-4eff-ba9c-ea0773327d33', 'INSERT', '{"uuid": "9c2723b2-c46c-4eff-ba9c-ea0773327d33", "assumed": true, "ascendantuuid": "dc730495-43f8-42be-af37-a084da0f568e", "descendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cad13977-cb2d-427c-a558-7755afa1ac4b', 'INSERT', '{"uuid": "cad13977-cb2d-427c-a558-7755afa1ac4b", "assumed": true, "ascendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "descendantuuid": "67b756a8-aff9-439d-8ac8-b8965b63ac32", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '54cc9e09-e776-4fbd-9e4a-3f9393b8dff4', 'INSERT', '{"uuid": "54cc9e09-e776-4fbd-9e4a-3f9393b8dff4", "assumed": true, "ascendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '764751d6-792b-46c2-8df1-b55e317852c2', 'INSERT', '{"uuid": "764751d6-792b-46c2-8df1-b55e317852c2", "assumed": true, "ascendantuuid": "8ea7ce48-b945-4053-8255-be69b2aa688d", "descendantuuid": "814e38c8-c053-4c27-9487-997cf318a550", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0b9fd4d4-d98a-45b0-8901-b03a9865b31a', 'INSERT', '{"uuid": "0b9fd4d4-d98a-45b0-8901-b03a9865b31a", "assumed": true, "ascendantuuid": "5f936257-6096-4792-a496-b92e46d93d0a", "descendantuuid": "dc730495-43f8-42be-af37-a084da0f568e", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'a6954b44-80a1-4de4-993c-be0c0aace38a', 'INSERT', '{"uuid": "a6954b44-80a1-4de4-993c-be0c0aace38a", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "e062ff79-b8a3-4f75-8e9f-ae3b31f92022", "grantedbyroleuuid": null, "grantedbytriggerof": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "50f79f83-f693-49c9-8b35-f1eb3c5f80a3", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "c3d97013-0ceb-4cc7-a59b-a4f70107acea", "contactuuid": "e8151525-ae0c-44fb-9755-72be88f7f6b1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'INSERT', '{"uuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9", "serialid": 230, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', 'INSERT', '{"uuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "roletype": "OWNER", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f7eab9a0-7f14-487c-9434-669dca849b40', 'INSERT', '{"op": "DELETE", "uuid": "f7eab9a0-7f14-487c-9434-669dca849b40", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '243f16ba-3250-4bba-ae2b-95ceaf3fa138', 'INSERT', '{"uuid": "243f16ba-3250-4bba-ae2b-95ceaf3fa138", "assumed": true, "ascendantuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "descendantuuid": "f7eab9a0-7f14-487c-9434-669dca849b40", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '1122e7d5-c3e4-4212-aef9-15f1b147fe30', 'INSERT', '{"uuid": "1122e7d5-c3e4-4212-aef9-15f1b147fe30", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '71b37f6f-05ba-43d4-9d42-cc421d9fca97', 'INSERT', '{"uuid": "71b37f6f-05ba-43d4-9d42-cc421d9fca97", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "grantedbyroleuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '656d1c2d-2ad1-42df-9774-62e931e3bb0e', 'INSERT', '{"uuid": "656d1c2d-2ad1-42df-9774-62e931e3bb0e", "roletype": "ADMIN", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '819393f7-e96d-499b-8663-3adaaf1b0a73', 'INSERT', '{"op": "UPDATE", "uuid": "819393f7-e96d-499b-8663-3adaaf1b0a73", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0e431e76-37ba-4074-b377-106fb435cd6a', 'INSERT', '{"uuid": "0e431e76-37ba-4074-b377-106fb435cd6a", "assumed": true, "ascendantuuid": "656d1c2d-2ad1-42df-9774-62e931e3bb0e", "descendantuuid": "819393f7-e96d-499b-8663-3adaaf1b0a73", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '53dbd2dc-766f-4223-a777-e4b44a598be5', 'INSERT', '{"uuid": "53dbd2dc-766f-4223-a777-e4b44a598be5", "assumed": true, "ascendantuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "descendantuuid": "656d1c2d-2ad1-42df-9774-62e931e3bb0e", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '7c142ae8-d190-4c1f-aa85-24f12eeefc9f', 'INSERT', '{"uuid": "7c142ae8-d190-4c1f-aa85-24f12eeefc9f", "roletype": "AGENT", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '0977ed6c-1fb6-48f0-b7c7-b4807c5bb672', 'INSERT', '{"uuid": "0977ed6c-1fb6-48f0-b7c7-b4807c5bb672", "assumed": true, "ascendantuuid": "656d1c2d-2ad1-42df-9774-62e931e3bb0e", "descendantuuid": "7c142ae8-d190-4c1f-aa85-24f12eeefc9f", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '3abf8555-9c07-447d-af5b-47bacb517ad5', 'INSERT', '{"uuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "roletype": "TENANT", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'f3d00781-37e2-4b9a-8107-bdc123df38d7', 'INSERT', '{"op": "SELECT", "uuid": "f3d00781-37e2-4b9a-8107-bdc123df38d7", "objectuuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c36ef648-581e-40b6-9f92-30be50403890', 'INSERT', '{"uuid": "c36ef648-581e-40b6-9f92-30be50403890", "assumed": true, "ascendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "descendantuuid": "f3d00781-37e2-4b9a-8107-bdc123df38d7", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ef219bf7-5838-4fe9-8a6c-74d76637e6e5', 'INSERT', '{"uuid": "ef219bf7-5838-4fe9-8a6c-74d76637e6e5", "assumed": true, "ascendantuuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "descendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'f60bb8d7-0347-4230-9b72-80808087df82', 'INSERT', '{"uuid": "f60bb8d7-0347-4230-9b72-80808087df82", "assumed": true, "ascendantuuid": "7c142ae8-d190-4c1f-aa85-24f12eeefc9f", "descendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2472c680-5e4d-4a27-bd39-0dfb5198f2d3', 'INSERT', '{"uuid": "2472c680-5e4d-4a27-bd39-0dfb5198f2d3", "assumed": true, "ascendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "descendantuuid": "7454ce37-a2ba-4f52-a5da-2190203ca089", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2efb9a32-db0b-4d3e-8488-71a6ba91d792', 'INSERT', '{"uuid": "2efb9a32-db0b-4d3e-8488-71a6ba91d792", "assumed": true, "ascendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '8e95ae46-bb81-4895-97b3-90c50307a381', 'INSERT', '{"uuid": "8e95ae46-bb81-4895-97b3-90c50307a381", "assumed": true, "ascendantuuid": "3abf8555-9c07-447d-af5b-47bacb517ad5", "descendantuuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '79603765-e912-4ce3-9f88-70645bafa009', 'INSERT', '{"uuid": "79603765-e912-4ce3-9f88-70645bafa009", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "7c142ae8-d190-4c1f-aa85-24f12eeefc9f", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eda5060e-6818-415e-afaf-49ad637375b1', 'INSERT', '{"uuid": "eda5060e-6818-415e-afaf-49ad637375b1", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "3df1d2db-6ed7-4d0a-ae22-6e90140ca432", "grantedbyroleuuid": null, "grantedbytriggerof": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'INSERT', '{"mark": null, "type": "OPERATIONS_ALERT", "uuid": "a5f231d1-0fee-4e1a-a4b6-7840ad531ad9", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "contactuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '047364a5-9dcb-4027-a94c-e35f4646860e', 'INSERT', '{"uuid": "047364a5-9dcb-4027-a94c-e35f4646860e", "serialid": 231, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '89218636-1f65-41ed-b729-d5967f17d33e', 'INSERT', '{"uuid": "89218636-1f65-41ed-b729-d5967f17d33e", "roletype": "OWNER", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'cbff4b85-4722-4e87-8adb-34923d9987c0', 'INSERT', '{"op": "DELETE", "uuid": "cbff4b85-4722-4e87-8adb-34923d9987c0", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b60442b9-5c5f-4d82-bf66-8eb20ca9b708', 'INSERT', '{"uuid": "b60442b9-5c5f-4d82-bf66-8eb20ca9b708", "assumed": true, "ascendantuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "descendantuuid": "cbff4b85-4722-4e87-8adb-34923d9987c0", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e142a048-63a4-4c13-bffa-8cad6d6f9f68', 'INSERT', '{"uuid": "e142a048-63a4-4c13-bffa-8cad6d6f9f68", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd47adf1c-911c-4340-96a3-69e98005dfe1', 'INSERT', '{"uuid": "d47adf1c-911c-4340-96a3-69e98005dfe1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "grantedbyroleuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '52ae0923-db99-48e9-95b5-d6884b6d4642', 'INSERT', '{"uuid": "52ae0923-db99-48e9-95b5-d6884b6d4642", "roletype": "ADMIN", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '6f009e98-a9a4-4d93-92e2-e955d04bb7e4', 'INSERT', '{"op": "UPDATE", "uuid": "6f009e98-a9a4-4d93-92e2-e955d04bb7e4", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'badcbce7-e648-4f6f-900a-796cee8ef977', 'INSERT', '{"uuid": "badcbce7-e648-4f6f-900a-796cee8ef977", "assumed": true, "ascendantuuid": "52ae0923-db99-48e9-95b5-d6884b6d4642", "descendantuuid": "6f009e98-a9a4-4d93-92e2-e955d04bb7e4", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'cbdc254f-7d1b-4836-80a0-7e4bca791478', 'INSERT', '{"uuid": "cbdc254f-7d1b-4836-80a0-7e4bca791478", "assumed": true, "ascendantuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "descendantuuid": "52ae0923-db99-48e9-95b5-d6884b6d4642", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '58769cf3-490e-4d20-8255-3e0854d8384b', 'INSERT', '{"uuid": "58769cf3-490e-4d20-8255-3e0854d8384b", "roletype": "AGENT", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c38c5ce9-bed2-465a-9d34-71a63868e2f7', 'INSERT', '{"uuid": "c38c5ce9-bed2-465a-9d34-71a63868e2f7", "assumed": true, "ascendantuuid": "52ae0923-db99-48e9-95b5-d6884b6d4642", "descendantuuid": "58769cf3-490e-4d20-8255-3e0854d8384b", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '212a3a64-9d05-44ae-a394-e335cb98cdf7', 'INSERT', '{"uuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "roletype": "TENANT", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '21a21577-f8e6-4856-8c80-996000f525c9', 'INSERT', '{"op": "SELECT", "uuid": "21a21577-f8e6-4856-8c80-996000f525c9", "objectuuid": "047364a5-9dcb-4027-a94c-e35f4646860e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7bd30426-477a-42ae-9fea-53e31754a3a5', 'INSERT', '{"uuid": "7bd30426-477a-42ae-9fea-53e31754a3a5", "assumed": true, "ascendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "descendantuuid": "21a21577-f8e6-4856-8c80-996000f525c9", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '66bd8d3a-ecd2-4db1-a54c-d614df92bc66', 'INSERT', '{"uuid": "66bd8d3a-ecd2-4db1-a54c-d614df92bc66", "assumed": true, "ascendantuuid": "60297e5d-2f7d-4734-9a25-f2639ffb7fb4", "descendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'b69b4a82-d843-4121-b4a6-22b5223d4832', 'INSERT', '{"uuid": "b69b4a82-d843-4121-b4a6-22b5223d4832", "assumed": true, "ascendantuuid": "58769cf3-490e-4d20-8255-3e0854d8384b", "descendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '7a4ad26e-9bdd-4202-bf55-d3a23dd92889', 'INSERT', '{"uuid": "7a4ad26e-9bdd-4202-bf55-d3a23dd92889", "assumed": true, "ascendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "descendantuuid": "7454ce37-a2ba-4f52-a5da-2190203ca089", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'de10b491-4a7f-411f-976b-c1a71d76e4aa', 'INSERT', '{"uuid": "de10b491-4a7f-411f-976b-c1a71d76e4aa", "assumed": true, "ascendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '443baeb4-d1b5-4ff8-9f6e-80630b9064f3', 'INSERT', '{"uuid": "443baeb4-d1b5-4ff8-9f6e-80630b9064f3", "assumed": true, "ascendantuuid": "212a3a64-9d05-44ae-a394-e335cb98cdf7", "descendantuuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'ae35d44c-8134-4128-a4cb-ebf18b227ced', 'INSERT', '{"uuid": "ae35d44c-8134-4128-a4cb-ebf18b227ced", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "58769cf3-490e-4d20-8255-3e0854d8384b", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '21b13641-89e2-4a8f-9d9a-2e6f3cbafe35', 'INSERT', '{"uuid": "21b13641-89e2-4a8f-9d9a-2e6f3cbafe35", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "89218636-1f65-41ed-b729-d5967f17d33e", "grantedbyroleuuid": null, "grantedbytriggerof": "047364a5-9dcb-4027-a94c-e35f4646860e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '047364a5-9dcb-4027-a94c-e35f4646860e', 'INSERT', '{"mark": null, "type": "OPERATIONS", "uuid": "047364a5-9dcb-4027-a94c-e35f4646860e", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "contactuuid": "7857f7cb-c93d-4d21-a4e8-b91a28eb7007"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.object', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'INSERT', '{"uuid": "08e80808-fb86-4503-ab9b-9652af82d5b5", "serialid": 232, "objecttable": "hs_office.relation"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', 'INSERT', '{"uuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "roletype": "OWNER", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', '160977ed-ef11-43d8-9ff7-af86c743d2ab', 'INSERT', '{"op": "DELETE", "uuid": "160977ed-ef11-43d8-9ff7-af86c743d2ab", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '327d53e3-9645-413b-a8b9-1abf80ef6caf', 'INSERT', '{"uuid": "327d53e3-9645-413b-a8b9-1abf80ef6caf", "assumed": true, "ascendantuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "descendantuuid": "160977ed-ef11-43d8-9ff7-af86c743d2ab", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'eda23614-3b16-4346-b096-0db44dd02912', 'INSERT', '{"uuid": "eda23614-3b16-4346-b096-0db44dd02912", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'de5b93fc-d1c5-4d4e-be69-e0187b58b96f', 'INSERT', '{"uuid": "de5b93fc-d1c5-4d4e-be69-e0187b58b96f", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "grantedbyroleuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', '9a4fdac1-5925-464e-848b-1532c780ebdf', 'INSERT', '{"uuid": "9a4fdac1-5925-464e-848b-1532c780ebdf", "roletype": "ADMIN", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'd94fd859-6e03-44a1-ac1d-059ed72e23d3', 'INSERT', '{"op": "UPDATE", "uuid": "d94fd859-6e03-44a1-ac1d-059ed72e23d3", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'e0f9ae70-cf38-40c4-bb77-8a65344f1d24', 'INSERT', '{"uuid": "e0f9ae70-cf38-40c4-bb77-8a65344f1d24", "assumed": true, "ascendantuuid": "9a4fdac1-5925-464e-848b-1532c780ebdf", "descendantuuid": "d94fd859-6e03-44a1-ac1d-059ed72e23d3", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '85eda66a-0840-4cba-8b1b-0ec996e7ea1a', 'INSERT', '{"uuid": "85eda66a-0840-4cba-8b1b-0ec996e7ea1a", "assumed": true, "ascendantuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "descendantuuid": "9a4fdac1-5925-464e-848b-1532c780ebdf", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'e108043f-3dcd-498c-9560-cde4ed35680e', 'INSERT', '{"uuid": "e108043f-3dcd-498c-9560-cde4ed35680e", "roletype": "AGENT", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '2e20ecf3-6dfc-4e0a-8587-a2f9f76949a1', 'INSERT', '{"uuid": "2e20ecf3-6dfc-4e0a-8587-a2f9f76949a1", "assumed": true, "ascendantuuid": "9a4fdac1-5925-464e-848b-1532c780ebdf", "descendantuuid": "e108043f-3dcd-498c-9560-cde4ed35680e", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.role', 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', 'INSERT', '{"uuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "roletype": "TENANT", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.permission', 'ebb468b1-047a-492c-a76c-5031645e7824', 'INSERT', '{"op": "SELECT", "uuid": "ebb468b1-047a-492c-a76c-5031645e7824", "objectuuid": "08e80808-fb86-4503-ab9b-9652af82d5b5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'c944cfbc-96e9-4936-acc1-fd156480f511', 'INSERT', '{"uuid": "c944cfbc-96e9-4936-acc1-fd156480f511", "assumed": true, "ascendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "descendantuuid": "ebb468b1-047a-492c-a76c-5031645e7824", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '62f3ce10-f42c-4106-a6ea-40aa0e018eed', 'INSERT', '{"uuid": "62f3ce10-f42c-4106-a6ea-40aa0e018eed", "assumed": true, "ascendantuuid": "da9600c2-7dcc-4a7d-87f1-33f4a441e807", "descendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4fe21ec9-c4cd-462d-8754-e16bbf8a180a', 'INSERT', '{"uuid": "4fe21ec9-c4cd-462d-8754-e16bbf8a180a", "assumed": true, "ascendantuuid": "e108043f-3dcd-498c-9560-cde4ed35680e", "descendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'fa4aad7d-a9e0-40a4-9075-10e1bab8f777', 'INSERT', '{"uuid": "fa4aad7d-a9e0-40a4-9075-10e1bab8f777", "assumed": true, "ascendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "descendantuuid": "f1afc7a2-588d-4b7e-9975-7b0eda21f846", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '4200700a-6aa6-4949-80e8-a2ccbe1de26e', 'INSERT', '{"uuid": "4200700a-6aa6-4949-80e8-a2ccbe1de26e", "assumed": true, "ascendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "descendantuuid": "95cfeaa7-1c01-4090-8f37-fc3306cc0ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '407d18e1-5185-41fd-9073-afe3b884826c', 'INSERT', '{"uuid": "407d18e1-5185-41fd-9073-afe3b884826c", "assumed": true, "ascendantuuid": "ac5044f1-1f16-43fa-afe2-24d80506ae5b", "descendantuuid": "779e4c3b-97f0-4218-8eab-5575a6afa54a", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', '3b1cf5ad-8b58-4229-a6db-e9927917d0dc', 'INSERT', '{"uuid": "3b1cf5ad-8b58-4229-a6db-e9927917d0dc", "assumed": true, "ascendantuuid": "de10229b-be9d-45dc-b1bf-8f832ebffe68", "descendantuuid": "e108043f-3dcd-498c-9560-cde4ed35680e", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'rbac.grant', 'd84e7cc1-e0f0-47ba-a815-56e1817601ab', 'INSERT', '{"uuid": "d84e7cc1-e0f0-47ba-a815-56e1817601ab", "assumed": true, "ascendantuuid": "e03da822-f071-4c66-890f-f93a458aec28", "descendantuuid": "cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f", "grantedbyroleuuid": null, "grantedbytriggerof": "08e80808-fb86-4503-ab9b-9652af82d5b5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('1823', 'hs_office.relation', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'INSERT', '{"mark": "operations-announce", "type": "SUBSCRIBER", "uuid": "08e80808-fb86-4503-ab9b-9652af82d5b5", "version": 0, "anchoruuid": "ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f", "holderuuid": "e50c983a-060c-47c9-9d47-efd552b1e618", "contactuuid": "c3b8c521-37f4-46b8-89f7-1931159e9a14"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '6da29bfa-4744-437f-aed3-2695571c58bf', 'INSERT', '{"uuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "serialid": 233, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', '6da29bfa-4744-437f-aed3-2695571c58bf', 'INSERT', '{"uuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '91b63591-b1e2-4c65-8ad2-c607be4c1238', 'INSERT', '{"uuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "serialid": 234, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'a2effc4a-acdc-4660-973d-e5313a9df528', 'INSERT', '{"op": "DELETE", "uuid": "a2effc4a-acdc-4660-973d-e5313a9df528", "objectuuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '45db4d06-7181-409f-89d2-fb2135f4eac0', 'INSERT', '{"uuid": "45db4d06-7181-409f-89d2-fb2135f4eac0", "assumed": true, "ascendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "descendantuuid": "a2effc4a-acdc-4660-973d-e5313a9df528", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '42491f82-8223-4dbf-8660-688e35fc5694', 'INSERT', '{"op": "SELECT", "uuid": "42491f82-8223-4dbf-8660-688e35fc5694", "objectuuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '6dbff4f0-9c28-498d-918b-cee99b6d3aa4', 'INSERT', '{"uuid": "6dbff4f0-9c28-498d-918b-cee99b6d3aa4", "assumed": true, "ascendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "descendantuuid": "42491f82-8223-4dbf-8660-688e35fc5694", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'aaaf21f7-baff-4867-b84f-36a16f0fcbf1', 'INSERT', '{"op": "UPDATE", "uuid": "aaaf21f7-baff-4867-b84f-36a16f0fcbf1", "objectuuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'd589ebc2-533a-442d-959d-ccaddaad53b3', 'INSERT', '{"uuid": "d589ebc2-533a-442d-959d-ccaddaad53b3", "assumed": true, "ascendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "descendantuuid": "aaaf21f7-baff-4867-b84f-36a16f0fcbf1", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '66b246c1-b389-40b7-b238-48903a3dae95', 'INSERT', '{"op": "DELETE", "uuid": "66b246c1-b389-40b7-b238-48903a3dae95", "objectuuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '3900e6fa-5de9-4c36-a9e6-a17103f97901', 'INSERT', '{"uuid": "3900e6fa-5de9-4c36-a9e6-a17103f97901", "assumed": true, "ascendantuuid": "1b453f97-a12c-4d51-bf95-2e782b425385", "descendantuuid": "66b246c1-b389-40b7-b238-48903a3dae95", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ddcec555-0f99-4cec-9d45-b0ddd4e7fb26', 'INSERT', '{"op": "SELECT", "uuid": "ddcec555-0f99-4cec-9d45-b0ddd4e7fb26", "objectuuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'c21da043-c691-4c28-a26d-4db1c008d239', 'INSERT', '{"uuid": "c21da043-c691-4c28-a26d-4db1c008d239", "assumed": true, "ascendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "descendantuuid": "ddcec555-0f99-4cec-9d45-b0ddd4e7fb26", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '76d3e38c-0889-4169-814d-5f7e36c0c767', 'INSERT', '{"op": "UPDATE", "uuid": "76d3e38c-0889-4169-814d-5f7e36c0c767", "objectuuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'c5d88362-dfd3-4039-b867-4a7466a8b34a', 'INSERT', '{"uuid": "c5d88362-dfd3-4039-b867-4a7466a8b34a", "assumed": true, "ascendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "descendantuuid": "76d3e38c-0889-4169-814d-5f7e36c0c767", "grantedbyroleuuid": null, "grantedbytriggerof": "91b63591-b1e2-4c65-8ad2-c607be4c1238"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', '91b63591-b1e2-4c65-8ad2-c607be4c1238', 'INSERT', '{"uuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "version": 0, "detailsuuid": "6da29bfa-4744-437f-aed3-2695571c58bf", "partnernumber": 10003, "partnerreluuid": "48618c28-9304-4ccb-b022-e2cbb1832944"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '7b7a528d-a284-4d0d-99ce-73f2a7585f78', 'INSERT', '{"uuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "serialid": 235, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', '7b7a528d-a284-4d0d-99ce-73f2a7585f78', 'INSERT', '{"uuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'db7f287e-dfd7-4627-88e3-407cac226472', 'INSERT', '{"uuid": "db7f287e-dfd7-4627-88e3-407cac226472", "serialid": 236, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '4d9e1a7c-84fa-43c7-a1d7-e898b20df129', 'INSERT', '{"op": "DELETE", "uuid": "4d9e1a7c-84fa-43c7-a1d7-e898b20df129", "objectuuid": "db7f287e-dfd7-4627-88e3-407cac226472", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '23fe6f7c-4bd4-4450-9cd0-5e2f26b0f3e4', 'INSERT', '{"uuid": "23fe6f7c-4bd4-4450-9cd0-5e2f26b0f3e4", "assumed": true, "ascendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "descendantuuid": "4d9e1a7c-84fa-43c7-a1d7-e898b20df129", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '8c236a58-3fab-421e-b8a3-6c9df1269fed', 'INSERT', '{"op": "SELECT", "uuid": "8c236a58-3fab-421e-b8a3-6c9df1269fed", "objectuuid": "db7f287e-dfd7-4627-88e3-407cac226472", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'be124201-7708-49e7-9cbe-6e129694e33a', 'INSERT', '{"uuid": "be124201-7708-49e7-9cbe-6e129694e33a", "assumed": true, "ascendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "descendantuuid": "8c236a58-3fab-421e-b8a3-6c9df1269fed", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'a4b5890e-c3d9-4eda-8a8c-3ebc20a39061', 'INSERT', '{"op": "UPDATE", "uuid": "a4b5890e-c3d9-4eda-8a8c-3ebc20a39061", "objectuuid": "db7f287e-dfd7-4627-88e3-407cac226472", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'dd3c3ef8-59bd-4633-9555-cdf9c6440489', 'INSERT', '{"uuid": "dd3c3ef8-59bd-4633-9555-cdf9c6440489", "assumed": true, "ascendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "descendantuuid": "a4b5890e-c3d9-4eda-8a8c-3ebc20a39061", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'f35bc896-c93b-42ca-994d-4f5f4e2e5b5f', 'INSERT', '{"op": "DELETE", "uuid": "f35bc896-c93b-42ca-994d-4f5f4e2e5b5f", "objectuuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '12748785-e835-4f51-ac95-ee436ca09f2c', 'INSERT', '{"uuid": "12748785-e835-4f51-ac95-ee436ca09f2c", "assumed": true, "ascendantuuid": "7db53bc9-99f3-478e-abb0-437dcbd32051", "descendantuuid": "f35bc896-c93b-42ca-994d-4f5f4e2e5b5f", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c', 'INSERT', '{"op": "SELECT", "uuid": "a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c", "objectuuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '4f4cb4de-0905-4b8a-86d0-a4066d2b5d01', 'INSERT', '{"uuid": "4f4cb4de-0905-4b8a-86d0-a4066d2b5d01", "assumed": true, "ascendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "descendantuuid": "a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '6372e9ae-f522-468e-95b5-06a527854b0f', 'INSERT', '{"op": "UPDATE", "uuid": "6372e9ae-f522-468e-95b5-06a527854b0f", "objectuuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '72c6fe2f-604a-4512-aada-2d1e36242727', 'INSERT', '{"uuid": "72c6fe2f-604a-4512-aada-2d1e36242727", "assumed": true, "ascendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "descendantuuid": "6372e9ae-f522-468e-95b5-06a527854b0f", "grantedbyroleuuid": null, "grantedbytriggerof": "db7f287e-dfd7-4627-88e3-407cac226472"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', 'db7f287e-dfd7-4627-88e3-407cac226472', 'INSERT', '{"uuid": "db7f287e-dfd7-4627-88e3-407cac226472", "version": 0, "detailsuuid": "7b7a528d-a284-4d0d-99ce-73f2a7585f78", "partnernumber": 10020, "partnerreluuid": "164d3cde-e2ab-4239-9dbf-de1c963158ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 'INSERT', '{"uuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "serialid": 237, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 'INSERT', '{"uuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 'INSERT', '{"uuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "serialid": 238, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '35f61da7-bd75-4482-ad05-d50ba7e099ca', 'INSERT', '{"op": "DELETE", "uuid": "35f61da7-bd75-4482-ad05-d50ba7e099ca", "objectuuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'c962f39e-7dd6-4cf9-a532-952952bdbd58', 'INSERT', '{"uuid": "c962f39e-7dd6-4cf9-a532-952952bdbd58", "assumed": true, "ascendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "descendantuuid": "35f61da7-bd75-4482-ad05-d50ba7e099ca", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1', 'INSERT', '{"op": "SELECT", "uuid": "3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1", "objectuuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'b5be48c3-0721-406c-bf86-b7dc1d6a7016', 'INSERT', '{"op": "DELETE", "uuid": "b5be48c3-0721-406c-bf86-b7dc1d6a7016", "objectuuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'c137a79c-b6ab-45fe-863b-992198c9d355', 'INSERT', '{"uuid": "c137a79c-b6ab-45fe-863b-992198c9d355", "assumed": true, "ascendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "descendantuuid": "3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'd5009976-c8c8-4d64-b39e-08f019999ae9', 'INSERT', '{"op": "UPDATE", "uuid": "d5009976-c8c8-4d64-b39e-08f019999ae9", "objectuuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '40fa767a-79ed-4981-996f-f6a0bcb00df4', 'INSERT', '{"uuid": "40fa767a-79ed-4981-996f-f6a0bcb00df4", "assumed": true, "ascendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "descendantuuid": "d5009976-c8c8-4d64-b39e-08f019999ae9", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '9f2f2eae-80dc-49c7-810a-69b10fcc3421', 'INSERT', '{"op": "DELETE", "uuid": "9f2f2eae-80dc-49c7-810a-69b10fcc3421", "objectuuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '06e50120-1cfd-43d9-9f05-d69054dab845', 'INSERT', '{"uuid": "06e50120-1cfd-43d9-9f05-d69054dab845", "assumed": true, "ascendantuuid": "0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d", "descendantuuid": "9f2f2eae-80dc-49c7-810a-69b10fcc3421", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '42557861-103c-4fb7-b3c6-0acd3d7737c2', 'INSERT', '{"op": "SELECT", "uuid": "42557861-103c-4fb7-b3c6-0acd3d7737c2", "objectuuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '07ec525f-703b-4d10-a693-4ef61afe606a', 'INSERT', '{"uuid": "07ec525f-703b-4d10-a693-4ef61afe606a", "assumed": true, "ascendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "descendantuuid": "42557861-103c-4fb7-b3c6-0acd3d7737c2", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '85dbc28b-c5c3-4914-b645-a36056f4cf17', 'INSERT', '{"op": "UPDATE", "uuid": "85dbc28b-c5c3-4914-b645-a36056f4cf17", "objectuuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '8ef3b8c5-8286-42fe-bf20-011d1f5931e4', 'INSERT', '{"uuid": "8ef3b8c5-8286-42fe-bf20-011d1f5931e4", "assumed": true, "ascendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "descendantuuid": "85dbc28b-c5c3-4914-b645-a36056f4cf17", "grantedbyroleuuid": null, "grantedbytriggerof": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 'INSERT', '{"uuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "version": 0, "detailsuuid": "f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787", "partnernumber": 11022, "partnerreluuid": "a85fd289-2383-4abe-b796-9b0b47d702d2"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '90604765-0e48-4363-83e4-1c2e9e4a8f33', 'INSERT', '{"uuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "serialid": 239, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', '90604765-0e48-4363-83e4-1c2e9e4a8f33', 'INSERT', '{"uuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', 'INSERT', '{"uuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "serialid": 240, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '45cfb9f8-8e5e-438d-90f7-6b1ee872c003', 'INSERT', '{"op": "DELETE", "uuid": "45cfb9f8-8e5e-438d-90f7-6b1ee872c003", "objectuuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '14c82607-a49e-45fa-aa03-92c48062069c', 'INSERT', '{"uuid": "14c82607-a49e-45fa-aa03-92c48062069c", "assumed": true, "ascendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "descendantuuid": "45cfb9f8-8e5e-438d-90f7-6b1ee872c003", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ac1f7518-f255-47bd-bf31-29d3cd2bb57a', 'INSERT', '{"op": "SELECT", "uuid": "ac1f7518-f255-47bd-bf31-29d3cd2bb57a", "objectuuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'd276fd29-2bdd-4567-9276-5996c2c75389', 'INSERT', '{"uuid": "d276fd29-2bdd-4567-9276-5996c2c75389", "assumed": true, "ascendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "descendantuuid": "ac1f7518-f255-47bd-bf31-29d3cd2bb57a", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'b45ba485-ee82-447e-8a4d-42679a233455', 'INSERT', '{"op": "UPDATE", "uuid": "b45ba485-ee82-447e-8a4d-42679a233455", "objectuuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'b1bd4e7c-e01c-406a-b272-bf5a51e749d4', 'INSERT', '{"uuid": "b1bd4e7c-e01c-406a-b272-bf5a51e749d4", "assumed": true, "ascendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "descendantuuid": "b45ba485-ee82-447e-8a4d-42679a233455", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ac9bd6e7-e7b5-4f25-a873-79ff3436fa66', 'INSERT', '{"op": "DELETE", "uuid": "ac9bd6e7-e7b5-4f25-a873-79ff3436fa66", "objectuuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'e0e072c2-8f36-4c5c-9948-0e8ce20b00e6', 'INSERT', '{"uuid": "e0e072c2-8f36-4c5c-9948-0e8ce20b00e6", "assumed": true, "ascendantuuid": "b26cca89-03f0-4498-bf64-7385c0b7244a", "descendantuuid": "ac9bd6e7-e7b5-4f25-a873-79ff3436fa66", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '52d12930-5ca0-4344-bf72-32faf8dc5d9c', 'INSERT', '{"op": "SELECT", "uuid": "52d12930-5ca0-4344-bf72-32faf8dc5d9c", "objectuuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '465d0cea-7e8b-47b3-9a57-93a283ae5582', 'INSERT', '{"uuid": "465d0cea-7e8b-47b3-9a57-93a283ae5582", "assumed": true, "ascendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "descendantuuid": "52d12930-5ca0-4344-bf72-32faf8dc5d9c", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ba038cc8-3ca3-4c25-9805-08eef60945b5', 'INSERT', '{"op": "UPDATE", "uuid": "ba038cc8-3ca3-4c25-9805-08eef60945b5", "objectuuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '6821e41f-9460-485c-9b29-7017ab5668df', 'INSERT', '{"uuid": "6821e41f-9460-485c-9b29-7017ab5668df", "assumed": true, "ascendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "descendantuuid": "ba038cc8-3ca3-4c25-9805-08eef60945b5", "grantedbyroleuuid": null, "grantedbytriggerof": "029b1c78-d68b-48e6-83e5-8883b9cefe7c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', 'INSERT', '{"uuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "version": 0, "detailsuuid": "90604765-0e48-4363-83e4-1c2e9e4a8f33", "partnernumber": 10152, "partnerreluuid": "201b417e-4ebe-458b-a7ce-a287c0ad9287"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8', 'INSERT', '{"uuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "serialid": 241, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8', 'INSERT', '{"uuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '58ca016b-15ea-41e3-80ba-2603bf736619', 'INSERT', '{"uuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "serialid": 242, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '8d1d4277-038f-4ee0-a7a7-e2eda624508a', 'INSERT', '{"uuid": "8d1d4277-038f-4ee0-a7a7-e2eda624508a", "assumed": true, "ascendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "descendantuuid": "b5be48c3-0721-406c-bf86-b7dc1d6a7016", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ba8ff028-06d6-4536-8e79-6c46f8e4b9a2', 'INSERT', '{"op": "SELECT", "uuid": "ba8ff028-06d6-4536-8e79-6c46f8e4b9a2", "objectuuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '3d74caa2-f602-4234-aeac-cfeb0c8b2695', 'INSERT', '{"uuid": "3d74caa2-f602-4234-aeac-cfeb0c8b2695", "assumed": true, "ascendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "descendantuuid": "ba8ff028-06d6-4536-8e79-6c46f8e4b9a2", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '470fa9af-f292-4516-be71-346b1e987d83', 'INSERT', '{"op": "UPDATE", "uuid": "470fa9af-f292-4516-be71-346b1e987d83", "objectuuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '772c9fde-aea0-425e-aa68-9c2141974334', 'INSERT', '{"uuid": "772c9fde-aea0-425e-aa68-9c2141974334", "assumed": true, "ascendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "descendantuuid": "470fa9af-f292-4516-be71-346b1e987d83", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'e62715a8-2e69-4a59-806e-000886fedd92', 'INSERT', '{"op": "DELETE", "uuid": "e62715a8-2e69-4a59-806e-000886fedd92", "objectuuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '3a9cff2c-733b-41a8-a37c-d1853a3d5913', 'INSERT', '{"uuid": "3a9cff2c-733b-41a8-a37c-d1853a3d5913", "assumed": true, "ascendantuuid": "7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff", "descendantuuid": "e62715a8-2e69-4a59-806e-000886fedd92", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '0f8fd73f-526c-4e76-a5f1-043e44386cc3', 'INSERT', '{"op": "SELECT", "uuid": "0f8fd73f-526c-4e76-a5f1-043e44386cc3", "objectuuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '500200b0-6973-4ae5-85cd-7386c6f9465b', 'INSERT', '{"uuid": "500200b0-6973-4ae5-85cd-7386c6f9465b", "assumed": true, "ascendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "descendantuuid": "0f8fd73f-526c-4e76-a5f1-043e44386cc3", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '0e0eb247-f0a2-435b-b44c-34ffc5ecfda6', 'INSERT', '{"op": "UPDATE", "uuid": "0e0eb247-f0a2-435b-b44c-34ffc5ecfda6", "objectuuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '2548a412-57f7-41fa-9d02-1790339303be', 'INSERT', '{"uuid": "2548a412-57f7-41fa-9d02-1790339303be", "assumed": true, "ascendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "descendantuuid": "0e0eb247-f0a2-435b-b44c-34ffc5ecfda6", "grantedbyroleuuid": null, "grantedbytriggerof": "58ca016b-15ea-41e3-80ba-2603bf736619"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', '58ca016b-15ea-41e3-80ba-2603bf736619', 'INSERT', '{"uuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "version": 0, "detailsuuid": "a7494bd0-af97-421e-bfa3-53bd97fb1df8", "partnernumber": 19090, "partnerreluuid": "bcd0fdb5-7415-40d2-8265-85113a4b66be"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'f1048d9f-e560-459a-91fe-f769ef049648', 'INSERT', '{"uuid": "f1048d9f-e560-459a-91fe-f769ef049648", "serialid": 243, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', 'f1048d9f-e560-459a-91fe-f769ef049648', 'INSERT', '{"uuid": "f1048d9f-e560-459a-91fe-f769ef049648", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', 'INSERT', '{"uuid": "defa6288-bed7-4ed8-ae6d-fbbb3530a632", "serialid": 244, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00', 'INSERT', '{"op": "DELETE", "uuid": "1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00", "objectuuid": "defa6288-bed7-4ed8-ae6d-fbbb3530a632", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'b3544903-2ae4-4b16-84f7-01adc31301f8', 'INSERT', '{"uuid": "b3544903-2ae4-4b16-84f7-01adc31301f8", "assumed": true, "ascendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "descendantuuid": "1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '57130e2a-328a-4402-bd54-a76cb815503c', 'INSERT', '{"op": "SELECT", "uuid": "57130e2a-328a-4402-bd54-a76cb815503c", "objectuuid": "defa6288-bed7-4ed8-ae6d-fbbb3530a632", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '889edabb-a1de-44f3-8051-788e2e6b61c2', 'INSERT', '{"uuid": "889edabb-a1de-44f3-8051-788e2e6b61c2", "assumed": true, "ascendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "descendantuuid": "57130e2a-328a-4402-bd54-a76cb815503c", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '0baaa10d-4abf-42df-9689-d6d72a9cc418', 'INSERT', '{"op": "UPDATE", "uuid": "0baaa10d-4abf-42df-9689-d6d72a9cc418", "objectuuid": "defa6288-bed7-4ed8-ae6d-fbbb3530a632", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '96ae4fa2-366d-42fd-b690-f0c1e50d547a', 'INSERT', '{"uuid": "96ae4fa2-366d-42fd-b690-f0c1e50d547a", "assumed": true, "ascendantuuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "descendantuuid": "0baaa10d-4abf-42df-9689-d6d72a9cc418", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '7c958983-efb4-4117-a2a6-4a3d35c233b5', 'INSERT', '{"op": "DELETE", "uuid": "7c958983-efb4-4117-a2a6-4a3d35c233b5", "objectuuid": "f1048d9f-e560-459a-91fe-f769ef049648", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '91d8e718-9d56-47f8-8aaa-66db5bf22f91', 'INSERT', '{"uuid": "91d8e718-9d56-47f8-8aaa-66db5bf22f91", "assumed": true, "ascendantuuid": "5242e0b6-12e3-4a59-bf06-de114cb69ff4", "descendantuuid": "7c958983-efb4-4117-a2a6-4a3d35c233b5", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'c9732223-5e57-4d36-b412-91122ecb900f', 'INSERT', '{"op": "SELECT", "uuid": "c9732223-5e57-4d36-b412-91122ecb900f", "objectuuid": "f1048d9f-e560-459a-91fe-f769ef049648", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '68f4fe6b-261d-448c-bce0-adff94a81deb', 'INSERT', '{"uuid": "68f4fe6b-261d-448c-bce0-adff94a81deb", "assumed": true, "ascendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "descendantuuid": "c9732223-5e57-4d36-b412-91122ecb900f", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'a1476e12-e8fd-4bdc-a1a1-68177652431d', 'INSERT', '{"op": "UPDATE", "uuid": "a1476e12-e8fd-4bdc-a1a1-68177652431d", "objectuuid": "f1048d9f-e560-459a-91fe-f769ef049648", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '95012cd0-a5ed-4671-a445-782b25924c4c', 'INSERT', '{"uuid": "95012cd0-a5ed-4671-a445-782b25924c4c", "assumed": true, "ascendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "descendantuuid": "a1476e12-e8fd-4bdc-a1a1-68177652431d", "grantedbyroleuuid": null, "grantedbytriggerof": "defa6288-bed7-4ed8-ae6d-fbbb3530a632"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', 'INSERT', '{"uuid": "defa6288-bed7-4ed8-ae6d-fbbb3530a632", "version": 0, "detailsuuid": "f1048d9f-e560-459a-91fe-f769ef049648", "partnernumber": 10000, "partnerreluuid": "f85f9a58-7651-417f-b1b2-cf522bcce415"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'b2cd9234-6651-4c9a-818d-f48610d76095', 'INSERT', '{"uuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "serialid": 245, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', 'b2cd9234-6651-4c9a-818d-f48610d76095', 'INSERT', '{"uuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '25b8066a-59fd-4733-90f2-8ea80c826fff', 'INSERT', '{"uuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "serialid": 246, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'b12dcf3d-9b06-4d32-938c-209adc18ce37', 'INSERT', '{"op": "DELETE", "uuid": "b12dcf3d-9b06-4d32-938c-209adc18ce37", "objectuuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'e17b347d-7ad8-422a-9418-1c55851e6e63', 'INSERT', '{"uuid": "e17b347d-7ad8-422a-9418-1c55851e6e63", "assumed": true, "ascendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "descendantuuid": "b12dcf3d-9b06-4d32-938c-209adc18ce37", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'daeaae1b-5d88-45a8-8697-cd2e22e519a4', 'INSERT', '{"op": "SELECT", "uuid": "daeaae1b-5d88-45a8-8697-cd2e22e519a4", "objectuuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'b0b5748b-2977-41d8-b60c-4cd0cdf6227e', 'INSERT', '{"uuid": "b0b5748b-2977-41d8-b60c-4cd0cdf6227e", "assumed": true, "ascendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "descendantuuid": "daeaae1b-5d88-45a8-8697-cd2e22e519a4", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'fd07e597-fc5d-4c64-b491-76a5420aec78', 'INSERT', '{"op": "UPDATE", "uuid": "fd07e597-fc5d-4c64-b491-76a5420aec78", "objectuuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '15aaed6e-7f22-4d6e-b2b3-30466982b87b', 'INSERT', '{"uuid": "15aaed6e-7f22-4d6e-b2b3-30466982b87b", "assumed": true, "ascendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "descendantuuid": "fd07e597-fc5d-4c64-b491-76a5420aec78", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ecde7ac8-3b81-4864-8b26-2e07cdc49190', 'INSERT', '{"op": "DELETE", "uuid": "ecde7ac8-3b81-4864-8b26-2e07cdc49190", "objectuuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '66111571-a50d-45ce-894e-8c9fa6fc3ae8', 'INSERT', '{"uuid": "66111571-a50d-45ce-894e-8c9fa6fc3ae8", "assumed": true, "ascendantuuid": "0726dd6c-118e-4cbc-9077-d4dcb0e61643", "descendantuuid": "ecde7ac8-3b81-4864-8b26-2e07cdc49190", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'fc871f18-a6a5-4cb7-9f23-fee703a845c4', 'INSERT', '{"op": "SELECT", "uuid": "fc871f18-a6a5-4cb7-9f23-fee703a845c4", "objectuuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '87d42752-e7b0-44e5-837e-0b58675d5d57', 'INSERT', '{"uuid": "87d42752-e7b0-44e5-837e-0b58675d5d57", "assumed": true, "ascendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "descendantuuid": "fc871f18-a6a5-4cb7-9f23-fee703a845c4", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '1e643070-dafa-46db-8294-fecd8249232e', 'INSERT', '{"op": "UPDATE", "uuid": "1e643070-dafa-46db-8294-fecd8249232e", "objectuuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'aa201d37-3a49-454e-a630-16cfa631aa89', 'INSERT', '{"uuid": "aa201d37-3a49-454e-a630-16cfa631aa89", "assumed": true, "ascendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "descendantuuid": "1e643070-dafa-46db-8294-fecd8249232e", "grantedbyroleuuid": null, "grantedbytriggerof": "25b8066a-59fd-4733-90f2-8ea80c826fff"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', '25b8066a-59fd-4733-90f2-8ea80c826fff', 'INSERT', '{"uuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "version": 0, "detailsuuid": "b2cd9234-6651-4c9a-818d-f48610d76095", "partnernumber": 11018, "partnerreluuid": "463c4856-495f-4ab3-b26c-7b2f96b05ab5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', '871eadbe-c143-444a-966c-cc4494ba93bf', 'INSERT', '{"uuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "serialid": 247, "objecttable": "hs_office.partner_details"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner_details', '871eadbe-c143-444a-966c-cc4494ba93bf', 'INSERT', '{"uuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "version": 0, "birthday": null, "birthname": null, "birthplace": null, "dateofdeath": null, "registrationnumber": null, "registrationoffice": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.object', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', 'INSERT', '{"uuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "serialid": 248, "objecttable": "hs_office.partner"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '08c5e34a-9a18-445b-9fbb-85a3ff34927b', 'INSERT', '{"op": "DELETE", "uuid": "08c5e34a-9a18-445b-9fbb-85a3ff34927b", "objectuuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'e25cf8b4-6034-4849-854b-d94e4dd4a2fc', 'INSERT', '{"uuid": "e25cf8b4-6034-4849-854b-d94e4dd4a2fc", "assumed": true, "ascendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "descendantuuid": "08c5e34a-9a18-445b-9fbb-85a3ff34927b", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '71520b2b-f697-4135-a748-8ba36939915d', 'INSERT', '{"op": "SELECT", "uuid": "71520b2b-f697-4135-a748-8ba36939915d", "objectuuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'd0f7b382-1feb-40be-9537-b27801c05498', 'INSERT', '{"uuid": "d0f7b382-1feb-40be-9537-b27801c05498", "assumed": true, "ascendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "descendantuuid": "71520b2b-f697-4135-a748-8ba36939915d", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'ffbddcbf-8922-4b3f-9248-47b86638a1b6', 'INSERT', '{"op": "UPDATE", "uuid": "ffbddcbf-8922-4b3f-9248-47b86638a1b6", "objectuuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'a340ffd7-89fd-462a-9c8d-53e6446f6b4b', 'INSERT', '{"uuid": "a340ffd7-89fd-462a-9c8d-53e6446f6b4b", "assumed": true, "ascendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "descendantuuid": "ffbddcbf-8922-4b3f-9248-47b86638a1b6", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '07b70014-fbf6-480a-a128-6dadf6ea6c49', 'INSERT', '{"op": "DELETE", "uuid": "07b70014-fbf6-480a-a128-6dadf6ea6c49", "objectuuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', 'ec59d5b3-2b86-4122-a4b4-602b1a0cabbd', 'INSERT', '{"uuid": "ec59d5b3-2b86-4122-a4b4-602b1a0cabbd", "assumed": true, "ascendantuuid": "256083e7-90ac-4f38-9bc1-deedb0f78d2c", "descendantuuid": "07b70014-fbf6-480a-a128-6dadf6ea6c49", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', '193ceb34-df58-46b9-92e5-62ce50a367c9', 'INSERT', '{"op": "SELECT", "uuid": "193ceb34-df58-46b9-92e5-62ce50a367c9", "objectuuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '269cf1ee-af0c-4446-85c4-bead23beac87', 'INSERT', '{"uuid": "269cf1ee-af0c-4446-85c4-bead23beac87", "assumed": true, "ascendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "descendantuuid": "193ceb34-df58-46b9-92e5-62ce50a367c9", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.permission', 'c198dbfe-def4-43ff-ae55-8e0a58f068c7', 'INSERT', '{"op": "UPDATE", "uuid": "c198dbfe-def4-43ff-ae55-8e0a58f068c7", "objectuuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '17e8a223-4aa0-4e35-aca3-f381f9ce1328', 'INSERT', '{"op": "DELETE", "uuid": "17e8a223-4aa0-4e35-aca3-f381f9ce1328", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'rbac.grant', '854cef44-9dd6-413c-99f1-34f4f09e727c', 'INSERT', '{"uuid": "854cef44-9dd6-413c-99f1-34f4f09e727c", "assumed": true, "ascendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "descendantuuid": "c198dbfe-def4-43ff-ae55-8e0a58f068c7", "grantedbyroleuuid": null, "grantedbytriggerof": "c83c9583-a825-4a2d-96b7-fec9dd635fbc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2033', 'hs_office.partner', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', 'INSERT', '{"uuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "version": 0, "detailsuuid": "871eadbe-c143-444a-966c-cc4494ba93bf", "partnernumber": 11019, "partnerreluuid": "ecf9603d-1bc4-417b-b953-552b8f08f6f3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'INSERT', '{"uuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "serialid": 249, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'fbcdbc8e-c599-43b4-85cc-4853a56dc0dd', 'INSERT', '{"uuid": "fbcdbc8e-c599-43b4-85cc-4853a56dc0dd", "assumed": true, "ascendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "descendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '67d27951-28c5-4bc7-932e-87ef90fa8d4e', 'INSERT', '{"uuid": "67d27951-28c5-4bc7-932e-87ef90fa8d4e", "assumed": true, "ascendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "descendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '24044b00-dcd1-4b61-92bf-40dfded44629', 'INSERT', '{"uuid": "24044b00-dcd1-4b61-92bf-40dfded44629", "assumed": true, "ascendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "descendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e', 'INSERT', '{"op": "DELETE", "uuid": "5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e", "objectuuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'e3cb6e12-2d16-416b-9121-73ba15fa74c1', 'INSERT', '{"uuid": "e3cb6e12-2d16-416b-9121-73ba15fa74c1", "assumed": true, "ascendantuuid": "98d81696-7c71-4ffe-bfc2-1fea37613440", "descendantuuid": "5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '68136a56-de73-425b-bc05-ab6fed1cdfd1', 'INSERT', '{"op": "SELECT", "uuid": "68136a56-de73-425b-bc05-ab6fed1cdfd1", "objectuuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '4b8e69b8-385c-4148-8487-927bad14fd5c', 'INSERT', '{"uuid": "4b8e69b8-385c-4148-8487-927bad14fd5c", "assumed": true, "ascendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "descendantuuid": "68136a56-de73-425b-bc05-ab6fed1cdfd1", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '43c48616-3e31-4bed-9727-f9e6d6447378', 'INSERT', '{"op": "UPDATE", "uuid": "43c48616-3e31-4bed-9727-f9e6d6447378", "objectuuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '0d2aa1bd-9da9-4906-9e3f-46b26aab00ad', 'INSERT', '{"uuid": "0d2aa1bd-9da9-4906-9e3f-46b26aab00ad", "assumed": true, "ascendantuuid": "0f5c3f08-d249-404a-b740-d759fced2d09", "descendantuuid": "43c48616-3e31-4bed-9727-f9e6d6447378", "grantedbyroleuuid": null, "grantedbytriggerof": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'INSERT', '{"uuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "vatid": "DE217249198", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "mim", "debitorreluuid": "f415978e-b5c2-4a99-962e-3d31a4658780", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'INSERT', '{"uuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "serialid": 250, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '5bf37920-28fd-4ed4-86ed-b43c3d049f68', 'INSERT', '{"uuid": "5bf37920-28fd-4ed4-86ed-b43c3d049f68", "assumed": true, "ascendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "descendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'de2295a1-4150-4761-8fd3-7e80e29c7ceb', 'INSERT', '{"uuid": "de2295a1-4150-4761-8fd3-7e80e29c7ceb", "assumed": true, "ascendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "descendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd38557f0-0b84-4ba4-bb4e-bb869d15e5e5', 'INSERT', '{"uuid": "d38557f0-0b84-4ba4-bb4e-bb869d15e5e5", "assumed": true, "ascendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "descendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'a6a56680-46da-47fa-b5a0-5012f91bb3d9', 'INSERT', '{"op": "DELETE", "uuid": "a6a56680-46da-47fa-b5a0-5012f91bb3d9", "objectuuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd23335f1-253d-4772-8afb-8bd754a70442', 'INSERT', '{"uuid": "d23335f1-253d-4772-8afb-8bd754a70442", "assumed": true, "ascendantuuid": "0d96a253-347e-4903-9db9-b362335e4341", "descendantuuid": "a6a56680-46da-47fa-b5a0-5012f91bb3d9", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'ca68370e-d560-42ec-bb93-b14df8eacdd8', 'INSERT', '{"op": "SELECT", "uuid": "ca68370e-d560-42ec-bb93-b14df8eacdd8", "objectuuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd786be06-bb72-43ce-9600-b77a9d8b6d74', 'INSERT', '{"uuid": "d786be06-bb72-43ce-9600-b77a9d8b6d74", "assumed": true, "ascendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "descendantuuid": "ca68370e-d560-42ec-bb93-b14df8eacdd8", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '48f6d390-367b-4e7c-ab30-c2e7009248a6', 'INSERT', '{"op": "UPDATE", "uuid": "48f6d390-367b-4e7c-ab30-c2e7009248a6", "objectuuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '5c1c68dd-959c-418e-977b-f8e53b84d588', 'INSERT', '{"uuid": "5c1c68dd-959c-418e-977b-f8e53b84d588", "assumed": true, "ascendantuuid": "ba80c834-f5a8-4243-98a6-9a3be63c4f47", "descendantuuid": "48f6d390-367b-4e7c-ab30-c2e7009248a6", "grantedbyroleuuid": null, "grantedbytriggerof": "84d4763e-0133-4d81-946b-fb64d1a3fd26"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'INSERT', '{"uuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "xyz", "debitorreluuid": "e9bb6489-3e78-4707-bbe4-70b1fe6212ac", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', 'INSERT', '{"uuid": "bdfc3748-abd1-4bce-a239-f5b4df6715c4", "serialid": 251, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '633f0e7b-90cd-474c-a9ac-a97a1d91c075', 'INSERT', '{"uuid": "633f0e7b-90cd-474c-a9ac-a97a1d91c075", "assumed": true, "ascendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "descendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'bf58a617-cb18-42a8-b34a-56b584e6daf1', 'INSERT', '{"op": "INSERT", "uuid": "bf58a617-cb18-42a8-b34a-56b584e6daf1", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'bf2fdad1-c055-46da-aacb-656703ee3e86', 'INSERT', '{"uuid": "bf2fdad1-c055-46da-aacb-656703ee3e86", "assumed": true, "ascendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "descendantuuid": "270aac69-03bb-4429-b925-3019bd92cf32", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'dfbc7ea6-1400-47f9-8ebf-f7dee78aa28a', 'INSERT', '{"uuid": "dfbc7ea6-1400-47f9-8ebf-f7dee78aa28a", "assumed": true, "ascendantuuid": "270aac69-03bb-4429-b925-3019bd92cf32", "descendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'cd8e900a-3f5f-4b54-abdd-72b79c3f3203', 'INSERT', '{"op": "DELETE", "uuid": "cd8e900a-3f5f-4b54-abdd-72b79c3f3203", "objectuuid": "bdfc3748-abd1-4bce-a239-f5b4df6715c4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '3d37a820-124b-4c74-8445-09e712c1f403', 'INSERT', '{"uuid": "3d37a820-124b-4c74-8445-09e712c1f403", "assumed": true, "ascendantuuid": "dc8ae2b6-d20e-4592-8356-3547bcc58f80", "descendantuuid": "cd8e900a-3f5f-4b54-abdd-72b79c3f3203", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'f47459e8-dfd5-41e2-8b4b-c7999197f56e', 'INSERT', '{"op": "SELECT", "uuid": "f47459e8-dfd5-41e2-8b4b-c7999197f56e", "objectuuid": "bdfc3748-abd1-4bce-a239-f5b4df6715c4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '8d29d43c-bbf5-425a-b6e5-1a145ace1c01', 'INSERT', '{"uuid": "8d29d43c-bbf5-425a-b6e5-1a145ace1c01", "assumed": true, "ascendantuuid": "7d632200-5506-4856-a3c0-d806b1ee708b", "descendantuuid": "f47459e8-dfd5-41e2-8b4b-c7999197f56e", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'cddce99f-aca2-44e6-aa84-b1fc98c35c8a', 'INSERT', '{"op": "UPDATE", "uuid": "cddce99f-aca2-44e6-aa84-b1fc98c35c8a", "objectuuid": "bdfc3748-abd1-4bce-a239-f5b4df6715c4", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd70a1cb5-cf04-4190-9eea-dbd80c16c4d2', 'INSERT', '{"uuid": "d70a1cb5-cf04-4190-9eea-dbd80c16c4d2", "assumed": true, "ascendantuuid": "3010c421-5c96-4f0d-b214-c773e0915564", "descendantuuid": "cddce99f-aca2-44e6-aa84-b1fc98c35c8a", "grantedbyroleuuid": null, "grantedbytriggerof": "bdfc3748-abd1-4bce-a239-f5b4df6715c4"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', 'INSERT', '{"uuid": "bdfc3748-abd1-4bce-a239-f5b4df6715c4", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "xxx", "debitorreluuid": "bc8c4b35-c55b-4c3e-9122-94485909b17e", "vatcountrycode": null, "vatreversecharge": true, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', '67c2d793-212f-4ce0-a750-b18224a93c73', 'INSERT', '{"uuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "serialid": 252, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd163cdba-ab70-4256-ad3f-d971748540e6', 'INSERT', '{"uuid": "d163cdba-ab70-4256-ad3f-d971748540e6", "assumed": true, "ascendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "descendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '98ee8921-16e1-434b-8887-aff3718c8f18', 'INSERT', '{"uuid": "98ee8921-16e1-434b-8887-aff3718c8f18", "assumed": true, "ascendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "descendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '58918d45-f28a-478a-a871-2afee40c3c79', 'INSERT', '{"uuid": "58918d45-f28a-478a-a871-2afee40c3c79", "assumed": true, "ascendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "descendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '4386a60e-d5b7-4f36-bd53-1de1e52ea755', 'INSERT', '{"op": "DELETE", "uuid": "4386a60e-d5b7-4f36-bd53-1de1e52ea755", "objectuuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '874563ee-3587-4569-b418-9f080682f631', 'INSERT', '{"uuid": "874563ee-3587-4569-b418-9f080682f631", "assumed": true, "ascendantuuid": "eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe", "descendantuuid": "4386a60e-d5b7-4f36-bd53-1de1e52ea755", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'e19225c5-a87b-464e-8c63-3f52a45b107f', 'INSERT', '{"op": "SELECT", "uuid": "e19225c5-a87b-464e-8c63-3f52a45b107f", "objectuuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'a52465da-bde2-4c5f-96f8-ccfc3d97f1e1', 'INSERT', '{"uuid": "a52465da-bde2-4c5f-96f8-ccfc3d97f1e1", "assumed": true, "ascendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "descendantuuid": "e19225c5-a87b-464e-8c63-3f52a45b107f", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'ab491da9-8661-485f-90f4-a85c7f3310f6', 'INSERT', '{"op": "UPDATE", "uuid": "ab491da9-8661-485f-90f4-a85c7f3310f6", "objectuuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'b4e45383-d41c-44e1-a227-94b7e34b1cfe', 'INSERT', '{"uuid": "b4e45383-d41c-44e1-a227-94b7e34b1cfe", "assumed": true, "ascendantuuid": "8255ff29-5961-496b-9fda-c71078e47e51", "descendantuuid": "ab491da9-8661-485f-90f4-a85c7f3310f6", "grantedbyroleuuid": null, "grantedbytriggerof": "67c2d793-212f-4ce0-a750-b18224a93c73"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', '67c2d793-212f-4ce0-a750-b18224a93c73', 'INSERT', '{"uuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "vatid": "DE 236 109 136", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "rar", "debitorreluuid": "ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', '3692b171-10ef-4f20-97de-ed5fa562ca46', 'INSERT', '{"uuid": "3692b171-10ef-4f20-97de-ed5fa562ca46", "serialid": 253, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'db8ecbf3-1287-46b1-a205-d91a8305d8fc', 'INSERT', '{"uuid": "db8ecbf3-1287-46b1-a205-d91a8305d8fc", "assumed": true, "ascendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "descendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'dab47748-a3c4-4eac-8c99-9213bb8d3541', 'INSERT', '{"uuid": "dab47748-a3c4-4eac-8c99-9213bb8d3541", "assumed": true, "ascendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "descendantuuid": "7e71f107-6953-42c7-a560-dc9036094198", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '58820fb8-453c-4209-aaf0-9e7b125b0ce0', 'INSERT', '{"uuid": "58820fb8-453c-4209-aaf0-9e7b125b0ce0", "assumed": true, "ascendantuuid": "7e71f107-6953-42c7-a560-dc9036094198", "descendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'b0214c88-ae13-4faf-9870-01872398bbab', 'INSERT', '{"op": "DELETE", "uuid": "b0214c88-ae13-4faf-9870-01872398bbab", "objectuuid": "3692b171-10ef-4f20-97de-ed5fa562ca46", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'e1cd2ca9-d31d-40f3-9ce3-94b08d9b4c38', 'INSERT', '{"uuid": "e1cd2ca9-d31d-40f3-9ce3-94b08d9b4c38", "assumed": true, "ascendantuuid": "3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c", "descendantuuid": "b0214c88-ae13-4faf-9870-01872398bbab", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '9398d762-ff69-44a0-a07f-2149bf07bb4f', 'INSERT', '{"op": "SELECT", "uuid": "9398d762-ff69-44a0-a07f-2149bf07bb4f", "objectuuid": "3692b171-10ef-4f20-97de-ed5fa562ca46", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '75781d3a-e6f0-4e6e-bcb1-91ac1f28de4b', 'INSERT', '{"uuid": "75781d3a-e6f0-4e6e-bcb1-91ac1f28de4b", "assumed": true, "ascendantuuid": "51bb98dd-9201-40e4-b008-221337eeb471", "descendantuuid": "9398d762-ff69-44a0-a07f-2149bf07bb4f", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'eebe4432-38e2-44dc-85c6-995cbecd173b', 'INSERT', '{"op": "UPDATE", "uuid": "eebe4432-38e2-44dc-85c6-995cbecd173b", "objectuuid": "3692b171-10ef-4f20-97de-ed5fa562ca46", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd5b448f7-a22c-4470-8289-f451c32187a0', 'INSERT', '{"uuid": "d5b448f7-a22c-4470-8289-f451c32187a0", "assumed": true, "ascendantuuid": "6ec65964-76d1-4e7d-aacc-6a18e4eadf67", "descendantuuid": "eebe4432-38e2-44dc-85c6-995cbecd173b", "grantedbyroleuuid": null, "grantedbytriggerof": "3692b171-10ef-4f20-97de-ed5fa562ca46"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', '3692b171-10ef-4f20-97de-ed5fa562ca46', 'INSERT', '{"uuid": "3692b171-10ef-4f20-97de-ed5fa562ca46", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "yyy", "debitorreluuid": "268c2ce6-8945-4393-9916-ac90050f064a", "vatcountrycode": null, "vatreversecharge": true, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', 'INSERT', '{"uuid": "ce424fb0-bcc4-43ef-bc62-e923fb337fde", "serialid": 254, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '5178fb97-8a32-41b3-831e-db6dd08a5bc2', 'INSERT', '{"uuid": "5178fb97-8a32-41b3-831e-db6dd08a5bc2", "assumed": true, "ascendantuuid": "b8350678-d30a-422a-bb5d-79c65af2f890", "descendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'a77cc0db-2956-44a5-8824-78e2354c8428', 'INSERT', '{"uuid": "a77cc0db-2956-44a5-8824-78e2354c8428", "assumed": true, "ascendantuuid": "0f833f5a-8afb-4934-a8a6-9dadbdcf89dd", "descendantuuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '2d448cac-f8dc-423c-9a1e-a1c1c9c1f1d2', 'INSERT', '{"uuid": "2d448cac-f8dc-423c-9a1e-a1c1c9c1f1d2", "assumed": true, "ascendantuuid": "bbfb4fc6-80f7-4a82-aa82-3d787539ebeb", "descendantuuid": "c85e8116-355e-408a-93fa-c699da2a76f3", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'f1838834-17f4-45ae-823d-cfd97b9ad7d0', 'INSERT', '{"op": "DELETE", "uuid": "f1838834-17f4-45ae-823d-cfd97b9ad7d0", "objectuuid": "ce424fb0-bcc4-43ef-bc62-e923fb337fde", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '069de646-00f2-401b-8d34-976428e4f868', 'INSERT', '{"uuid": "069de646-00f2-401b-8d34-976428e4f868", "assumed": true, "ascendantuuid": "3de42185-1e32-4936-b305-d990b85c45c2", "descendantuuid": "f1838834-17f4-45ae-823d-cfd97b9ad7d0", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '94815866-8e0d-4177-9026-3fdad0866fc2', 'INSERT', '{"op": "SELECT", "uuid": "94815866-8e0d-4177-9026-3fdad0866fc2", "objectuuid": "ce424fb0-bcc4-43ef-bc62-e923fb337fde", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '634ae328-cc40-4bb1-9c5f-0aed06ed0a2c', 'INSERT', '{"uuid": "634ae328-cc40-4bb1-9c5f-0aed06ed0a2c", "assumed": true, "ascendantuuid": "07aa8ca8-e06f-4335-9cb0-99e98d45b2c6", "descendantuuid": "94815866-8e0d-4177-9026-3fdad0866fc2", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'c9448020-2d88-456d-827c-0b24917a78c6', 'INSERT', '{"op": "UPDATE", "uuid": "c9448020-2d88-456d-827c-0b24917a78c6", "objectuuid": "ce424fb0-bcc4-43ef-bc62-e923fb337fde", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '631ea533-9bc0-4935-aad9-376cf672e370', 'INSERT', '{"uuid": "631ea533-9bc0-4935-aad9-376cf672e370", "assumed": true, "ascendantuuid": "bb8fc553-9dbe-4ea5-a3ea-02d129841f68", "descendantuuid": "c9448020-2d88-456d-827c-0b24917a78c6", "grantedbyroleuuid": null, "grantedbytriggerof": "ce424fb0-bcc4-43ef-bc62-e923fb337fde"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', 'INSERT', '{"uuid": "ce424fb0-bcc4-43ef-bc62-e923fb337fde", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "hsh", "debitorreluuid": "78123dac-fed2-4e3e-817b-0c13a2129dfe", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', 'INSERT', '{"uuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "serialid": 255, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '6dcce6d4-feb6-4a43-99af-2b85bea67e0d', 'INSERT', '{"uuid": "6dcce6d4-feb6-4a43-99af-2b85bea67e0d", "assumed": true, "ascendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "descendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '118241f6-e1f6-42ad-9ba7-e0450e4f74d7', 'INSERT', '{"uuid": "118241f6-e1f6-42ad-9ba7-e0450e4f74d7", "assumed": true, "ascendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "descendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'c787f3a6-d143-4fa1-99bf-6232351dc221', 'INSERT', '{"uuid": "c787f3a6-d143-4fa1-99bf-6232351dc221", "assumed": true, "ascendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "descendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '8b8b38a3-679a-4331-962c-c540eada4c22', 'INSERT', '{"op": "DELETE", "uuid": "8b8b38a3-679a-4331-962c-c540eada4c22", "objectuuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '192cdc24-cc97-4cef-a33d-ce6f0574e3fc', 'INSERT', '{"uuid": "192cdc24-cc97-4cef-a33d-ce6f0574e3fc", "assumed": true, "ascendantuuid": "e5871fb2-3928-4139-9468-10f0f12d5e5f", "descendantuuid": "8b8b38a3-679a-4331-962c-c540eada4c22", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'a59c2244-46ef-42ce-9a35-9efeb0a02068', 'INSERT', '{"op": "SELECT", "uuid": "a59c2244-46ef-42ce-9a35-9efeb0a02068", "objectuuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '4e9d7489-d21e-4fed-aad7-035614acf3ed', 'INSERT', '{"uuid": "4e9d7489-d21e-4fed-aad7-035614acf3ed", "assumed": true, "ascendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "descendantuuid": "a59c2244-46ef-42ce-9a35-9efeb0a02068", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '4556335e-4c02-4879-a850-cc792db27b5b', 'INSERT', '{"op": "UPDATE", "uuid": "4556335e-4c02-4879-a850-cc792db27b5b", "objectuuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'bda55f4c-43bb-443e-b853-b4716ae85897', 'INSERT', '{"uuid": "bda55f4c-43bb-443e-b853-b4716ae85897", "assumed": true, "ascendantuuid": "834d7138-e338-4517-aacb-1c6319fa34d8", "descendantuuid": "4556335e-4c02-4879-a850-cc792db27b5b", "grantedbyroleuuid": null, "grantedbytriggerof": "ccbd7baa-494d-4bfc-b5bb-4310e607df04"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', 'INSERT', '{"uuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "wws", "debitorreluuid": "b9854fdd-5192-4e2b-b82f-62639ff1a3cd", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.object', 'ade3baa7-760f-488b-962d-7e365ad1402f', 'INSERT', '{"uuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "serialid": 256, "objecttable": "hs_office.debitor"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '15e635e4-4269-4feb-829c-120b0df1861c', 'INSERT', '{"uuid": "15e635e4-4269-4feb-829c-120b0df1861c", "assumed": true, "ascendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "descendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '133dcb7b-48f7-4b23-a5db-b092084e0726', 'INSERT', '{"uuid": "133dcb7b-48f7-4b23-a5db-b092084e0726", "assumed": true, "ascendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "descendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '1c7a832b-fafa-433d-bc00-8d082a9cf8de', 'INSERT', '{"uuid": "1c7a832b-fafa-433d-bc00-8d082a9cf8de", "assumed": true, "ascendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "descendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '88eaec32-bd9e-4fd9-973d-1aaa932c8115', 'INSERT', '{"op": "DELETE", "uuid": "88eaec32-bd9e-4fd9-973d-1aaa932c8115", "objectuuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '33350472-45ed-4180-bc0c-4bdd58ebe062', 'INSERT', '{"uuid": "33350472-45ed-4180-bc0c-4bdd58ebe062", "assumed": true, "ascendantuuid": "d5a60c82-347b-4ebb-b95f-afff297bf966", "descendantuuid": "88eaec32-bd9e-4fd9-973d-1aaa932c8115", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', '62c26e94-cc22-4558-9bee-8ec8e6d29b95', 'INSERT', '{"op": "SELECT", "uuid": "62c26e94-cc22-4558-9bee-8ec8e6d29b95", "objectuuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', 'd240af3f-e83e-4cc5-8bcb-35fefcb4eb39', 'INSERT', '{"uuid": "d240af3f-e83e-4cc5-8bcb-35fefcb4eb39", "assumed": true, "ascendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "descendantuuid": "62c26e94-cc22-4558-9bee-8ec8e6d29b95", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.permission', 'a0c34da0-2ce5-4877-8172-1306a2599c87', 'INSERT', '{"op": "UPDATE", "uuid": "a0c34da0-2ce5-4877-8172-1306a2599c87", "objectuuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'rbac.grant', '82cc5748-33be-4c93-807a-65645f980b3e', 'INSERT', '{"uuid": "82cc5748-33be-4c93-807a-65645f980b3e", "assumed": true, "ascendantuuid": "bb40b3e2-f355-491e-a3cd-fb3ee258d4b8", "descendantuuid": "a0c34da0-2ce5-4877-8172-1306a2599c87", "grantedbyroleuuid": null, "grantedbytriggerof": "ade3baa7-760f-488b-962d-7e365ad1402f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2082', 'hs_office.debitor', 'ade3baa7-760f-488b-962d-7e365ad1402f', 'INSERT', '{"uuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "vatid": "", "version": 0, "billable": false, "vatbusiness": true, "defaultprefix": "dph", "debitorreluuid": "dd0eae3e-7f45-45dd-b686-f39e046918b0", "vatcountrycode": null, "vatreversecharge": false, "debitornumbersuffix": "00", "refundbankaccountuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'INSERT', '{"uuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "serialid": 257, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', 'INSERT', '{"uuid": "5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c", "roletype": "OWNER", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'fe68c4df-a2af-4751-acb5-8bcac36abf8b', 'INSERT', '{"uuid": "fe68c4df-a2af-4751-acb5-8bcac36abf8b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c", "grantedbyroleuuid": "5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '0eabdcfb-e308-4e52-8c7f-27643332c947', 'INSERT', '{"uuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "roletype": "ADMIN", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '14e4dbf5-5fa3-4010-91e0-c56e71623ba9', 'INSERT', '{"op": "DELETE", "uuid": "14e4dbf5-5fa3-4010-91e0-c56e71623ba9", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'd52457c6-dd11-4e4f-b98c-fc4ef145f4b2', 'INSERT', '{"uuid": "d52457c6-dd11-4e4f-b98c-fc4ef145f4b2", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "14e4dbf5-5fa3-4010-91e0-c56e71623ba9", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '359f9b02-63f0-47eb-955b-52a344462735', 'INSERT', '{"op": "UPDATE", "uuid": "359f9b02-63f0-47eb-955b-52a344462735", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'f35e02ca-b71a-418e-b942-920580b39932', 'INSERT', '{"uuid": "f35e02ca-b71a-418e-b942-920580b39932", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "359f9b02-63f0-47eb-955b-52a344462735", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '9e05c2de-12c7-4065-9ae5-02773dffc646', 'INSERT', '{"uuid": "9e05c2de-12c7-4065-9ae5-02773dffc646", "assumed": true, "ascendantuuid": "5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c", "descendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'a8db9091-2b28-4f65-931d-4111ebfcb13f', 'INSERT', '{"uuid": "a8db9091-2b28-4f65-931d-4111ebfcb13f", "assumed": true, "ascendantuuid": "3b195996-371c-41e4-9b66-a50553582e17", "descendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '345b8b7b-a948-446f-949a-2a903b460032', 'INSERT', '{"uuid": "345b8b7b-a948-446f-949a-2a903b460032", "roletype": "AGENT", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '05d18d2f-a5be-4b65-9e78-8fa91db4c68f', 'INSERT', '{"op": "SELECT", "uuid": "05d18d2f-a5be-4b65-9e78-8fa91db4c68f", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '811dde92-bb69-4530-9989-c78422f69805', 'INSERT', '{"uuid": "811dde92-bb69-4530-9989-c78422f69805", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "05d18d2f-a5be-4b65-9e78-8fa91db4c68f", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '7bd909a9-e3a5-4f7d-87b6-54263713d4e7', 'INSERT', '{"uuid": "7bd909a9-e3a5-4f7d-87b6-54263713d4e7", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'fed61c45-c1e4-4f84-9194-de069d3b53da', 'INSERT', '{"uuid": "fed61c45-c1e4-4f84-9194-de069d3b53da", "assumed": true, "ascendantuuid": "7de2ab25-6b6a-4b59-ba8d-818110ae4ccb", "descendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'c3293bca-6879-4d1c-bf2d-d48595971608', 'INSERT', '{"uuid": "c3293bca-6879-4d1c-bf2d-d48595971608", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8", "grantedbyroleuuid": null, "grantedbytriggerof": "f97e9751-6e67-40fb-b840-b818dc69afcf"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'f049b588-1279-40e7-be2d-2e691e8a4090', 'INSERT', '{"op": "INSERT", "uuid": "f049b588-1279-40e7-be2d-2e691e8a4090", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '949cf562-60aa-4323-b75e-580d318e6bca', 'INSERT', '{"uuid": "949cf562-60aa-4323-b75e-580d318e6bca", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "f049b588-1279-40e7-be2d-2e691e8a4090", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'a41ad44b-e566-492a-b2b7-9a1ed2bdd18b', 'INSERT', '{"op": "INSERT", "uuid": "a41ad44b-e566-492a-b2b7-9a1ed2bdd18b", "objectuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ed631e28-2c9a-4a4f-9540-c3b1af10d5dc', 'INSERT', '{"uuid": "ed631e28-2c9a-4a4f-9540-c3b1af10d5dc", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "a41ad44b-e566-492a-b2b7-9a1ed2bdd18b", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'INSERT', '{"uuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "status": "ACTIVE", "version": 0, "validity": "[2000-12-06,)", "partneruuid": "91b63591-b1e2-4c65-8ad2-c607be4c1238", "membernumbersuffix": "00", "membershipfeebillable": false}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'INSERT', '{"uuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "serialid": 258, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '39bc569a-8594-4a3e-954f-3055b382af9a', 'INSERT', '{"uuid": "39bc569a-8594-4a3e-954f-3055b382af9a", "roletype": "OWNER", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'f1585e8b-446a-460e-833e-1d9433ae70ad', 'INSERT', '{"uuid": "f1585e8b-446a-460e-833e-1d9433ae70ad", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "39bc569a-8594-4a3e-954f-3055b382af9a", "grantedbyroleuuid": "39bc569a-8594-4a3e-954f-3055b382af9a", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '6df50d79-b958-456a-ac84-a8786f0f18a7', 'INSERT', '{"uuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "roletype": "ADMIN", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '5879bb5b-1171-41e2-bff7-707e18fc0582', 'INSERT', '{"op": "DELETE", "uuid": "5879bb5b-1171-41e2-bff7-707e18fc0582", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '01a32603-f9bb-454b-baf0-d7c39ed5e584', 'INSERT', '{"uuid": "01a32603-f9bb-454b-baf0-d7c39ed5e584", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "5879bb5b-1171-41e2-bff7-707e18fc0582", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'a277424f-d7f0-4568-8cd9-5299a13d0f4e', 'INSERT', '{"op": "UPDATE", "uuid": "a277424f-d7f0-4568-8cd9-5299a13d0f4e", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'b0fa636e-9a00-40e1-8e5e-12c885f91cb7', 'INSERT', '{"uuid": "b0fa636e-9a00-40e1-8e5e-12c885f91cb7", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "a277424f-d7f0-4568-8cd9-5299a13d0f4e", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '6676bb28-ea3c-496f-8a74-ba255c27f47b', 'INSERT', '{"uuid": "6676bb28-ea3c-496f-8a74-ba255c27f47b", "assumed": true, "ascendantuuid": "39bc569a-8594-4a3e-954f-3055b382af9a", "descendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'a4e394f5-8eee-4cd7-ae31-ac8848eed47d', 'INSERT', '{"uuid": "a4e394f5-8eee-4cd7-ae31-ac8848eed47d", "assumed": true, "ascendantuuid": "9771d06d-8352-404c-aaba-743800e621e9", "descendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'INSERT', '{"uuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "roletype": "AGENT", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '66c939e9-0515-4cb0-ab1a-8dcd9243c53f', 'INSERT', '{"op": "SELECT", "uuid": "66c939e9-0515-4cb0-ab1a-8dcd9243c53f", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'c36a1b03-32bc-4c21-8b98-dfb6ea6d2de4', 'INSERT', '{"uuid": "c36a1b03-32bc-4c21-8b98-dfb6ea6d2de4", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "66c939e9-0515-4cb0-ab1a-8dcd9243c53f", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '0b37d7ad-4248-4de2-9d59-67364db91066', 'INSERT', '{"uuid": "0b37d7ad-4248-4de2-9d59-67364db91066", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '96b83c48-cd0d-416c-8e7d-0c4cc652afe5', 'INSERT', '{"uuid": "96b83c48-cd0d-416c-8e7d-0c4cc652afe5", "assumed": true, "ascendantuuid": "b34392da-5070-40dd-ab44-d411a9742f6d", "descendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ce2c8b8a-09c3-40c5-ba23-0f632d49dfec', 'INSERT', '{"uuid": "ce2c8b8a-09c3-40c5-ba23-0f632d49dfec", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "e37e21bc-4d4f-4d41-8c24-399be1680a15", "grantedbyroleuuid": null, "grantedbytriggerof": "db1fa6bf-85ff-4302-b7c3-9a66f9761830"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'ad1241d8-512f-4589-aed2-958e1fd6441b', 'INSERT', '{"op": "INSERT", "uuid": "ad1241d8-512f-4589-aed2-958e1fd6441b", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'b53df30d-a8a0-4485-bbd6-c827ac428ee6', 'INSERT', '{"uuid": "b53df30d-a8a0-4485-bbd6-c827ac428ee6", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "ad1241d8-512f-4589-aed2-958e1fd6441b", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '39a2eb59-2ba9-486d-8146-0a9a4d85769b', 'INSERT', '{"op": "INSERT", "uuid": "39a2eb59-2ba9-486d-8146-0a9a4d85769b", "objectuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ccf1a982-03c0-4069-a93f-48efe0edc4fd', 'INSERT', '{"uuid": "ccf1a982-03c0-4069-a93f-48efe0edc4fd", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "39a2eb59-2ba9-486d-8146-0a9a4d85769b", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'INSERT', '{"uuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "status": "UNKNOWN", "version": 0, "validity": "[2000-12-06,2016-01-01)", "partneruuid": "db7f287e-dfd7-4627-88e3-407cac226472", "membernumbersuffix": "00", "membershipfeebillable": true}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'INSERT', '{"uuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "serialid": 259, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '539a38db-5f7d-4bbc-896d-616bd32f0f06', 'INSERT', '{"uuid": "539a38db-5f7d-4bbc-896d-616bd32f0f06", "roletype": "OWNER", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '5db7b9ab-85de-4337-9d4f-d8dfad2276c1', 'INSERT', '{"uuid": "5db7b9ab-85de-4337-9d4f-d8dfad2276c1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "539a38db-5f7d-4bbc-896d-616bd32f0f06", "grantedbyroleuuid": "539a38db-5f7d-4bbc-896d-616bd32f0f06", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '209720a4-ab91-4b78-9fc0-ad5780a97934', 'INSERT', '{"uuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "roletype": "ADMIN", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '725794f0-c526-4854-b498-401caec8b1b5', 'INSERT', '{"uuid": "725794f0-c526-4854-b498-401caec8b1b5", "assumed": true, "ascendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "descendantuuid": "17e8a223-4aa0-4e35-aca3-f381f9ce1328", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'a24d0918-c78b-44a2-8c90-965940f30b95', 'INSERT', '{"op": "UPDATE", "uuid": "a24d0918-c78b-44a2-8c90-965940f30b95", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '702ad75d-7582-41db-ad5d-7df4a8ac6e4b', 'INSERT', '{"uuid": "702ad75d-7582-41db-ad5d-7df4a8ac6e4b", "assumed": true, "ascendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "descendantuuid": "a24d0918-c78b-44a2-8c90-965940f30b95", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '99a93554-7343-44de-987b-a35b06c8a8a6', 'INSERT', '{"uuid": "99a93554-7343-44de-987b-a35b06c8a8a6", "assumed": true, "ascendantuuid": "539a38db-5f7d-4bbc-896d-616bd32f0f06", "descendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '99de5054-1c52-481d-9536-d39795f0ce19', 'INSERT', '{"uuid": "99de5054-1c52-481d-9536-d39795f0ce19", "assumed": true, "ascendantuuid": "cb295fdb-e294-4b05-944e-f0a4929ebeeb", "descendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', 'INSERT', '{"uuid": "34a3d0d7-b889-4d5a-80f9-a74d0b56f74a", "roletype": "AGENT", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '10971aec-daed-47b5-8514-f88f9ca1016c', 'INSERT', '{"op": "SELECT", "uuid": "10971aec-daed-47b5-8514-f88f9ca1016c", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'f7000b2a-f204-46a1-9689-d355cf929bb9', 'INSERT', '{"uuid": "f7000b2a-f204-46a1-9689-d355cf929bb9", "assumed": true, "ascendantuuid": "34a3d0d7-b889-4d5a-80f9-a74d0b56f74a", "descendantuuid": "10971aec-daed-47b5-8514-f88f9ca1016c", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'af8fadc7-e1f9-4d47-9581-5d8805d4f6d8', 'INSERT', '{"uuid": "af8fadc7-e1f9-4d47-9581-5d8805d4f6d8", "assumed": true, "ascendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "descendantuuid": "34a3d0d7-b889-4d5a-80f9-a74d0b56f74a", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '7a45f88b-2b3e-471f-9ded-45b3cf3520f9', 'INSERT', '{"uuid": "7a45f88b-2b3e-471f-9ded-45b3cf3520f9", "assumed": true, "ascendantuuid": "f3af3c81-a512-47ea-8b47-0386291e6590", "descendantuuid": "34a3d0d7-b889-4d5a-80f9-a74d0b56f74a", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '68707555-e302-4a1d-9bf1-f7f06686a8fd', 'INSERT', '{"uuid": "68707555-e302-4a1d-9bf1-f7f06686a8fd", "assumed": true, "ascendantuuid": "34a3d0d7-b889-4d5a-80f9-a74d0b56f74a", "descendantuuid": "a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29", "grantedbyroleuuid": null, "grantedbytriggerof": "cf4c2c71-c6a0-4887-83a3-67509371b8af"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'e0c2115c-f70e-4c77-87a7-d1f524f47df4', 'INSERT', '{"op": "INSERT", "uuid": "e0c2115c-f70e-4c77-87a7-d1f524f47df4", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'd6832b5b-41f8-40cb-99ca-7456ea3c9c20', 'INSERT', '{"uuid": "d6832b5b-41f8-40cb-99ca-7456ea3c9c20", "assumed": true, "ascendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "descendantuuid": "e0c2115c-f70e-4c77-87a7-d1f524f47df4", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '6cfb3c88-43bd-41a3-9c01-29bbcb67752e', 'INSERT', '{"op": "INSERT", "uuid": "6cfb3c88-43bd-41a3-9c01-29bbcb67752e", "objectuuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '022c8d18-6746-49bf-b153-1a10c788debd', 'INSERT', '{"uuid": "022c8d18-6746-49bf-b153-1a10c788debd", "assumed": true, "ascendantuuid": "209720a4-ab91-4b78-9fc0-ad5780a97934", "descendantuuid": "6cfb3c88-43bd-41a3-9c01-29bbcb67752e", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'INSERT', '{"uuid": "cf4c2c71-c6a0-4887-83a3-67509371b8af", "status": "ACTIVE", "version": 0, "validity": "[2021-04-01,)", "partneruuid": "a083dfa1-afb0-4531-8a1b-8f4ba78a6215", "membernumbersuffix": "00", "membershipfeebillable": true}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'INSERT', '{"uuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "serialid": 260, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '2bb03c85-0eba-4ef2-be45-7bd03fb60936', 'INSERT', '{"uuid": "2bb03c85-0eba-4ef2-be45-7bd03fb60936", "roletype": "OWNER", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'a74df0e5-a5a6-4e0e-8969-7058dc5ed655', 'INSERT', '{"uuid": "a74df0e5-a5a6-4e0e-8969-7058dc5ed655", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "2bb03c85-0eba-4ef2-be45-7bd03fb60936", "grantedbyroleuuid": "2bb03c85-0eba-4ef2-be45-7bd03fb60936", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', 'INSERT', '{"uuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "roletype": "ADMIN", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '7e91e09c-a072-44b1-af1f-bc1e6430d371', 'INSERT', '{"op": "DELETE", "uuid": "7e91e09c-a072-44b1-af1f-bc1e6430d371", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'c9949370-fd5c-47b3-9697-82cdd744085d', 'INSERT', '{"uuid": "c9949370-fd5c-47b3-9697-82cdd744085d", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "7e91e09c-a072-44b1-af1f-bc1e6430d371", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '4dc88a9e-38e7-426b-a598-f246cef849ed', 'INSERT', '{"op": "UPDATE", "uuid": "4dc88a9e-38e7-426b-a598-f246cef849ed", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'fd96b18b-eea4-4e2e-9035-0f23fd1e5a46', 'INSERT', '{"uuid": "fd96b18b-eea4-4e2e-9035-0f23fd1e5a46", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "4dc88a9e-38e7-426b-a598-f246cef849ed", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ad75c325-6003-4329-bb7f-8ab63e0aacf0', 'INSERT', '{"uuid": "ad75c325-6003-4329-bb7f-8ab63e0aacf0", "assumed": true, "ascendantuuid": "2bb03c85-0eba-4ef2-be45-7bd03fb60936", "descendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '21a9c4a3-8b53-49ab-a851-3d99572abcbd', 'INSERT', '{"uuid": "21a9c4a3-8b53-49ab-a851-3d99572abcbd", "assumed": true, "ascendantuuid": "76968391-174d-4530-b310-1244c4b1897a", "descendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'INSERT', '{"uuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "roletype": "AGENT", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f', 'INSERT', '{"op": "SELECT", "uuid": "7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '3a01050f-832f-45d3-8fb4-05fae7151156', 'INSERT', '{"uuid": "3a01050f-832f-45d3-8fb4-05fae7151156", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ef29ef0c-c3c2-47e6-b046-e86081456208', 'INSERT', '{"uuid": "ef29ef0c-c3c2-47e6-b046-e86081456208", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '72d3e92d-21c2-4de7-86b8-42fd12445585', 'INSERT', '{"uuid": "72d3e92d-21c2-4de7-86b8-42fd12445585", "assumed": true, "ascendantuuid": "863eea7c-8b49-494a-9654-9963f2dbb4e5", "descendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '46587926-e3fb-49a4-a5e8-2c980833071f', 'INSERT', '{"uuid": "46587926-e3fb-49a4-a5e8-2c980833071f", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "b67105de-0348-4d4c-8ccc-aab9ed905eb6", "grantedbyroleuuid": null, "grantedbytriggerof": "af682fb0-f06d-4a2b-affb-40487a079a70"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '3333c620-ed65-4a4a-af0b-71106e0b5b30', 'INSERT', '{"op": "INSERT", "uuid": "3333c620-ed65-4a4a-af0b-71106e0b5b30", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'dcb7676b-137a-4769-9823-979963f60316', 'INSERT', '{"uuid": "dcb7676b-137a-4769-9823-979963f60316", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "3333c620-ed65-4a4a-af0b-71106e0b5b30", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'f8591833-ef9e-42fd-b91b-f66b56267b0a', 'INSERT', '{"op": "INSERT", "uuid": "f8591833-ef9e-42fd-b91b-f66b56267b0a", "objectuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '4ac63eeb-7776-4255-829b-cb5a29f9de16', 'INSERT', '{"uuid": "4ac63eeb-7776-4255-829b-cb5a29f9de16", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "f8591833-ef9e-42fd-b91b-f66b56267b0a", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'INSERT', '{"uuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "status": "ACTIVE", "version": 0, "validity": "[2003-07-12,)", "partneruuid": "029b1c78-d68b-48e6-83e5-8883b9cefe7c", "membernumbersuffix": "00", "membershipfeebillable": true}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'INSERT', '{"uuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "serialid": 261, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '0ee9e55c-9b0f-41fc-9bd5-981f124846d3', 'INSERT', '{"uuid": "0ee9e55c-9b0f-41fc-9bd5-981f124846d3", "roletype": "OWNER", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '5e9523d8-2ad4-4d64-b686-57576aa20f77', 'INSERT', '{"uuid": "5e9523d8-2ad4-4d64-b686-57576aa20f77", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0ee9e55c-9b0f-41fc-9bd5-981f124846d3", "grantedbyroleuuid": "0ee9e55c-9b0f-41fc-9bd5-981f124846d3", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', 'bf27b482-99fb-43fe-8789-b926b9131a32', 'INSERT', '{"uuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "roletype": "ADMIN", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '51da6c66-df21-4619-bb68-2538c6ef2c31', 'INSERT', '{"op": "DELETE", "uuid": "51da6c66-df21-4619-bb68-2538c6ef2c31", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '1766a9c6-2146-4c3e-a857-ea04e8f44164', 'INSERT', '{"uuid": "1766a9c6-2146-4c3e-a857-ea04e8f44164", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "51da6c66-df21-4619-bb68-2538c6ef2c31", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'a16e2346-b56a-4ea3-b07b-f5f494b2b42b', 'INSERT', '{"op": "UPDATE", "uuid": "a16e2346-b56a-4ea3-b07b-f5f494b2b42b", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '956a5f3f-c580-4e65-aae5-43fd79a449b1', 'INSERT', '{"uuid": "956a5f3f-c580-4e65-aae5-43fd79a449b1", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "a16e2346-b56a-4ea3-b07b-f5f494b2b42b", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'b2a2e5b9-cbc3-4a1c-b1e1-a562ab5d95d8', 'INSERT', '{"uuid": "b2a2e5b9-cbc3-4a1c-b1e1-a562ab5d95d8", "assumed": true, "ascendantuuid": "0ee9e55c-9b0f-41fc-9bd5-981f124846d3", "descendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '3fd89676-3561-4958-a6c4-35ef51e64316', 'INSERT', '{"uuid": "3fd89676-3561-4958-a6c4-35ef51e64316", "assumed": true, "ascendantuuid": "f101cc07-ed84-4e34-9f70-62ec6a646e81", "descendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '1d24331c-d029-4539-8b40-2b891f6a75a9', 'INSERT', '{"uuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "roletype": "AGENT", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '7514b6f6-f31f-4397-bb3d-eefe138ebb9d', 'INSERT', '{"op": "SELECT", "uuid": "7514b6f6-f31f-4397-bb3d-eefe138ebb9d", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '523208c9-177d-457e-873c-2ef5dcc79132', 'INSERT', '{"uuid": "523208c9-177d-457e-873c-2ef5dcc79132", "assumed": true, "ascendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "descendantuuid": "7514b6f6-f31f-4397-bb3d-eefe138ebb9d", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '09a84d00-9a3e-462f-84b3-e957d0c8fd39', 'INSERT', '{"uuid": "09a84d00-9a3e-462f-84b3-e957d0c8fd39", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '509316eb-0cd6-4d50-a8ff-8e8ac1d98928', 'INSERT', '{"uuid": "509316eb-0cd6-4d50-a8ff-8e8ac1d98928", "assumed": true, "ascendantuuid": "1d4c6f1f-200f-4a68-ae7b-6fda13687e41", "descendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'f0a81e14-722d-4f40-b3dd-5ebc7b5b3df3', 'INSERT', '{"uuid": "f0a81e14-722d-4f40-b3dd-5ebc7b5b3df3", "assumed": true, "ascendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "descendantuuid": "53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc", "grantedbyroleuuid": null, "grantedbytriggerof": "9c468212-9e05-4b29-9d75-5a2c147b2b8f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1', 'INSERT', '{"op": "INSERT", "uuid": "0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1", "objectuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '20538e3b-737b-40f6-aa1b-b0ede047f65e', 'INSERT', '{"uuid": "20538e3b-737b-40f6-aa1b-b0ede047f65e", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '9ee673c2-196b-4f00-b226-4b5978063f56', 'INSERT', '{"uuid": "9ee673c2-196b-4f00-b226-4b5978063f56", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "bf58a617-cb18-42a8-b34a-56b584e6daf1", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'INSERT', '{"uuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "status": "INVALID", "version": 0, "validity": "empty", "partneruuid": "58ca016b-15ea-41e3-80ba-2603bf736619", "membernumbersuffix": "00", "membershipfeebillable": false}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'INSERT', '{"uuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "serialid": 262, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '0860ac5c-ce03-4f7b-abcb-562676bca90d', 'INSERT', '{"uuid": "0860ac5c-ce03-4f7b-abcb-562676bca90d", "roletype": "OWNER", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'ec90a9db-bff2-4777-8e96-b791e4c05729', 'INSERT', '{"uuid": "ec90a9db-bff2-4777-8e96-b791e4c05729", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0860ac5c-ce03-4f7b-abcb-562676bca90d", "grantedbyroleuuid": "0860ac5c-ce03-4f7b-abcb-562676bca90d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'INSERT', '{"uuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "roletype": "ADMIN", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'd3e00370-8788-4a7c-83d6-693a01ccac0f', 'INSERT', '{"op": "DELETE", "uuid": "d3e00370-8788-4a7c-83d6-693a01ccac0f", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '55a00373-09ec-4006-a3c0-3ec42352dca4', 'INSERT', '{"uuid": "55a00373-09ec-4006-a3c0-3ec42352dca4", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "d3e00370-8788-4a7c-83d6-693a01ccac0f", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'fd972637-8015-4a7a-9591-683814d6dc1c', 'INSERT', '{"op": "UPDATE", "uuid": "fd972637-8015-4a7a-9591-683814d6dc1c", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '81e14d92-f7fe-4f0c-945e-5805f8e7e7a8', 'INSERT', '{"uuid": "81e14d92-f7fe-4f0c-945e-5805f8e7e7a8", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "fd972637-8015-4a7a-9591-683814d6dc1c", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'c961c759-99a7-49e0-8bca-f2965cb44f2e', 'INSERT', '{"uuid": "c961c759-99a7-49e0-8bca-f2965cb44f2e", "assumed": true, "ascendantuuid": "0860ac5c-ce03-4f7b-abcb-562676bca90d", "descendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '5ea574bc-77f5-4161-9382-50c091378fc6', 'INSERT', '{"uuid": "5ea574bc-77f5-4161-9382-50c091378fc6", "assumed": true, "ascendantuuid": "8dfb5e53-1554-4e5c-a045-85121ce4bd71", "descendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', 'INSERT', '{"uuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "roletype": "AGENT", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'c1f4725e-747e-4d03-8a86-b2f4fa4459ee', 'INSERT', '{"op": "SELECT", "uuid": "c1f4725e-747e-4d03-8a86-b2f4fa4459ee", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'df45901b-777d-4579-ad7d-4412d63a3b3b', 'INSERT', '{"uuid": "df45901b-777d-4579-ad7d-4412d63a3b3b", "assumed": true, "ascendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "descendantuuid": "c1f4725e-747e-4d03-8a86-b2f4fa4459ee", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'c6c52b4b-949a-4d5f-a1e6-60f132463f2e', 'INSERT', '{"uuid": "c6c52b4b-949a-4d5f-a1e6-60f132463f2e", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '9c6410ef-986a-4475-93bb-19ed17429a79', 'INSERT', '{"uuid": "9c6410ef-986a-4475-93bb-19ed17429a79", "assumed": true, "ascendantuuid": "13a3ca39-6352-48e1-b1fb-82f3fc5558f2", "descendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '1e9bd925-2f8e-4ce7-b2bd-50814738eff6', 'INSERT', '{"uuid": "1e9bd925-2f8e-4ce7-b2bd-50814738eff6", "assumed": true, "ascendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "descendantuuid": "d04aeefe-4ba4-466f-a563-b811674c6de9", "grantedbyroleuuid": null, "grantedbytriggerof": "ace60d06-0635-4c2c-bb4b-7233c19862fc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06', 'INSERT', '{"op": "INSERT", "uuid": "c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '164cba6b-2aa2-4ace-b9a5-9efdd016aa02', 'INSERT', '{"uuid": "164cba6b-2aa2-4ace-b9a5-9efdd016aa02", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'e2c9d05c-4e79-48cf-8093-e8fa4b0a655e', 'INSERT', '{"op": "INSERT", "uuid": "e2c9d05c-4e79-48cf-8093-e8fa4b0a655e", "objectuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '23915a94-192d-4217-8cd4-fee7bd301f5d', 'INSERT', '{"uuid": "23915a94-192d-4217-8cd4-fee7bd301f5d", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "e2c9d05c-4e79-48cf-8093-e8fa4b0a655e", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'INSERT', '{"uuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "status": "ACTIVE", "version": 0, "validity": "[2021-05-17,)", "partneruuid": "25b8066a-59fd-4733-90f2-8ea80c826fff", "membernumbersuffix": "00", "membershipfeebillable": true}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.object', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'INSERT', '{"uuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "serialid": 263, "objecttable": "hs_office.membership"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '79cf3f87-a87d-40d8-a91a-cdd257866de7', 'INSERT', '{"uuid": "79cf3f87-a87d-40d8-a91a-cdd257866de7", "roletype": "OWNER", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'baecfc84-663c-40b8-972d-e84a89fd2dd4', 'INSERT', '{"uuid": "baecfc84-663c-40b8-972d-e84a89fd2dd4", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "79cf3f87-a87d-40d8-a91a-cdd257866de7", "grantedbyroleuuid": "79cf3f87-a87d-40d8-a91a-cdd257866de7", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', 'INSERT', '{"uuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "roletype": "ADMIN", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb', 'INSERT', '{"op": "DELETE", "uuid": "408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '9daa29f8-e2cc-47ed-bd9f-b382cccd8b99', 'INSERT', '{"uuid": "9daa29f8-e2cc-47ed-bd9f-b382cccd8b99", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '48607eac-4413-48eb-9b01-bd264a9b607c', 'INSERT', '{"op": "UPDATE", "uuid": "48607eac-4413-48eb-9b01-bd264a9b607c", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '70d57a02-1537-46d0-a900-51f461152cd1', 'INSERT', '{"uuid": "70d57a02-1537-46d0-a900-51f461152cd1", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "48607eac-4413-48eb-9b01-bd264a9b607c", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'beffc78a-2738-4b01-87a5-168e0acd253c', 'INSERT', '{"uuid": "beffc78a-2738-4b01-87a5-168e0acd253c", "assumed": true, "ascendantuuid": "79cf3f87-a87d-40d8-a91a-cdd257866de7", "descendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '2d0557e4-0a48-443e-8a26-99cb0e411fa6', 'INSERT', '{"uuid": "2d0557e4-0a48-443e-8a26-99cb0e411fa6", "assumed": true, "ascendantuuid": "28bf24da-eb68-4a99-8ff9-6e4145f5e805", "descendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.role', '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', 'INSERT', '{"uuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "roletype": "AGENT", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'fc0b7f19-723c-46f3-b40c-a8973fb5cce6', 'INSERT', '{"op": "SELECT", "uuid": "fc0b7f19-723c-46f3-b40c-a8973fb5cce6", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'adecdbe8-eb20-4782-b977-0ee777193a68', 'INSERT', '{"uuid": "adecdbe8-eb20-4782-b977-0ee777193a68", "assumed": true, "ascendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "descendantuuid": "fc0b7f19-723c-46f3-b40c-a8973fb5cce6", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '4abce187-6e61-41b6-91c4-04d9f4f44323', 'INSERT', '{"uuid": "4abce187-6e61-41b6-91c4-04d9f4f44323", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '2d6bab91-b2e2-4662-b802-72d42948d878', 'INSERT', '{"uuid": "2d6bab91-b2e2-4662-b802-72d42948d878", "assumed": true, "ascendantuuid": "f93693fa-7dc5-4513-8537-be9541d6e5dc", "descendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'aa6f9a2d-c1c5-48d4-9fac-0ecabf17edf4', 'INSERT', '{"uuid": "aa6f9a2d-c1c5-48d4-9fac-0ecabf17edf4", "assumed": true, "ascendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "descendantuuid": "33a45f49-ac74-4444-a193-2ed1e0be110d", "grantedbyroleuuid": null, "grantedbytriggerof": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', 'e131dff7-b974-4e12-8324-732296676146', 'INSERT', '{"op": "INSERT", "uuid": "e131dff7-b974-4e12-8324-732296676146", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "optablename": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', 'fd3f1211-bf61-49a3-9691-1bdd5c95d90d', 'INSERT', '{"uuid": "fd3f1211-bf61-49a3-9691-1bdd5c95d90d", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "e131dff7-b974-4e12-8324-732296676146", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.permission', '99188a87-efa3-4365-9135-700c0899d0dc', 'INSERT', '{"op": "INSERT", "uuid": "99188a87-efa3-4365-9135-700c0899d0dc", "objectuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "optablename": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'rbac.grant', '7f536e71-b099-442e-b004-698fe14198c9', 'INSERT', '{"uuid": "7f536e71-b099-442e-b004-698fe14198c9", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "99188a87-efa3-4365-9135-700c0899d0dc", "grantedbyroleuuid": null, "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2107', 'hs_office.membership', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'INSERT', '{"uuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "status": "ACTIVE", "version": 0, "validity": "[2021-05-25,)", "partneruuid": "c83c9583-a825-4a2d-96b7-fec9dd635fbc", "membernumbersuffix": "00", "membershipfeebillable": true}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'INSERT', '{"uuid": "9b403ef6-3fae-4698-9b21-2627c51fa254", "serialid": 264, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '30ec4923-e756-46cf-ac20-79065a4f36bd', 'INSERT', '{"uuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "roletype": "OWNER", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '59adeeef-e54c-4b26-8a36-f4dbe0b05273', 'INSERT', '{"op": "DELETE", "uuid": "59adeeef-e54c-4b26-8a36-f4dbe0b05273", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'e6ac71d5-f63f-4d77-8379-9a7805e8d117', 'INSERT', '{"uuid": "e6ac71d5-f63f-4d77-8379-9a7805e8d117", "assumed": true, "ascendantuuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "descendantuuid": "59adeeef-e54c-4b26-8a36-f4dbe0b05273", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '466eb9f7-9139-4e30-a2bd-966888e498ea', 'INSERT', '{"uuid": "466eb9f7-9139-4e30-a2bd-966888e498ea", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'a968bc32-85be-46f4-9a88-228adbe2d5c1', 'INSERT', '{"uuid": "a968bc32-85be-46f4-9a88-228adbe2d5c1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "grantedbyroleuuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '0ae403ca-5143-44f0-b997-be330a72ee97', 'INSERT', '{"uuid": "0ae403ca-5143-44f0-b997-be330a72ee97", "roletype": "ADMIN", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '01635d74-7e94-46e0-aba2-a1c8d471aaff', 'INSERT', '{"op": "UPDATE", "uuid": "01635d74-7e94-46e0-aba2-a1c8d471aaff", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'b0261acc-fdce-44a4-9c1a-f9500ee85839', 'INSERT', '{"uuid": "b0261acc-fdce-44a4-9c1a-f9500ee85839", "assumed": true, "ascendantuuid": "0ae403ca-5143-44f0-b997-be330a72ee97", "descendantuuid": "01635d74-7e94-46e0-aba2-a1c8d471aaff", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'c6cdea8d-a1f7-4136-8fd2-66d0aee4a994', 'INSERT', '{"uuid": "c6cdea8d-a1f7-4136-8fd2-66d0aee4a994", "assumed": true, "ascendantuuid": "30ec4923-e756-46cf-ac20-79065a4f36bd", "descendantuuid": "0ae403ca-5143-44f0-b997-be330a72ee97", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'aca34128-8a96-494d-a9e7-4e891208b023', 'INSERT', '{"uuid": "aca34128-8a96-494d-a9e7-4e891208b023", "roletype": "REFERRER", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '2f8771ba-3650-43d8-af99-ffc413066a42', 'INSERT', '{"op": "SELECT", "uuid": "2f8771ba-3650-43d8-af99-ffc413066a42", "objectuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'ed11e005-8563-4462-89aa-b090c3065c03', 'INSERT', '{"uuid": "ed11e005-8563-4462-89aa-b090c3065c03", "assumed": true, "ascendantuuid": "aca34128-8a96-494d-a9e7-4e891208b023", "descendantuuid": "2f8771ba-3650-43d8-af99-ffc413066a42", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '7b0f5c01-a564-4ccc-8bb3-d1716665bcca', 'INSERT', '{"uuid": "7b0f5c01-a564-4ccc-8bb3-d1716665bcca", "assumed": true, "ascendantuuid": "0ae403ca-5143-44f0-b997-be330a72ee97", "descendantuuid": "aca34128-8a96-494d-a9e7-4e891208b023", "grantedbyroleuuid": null, "grantedbytriggerof": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'INSERT', '{"bic": "GENODEM1GLS", "iban": "DE02300209000106531065", "uuid": "9b403ef6-3fae-4698-9b21-2627c51fa254", "holder": "Ragnar Richter", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'INSERT', '{"uuid": "f9811182-d400-43e0-ba9e-de745c9e82a3", "serialid": 265, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', 'INSERT', '{"uuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "roletype": "OWNER", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2', 'INSERT', '{"op": "DELETE", "uuid": "59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '210d5d54-1715-49bf-9934-c44ee016281a', 'INSERT', '{"uuid": "210d5d54-1715-49bf-9934-c44ee016281a", "assumed": true, "ascendantuuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "descendantuuid": "59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'd2ae3143-a8c1-4493-90b4-deb8ee7cc5bb', 'INSERT', '{"uuid": "d2ae3143-a8c1-4493-90b4-deb8ee7cc5bb", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '09ea6e4e-ab32-45b7-bd7d-b2e6691290f4', 'INSERT', '{"uuid": "09ea6e4e-ab32-45b7-bd7d-b2e6691290f4", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "grantedbyroleuuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', 'INSERT', '{"uuid": "5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea", "roletype": "ADMIN", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '0aa2520b-5481-4d8c-a478-964e4441d5e0', 'INSERT', '{"op": "UPDATE", "uuid": "0aa2520b-5481-4d8c-a478-964e4441d5e0", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '69612d77-058f-44ae-b8e9-5657d6ab718f', 'INSERT', '{"uuid": "69612d77-058f-44ae-b8e9-5657d6ab718f", "assumed": true, "ascendantuuid": "5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea", "descendantuuid": "0aa2520b-5481-4d8c-a478-964e4441d5e0", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '09dc6fbc-fb45-473e-97af-1bc4e973b91d', 'INSERT', '{"uuid": "09dc6fbc-fb45-473e-97af-1bc4e973b91d", "assumed": true, "ascendantuuid": "2dbbeed2-ba1a-4781-85e4-28f1620f8f7c", "descendantuuid": "5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '89ac1223-5561-4835-8c9d-681ab874a47a', 'INSERT', '{"uuid": "89ac1223-5561-4835-8c9d-681ab874a47a", "roletype": "REFERRER", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'f5f51c10-010d-4d5b-bb8e-b2dc353ba051', 'INSERT', '{"op": "SELECT", "uuid": "f5f51c10-010d-4d5b-bb8e-b2dc353ba051", "objectuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'fca5d327-f653-4649-b1dd-3deb5b55fc68', 'INSERT', '{"uuid": "fca5d327-f653-4649-b1dd-3deb5b55fc68", "assumed": true, "ascendantuuid": "89ac1223-5561-4835-8c9d-681ab874a47a", "descendantuuid": "f5f51c10-010d-4d5b-bb8e-b2dc353ba051", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '29bd21b9-2cf9-49e6-94ec-17eefad89b94', 'INSERT', '{"uuid": "29bd21b9-2cf9-49e6-94ec-17eefad89b94", "assumed": true, "ascendantuuid": "5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea", "descendantuuid": "89ac1223-5561-4835-8c9d-681ab874a47a", "grantedbyroleuuid": null, "grantedbytriggerof": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'INSERT', '{"bic": "GENODEF1HH2", "iban": "DE37500105177419788228", "uuid": "f9811182-d400-43e0-ba9e-de745c9e82a3", "holder": "Michael Mellis", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'INSERT', '{"uuid": "4924877c-c487-4e4d-8b14-901e9b6069ac", "serialid": 266, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', 'INSERT', '{"uuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "roletype": "OWNER", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'd71a8b9b-b0da-4675-a6c5-45d2664c70f5', 'INSERT', '{"op": "DELETE", "uuid": "d71a8b9b-b0da-4675-a6c5-45d2664c70f5", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '79f35b59-eee1-4929-9cea-0bb600b9a157', 'INSERT', '{"uuid": "79f35b59-eee1-4929-9cea-0bb600b9a157", "assumed": true, "ascendantuuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "descendantuuid": "d71a8b9b-b0da-4675-a6c5-45d2664c70f5", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '20464d07-6b81-4746-85fb-3c4f4ed87bd2', 'INSERT', '{"uuid": "20464d07-6b81-4746-85fb-3c4f4ed87bd2", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'cbd6eb58-0ac6-41ea-98b9-82bf5d5b5428', 'INSERT', '{"uuid": "cbd6eb58-0ac6-41ea-98b9-82bf5d5b5428", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "grantedbyroleuuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '03089301-5a05-4c2d-abf3-b95267b2edef', 'INSERT', '{"uuid": "03089301-5a05-4c2d-abf3-b95267b2edef", "roletype": "ADMIN", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'b32ebf6e-d5bb-4b03-9d03-10bcec3a6172', 'INSERT', '{"op": "UPDATE", "uuid": "b32ebf6e-d5bb-4b03-9d03-10bcec3a6172", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '7c3e19f3-5e89-4bbc-a577-ca82951fe335', 'INSERT', '{"uuid": "7c3e19f3-5e89-4bbc-a577-ca82951fe335", "assumed": true, "ascendantuuid": "03089301-5a05-4c2d-abf3-b95267b2edef", "descendantuuid": "b32ebf6e-d5bb-4b03-9d03-10bcec3a6172", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '1fdbeb95-1bb7-4fb5-b9d1-e417e1c38f37', 'INSERT', '{"uuid": "1fdbeb95-1bb7-4fb5-b9d1-e417e1c38f37", "assumed": true, "ascendantuuid": "9827f746-1f3a-4c83-ad01-b5cd89f4d5a6", "descendantuuid": "03089301-5a05-4c2d-abf3-b95267b2edef", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'b204ae10-065f-4969-aedd-4c25602a821c', 'INSERT', '{"uuid": "b204ae10-065f-4969-aedd-4c25602a821c", "roletype": "REFERRER", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '5fdcc08b-295c-4853-957d-d171b1accd40', 'INSERT', '{"op": "SELECT", "uuid": "5fdcc08b-295c-4853-957d-d171b1accd40", "objectuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '1bf68e49-2a97-4686-a8b9-8cdb46475326', 'INSERT', '{"op": "SELECT", "uuid": "1bf68e49-2a97-4686-a8b9-8cdb46475326", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '385d12e6-e689-491a-b503-5b699e008380', 'INSERT', '{"uuid": "385d12e6-e689-491a-b503-5b699e008380", "assumed": true, "ascendantuuid": "b204ae10-065f-4969-aedd-4c25602a821c", "descendantuuid": "5fdcc08b-295c-4853-957d-d171b1accd40", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '564ef107-8d59-4db0-a926-e22f65276242', 'INSERT', '{"uuid": "564ef107-8d59-4db0-a926-e22f65276242", "assumed": true, "ascendantuuid": "03089301-5a05-4c2d-abf3-b95267b2edef", "descendantuuid": "b204ae10-065f-4969-aedd-4c25602a821c", "grantedbyroleuuid": null, "grantedbytriggerof": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'INSERT', '{"bic": "NOLADE21WHO", "iban": "DE49500105174516484892", "uuid": "4924877c-c487-4e4d-8b14-901e9b6069ac", "holder": "Wasserwerk Suedholstein", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', '831a608f-fefe-425b-b740-1786f856c680', 'INSERT', '{"uuid": "831a608f-fefe-425b-b740-1786f856c680", "serialid": 267, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'e7101997-a1b9-43bd-93a7-8b24fd506f05', 'INSERT', '{"uuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "roletype": "OWNER", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'dfb1ef2c-af28-40d5-b625-9f157f1323d4', 'INSERT', '{"op": "DELETE", "uuid": "dfb1ef2c-af28-40d5-b625-9f157f1323d4", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'bc94d775-510c-42fa-b5b0-fe4afe51d2e1', 'INSERT', '{"uuid": "bc94d775-510c-42fa-b5b0-fe4afe51d2e1", "assumed": true, "ascendantuuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "descendantuuid": "dfb1ef2c-af28-40d5-b625-9f157f1323d4", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '5ed62729-d2a8-4e5f-a863-bc4df6a19b94', 'INSERT', '{"uuid": "5ed62729-d2a8-4e5f-a863-bc4df6a19b94", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '84b03919-d440-4956-9a4c-746b226836c2', 'INSERT', '{"uuid": "84b03919-d440-4956-9a4c-746b226836c2", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "grantedbyroleuuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'dceec9d4-d2a5-444e-a27b-4a16c01b155b', 'INSERT', '{"uuid": "dceec9d4-d2a5-444e-a27b-4a16c01b155b", "roletype": "ADMIN", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '2d5f609d-aac6-41b8-b7dc-ebb66f4b3833', 'INSERT', '{"op": "UPDATE", "uuid": "2d5f609d-aac6-41b8-b7dc-ebb66f4b3833", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '6ef83b69-925d-4f06-8e8f-4dea17c49543', 'INSERT', '{"uuid": "6ef83b69-925d-4f06-8e8f-4dea17c49543", "assumed": true, "ascendantuuid": "dceec9d4-d2a5-444e-a27b-4a16c01b155b", "descendantuuid": "2d5f609d-aac6-41b8-b7dc-ebb66f4b3833", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '268d211e-943a-4fe8-8f2f-cd150a8edc64', 'INSERT', '{"uuid": "268d211e-943a-4fe8-8f2f-cd150a8edc64", "assumed": true, "ascendantuuid": "e7101997-a1b9-43bd-93a7-8b24fd506f05", "descendantuuid": "dceec9d4-d2a5-444e-a27b-4a16c01b155b", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '3a07b077-aebc-48ad-ab29-6d375afab845', 'INSERT', '{"uuid": "3a07b077-aebc-48ad-ab29-6d375afab845", "roletype": "REFERRER", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'e4c728ed-535a-40cc-a460-3174b695f899', 'INSERT', '{"op": "SELECT", "uuid": "e4c728ed-535a-40cc-a460-3174b695f899", "objectuuid": "831a608f-fefe-425b-b740-1786f856c680", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'b69cb6a8-e8b1-40de-b6a2-ed8250be0dfc', 'INSERT', '{"uuid": "b69cb6a8-e8b1-40de-b6a2-ed8250be0dfc", "assumed": true, "ascendantuuid": "3a07b077-aebc-48ad-ab29-6d375afab845", "descendantuuid": "e4c728ed-535a-40cc-a460-3174b695f899", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'aff048df-13b6-4de7-beb6-20dce53d0f3b', 'INSERT', '{"uuid": "aff048df-13b6-4de7-beb6-20dce53d0f3b", "assumed": true, "ascendantuuid": "dceec9d4-d2a5-444e-a27b-4a16c01b155b", "descendantuuid": "3a07b077-aebc-48ad-ab29-6d375afab845", "grantedbyroleuuid": null, "grantedbytriggerof": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', '831a608f-fefe-425b-b740-1786f856c680', 'INSERT', '{"bic": "COBADEFFXXX", "iban": "DE89370400440532013000", "uuid": "831a608f-fefe-425b-b740-1786f856c680", "holder": "Richard Wiese Das Perfekte Haus", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'INSERT', '{"uuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7", "serialid": 268, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', 'INSERT', '{"uuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "roletype": "OWNER", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'b491c0ef-e4c3-4692-94f3-bf13b2dfff8a', 'INSERT', '{"op": "DELETE", "uuid": "b491c0ef-e4c3-4692-94f3-bf13b2dfff8a", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'e02f41ca-d599-4b1d-8dca-c73730eec80b', 'INSERT', '{"uuid": "e02f41ca-d599-4b1d-8dca-c73730eec80b", "assumed": true, "ascendantuuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "descendantuuid": "b491c0ef-e4c3-4692-94f3-bf13b2dfff8a", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'd79ad457-a8a4-4d4e-8c13-9f8bfabfa5e8', 'INSERT', '{"uuid": "d79ad457-a8a4-4d4e-8c13-9f8bfabfa5e8", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '7837d771-39f8-4519-9016-473396225565', 'INSERT', '{"uuid": "7837d771-39f8-4519-9016-473396225565", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "grantedbyroleuuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '2a9d3ef1-e293-4301-914b-0ed781b63689', 'INSERT', '{"uuid": "2a9d3ef1-e293-4301-914b-0ed781b63689", "roletype": "ADMIN", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'fdad2cc6-4985-4407-ade1-857bd91c5518', 'INSERT', '{"op": "UPDATE", "uuid": "fdad2cc6-4985-4407-ade1-857bd91c5518", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '03f2d39d-2345-4e7e-875f-7316003d16b9', 'INSERT', '{"uuid": "03f2d39d-2345-4e7e-875f-7316003d16b9", "assumed": true, "ascendantuuid": "2a9d3ef1-e293-4301-914b-0ed781b63689", "descendantuuid": "fdad2cc6-4985-4407-ade1-857bd91c5518", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'df47ac59-c0d0-489b-b8ef-3089743d378b', 'INSERT', '{"uuid": "df47ac59-c0d0-489b-b8ef-3089743d378b", "assumed": true, "ascendantuuid": "abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310", "descendantuuid": "2a9d3ef1-e293-4301-914b-0ed781b63689", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'e1ddefd3-730f-4085-8651-a24dc88b7330', 'INSERT', '{"uuid": "e1ddefd3-730f-4085-8651-a24dc88b7330", "roletype": "REFERRER", "objectuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'e7e387cb-6b6d-48b0-a0ca-732d2c821b3a', 'INSERT', '{"uuid": "e7e387cb-6b6d-48b0-a0ca-732d2c821b3a", "assumed": true, "ascendantuuid": "e1ddefd3-730f-4085-8651-a24dc88b7330", "descendantuuid": "1bf68e49-2a97-4686-a8b9-8cdb46475326", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'b7ff6ee8-21af-4fb7-8531-7f2102cdd928', 'INSERT', '{"uuid": "b7ff6ee8-21af-4fb7-8531-7f2102cdd928", "assumed": true, "ascendantuuid": "2a9d3ef1-e293-4301-914b-0ed781b63689", "descendantuuid": "e1ddefd3-730f-4085-8651-a24dc88b7330", "grantedbyroleuuid": null, "grantedbytriggerof": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'INSERT', '{"bic": "INGDDEFFXXX", "iban": "DE37500105177419788228", "uuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7", "holder": "Michael Mellis", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'INSERT', '{"uuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0", "serialid": 269, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '0bb4851a-2274-44cd-85ff-fc4b4710f602', 'INSERT', '{"uuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "roletype": "OWNER", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'ccb79609-4c10-4c53-bd5b-3a128e7f7ebf', 'INSERT', '{"op": "DELETE", "uuid": "ccb79609-4c10-4c53-bd5b-3a128e7f7ebf", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'b7f710e1-4fff-4a34-950c-6ae91da5653a', 'INSERT', '{"uuid": "b7f710e1-4fff-4a34-950c-6ae91da5653a", "assumed": true, "ascendantuuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "descendantuuid": "ccb79609-4c10-4c53-bd5b-3a128e7f7ebf", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '7c23a1c7-821d-4e7a-85e9-9e02a3618827', 'INSERT', '{"uuid": "7c23a1c7-821d-4e7a-85e9-9e02a3618827", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '5fd1ae74-8b0f-4ac0-a1e7-d503452dc79c', 'INSERT', '{"uuid": "5fd1ae74-8b0f-4ac0-a1e7-d503452dc79c", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "grantedbyroleuuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'fdfd2976-fc7d-422e-8b5f-91f401927b18', 'INSERT', '{"uuid": "fdfd2976-fc7d-422e-8b5f-91f401927b18", "roletype": "ADMIN", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '4e5c24fc-e3d1-49f7-963c-e386a72be2f8', 'INSERT', '{"op": "UPDATE", "uuid": "4e5c24fc-e3d1-49f7-963c-e386a72be2f8", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'fbec2137-bead-4315-b323-cfab02e185a5', 'INSERT', '{"uuid": "fbec2137-bead-4315-b323-cfab02e185a5", "assumed": true, "ascendantuuid": "fdfd2976-fc7d-422e-8b5f-91f401927b18", "descendantuuid": "4e5c24fc-e3d1-49f7-963c-e386a72be2f8", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'e1a6da3c-dfc3-484f-8185-938c414326cb', 'INSERT', '{"uuid": "e1a6da3c-dfc3-484f-8185-938c414326cb", "assumed": true, "ascendantuuid": "0bb4851a-2274-44cd-85ff-fc4b4710f602", "descendantuuid": "fdfd2976-fc7d-422e-8b5f-91f401927b18", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', 'INSERT', '{"uuid": "ffe77615-7fe9-4dd7-8a55-9459ff2d2b43", "roletype": "REFERRER", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'a8dc5128-f0db-4f0e-b599-a87eeb73603c', 'INSERT', '{"op": "SELECT", "uuid": "a8dc5128-f0db-4f0e-b599-a87eeb73603c", "objectuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'dc28beaf-2488-4ab3-995e-2174df1954cb', 'INSERT', '{"uuid": "dc28beaf-2488-4ab3-995e-2174df1954cb", "assumed": true, "ascendantuuid": "ffe77615-7fe9-4dd7-8a55-9459ff2d2b43", "descendantuuid": "a8dc5128-f0db-4f0e-b599-a87eeb73603c", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '9cfb524c-ccf1-4171-8043-bf2116536699', 'INSERT', '{"uuid": "9cfb524c-ccf1-4171-8043-bf2116536699", "assumed": true, "ascendantuuid": "fdfd2976-fc7d-422e-8b5f-91f401927b18", "descendantuuid": "ffe77615-7fe9-4dd7-8a55-9459ff2d2b43", "grantedbyroleuuid": null, "grantedbytriggerof": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'INSERT', '{"bic": "CMCIDEDD", "iban": "DE02300209000106531065", "uuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0", "holder": "JM e.K.", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.object', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'INSERT', '{"uuid": "f3140f7e-5045-4534-92aa-e918895bfafb", "serialid": 270, "objecttable": "hs_office.bankaccount"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', 'INSERT', '{"uuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "roletype": "OWNER", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '0fd249e7-1454-4914-957a-b3ec7bf25bee', 'INSERT', '{"op": "DELETE", "uuid": "0fd249e7-1454-4914-957a-b3ec7bf25bee", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '5127038b-2074-42f5-a599-7cdce776b05d', 'INSERT', '{"uuid": "5127038b-2074-42f5-a599-7cdce776b05d", "assumed": true, "ascendantuuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "descendantuuid": "0fd249e7-1454-4914-957a-b3ec7bf25bee", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '7b382b2e-1daa-4b6f-ad14-f765d768348e', 'INSERT', '{"uuid": "7b382b2e-1daa-4b6f-ad14-f765d768348e", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '46a43889-233e-4322-97a7-77fd9716980b', 'INSERT', '{"uuid": "46a43889-233e-4322-97a7-77fd9716980b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "grantedbyroleuuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'e9daa877-1886-48db-abab-5516000c4d8e', 'INSERT', '{"uuid": "e9daa877-1886-48db-abab-5516000c4d8e", "roletype": "ADMIN", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', '0334125d-2eca-4694-9cc3-abfbb58b49f7', 'INSERT', '{"op": "UPDATE", "uuid": "0334125d-2eca-4694-9cc3-abfbb58b49f7", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'bd7e0fd5-4ae5-4dfd-b029-4d037b63b6e6', 'INSERT', '{"uuid": "bd7e0fd5-4ae5-4dfd-b029-4d037b63b6e6", "assumed": true, "ascendantuuid": "e9daa877-1886-48db-abab-5516000c4d8e", "descendantuuid": "0334125d-2eca-4694-9cc3-abfbb58b49f7", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'e8991a3f-7e11-413b-a946-c381890c8fcb', 'INSERT', '{"uuid": "e8991a3f-7e11-413b-a946-c381890c8fcb", "assumed": true, "ascendantuuid": "93f3cd3e-9b10-4a7c-88a9-39c29118fa8d", "descendantuuid": "e9daa877-1886-48db-abab-5516000c4d8e", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.role', 'edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', 'INSERT', '{"uuid": "edf9d085-dbfc-4e3a-9f0e-9eb407423ff6", "roletype": "REFERRER", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.permission', 'bb74107e-cd5f-4207-87e2-69f4d67eb7f3', 'INSERT', '{"op": "SELECT", "uuid": "bb74107e-cd5f-4207-87e2-69f4d67eb7f3", "objectuuid": "f3140f7e-5045-4534-92aa-e918895bfafb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', '8ed6a950-8f04-421b-8c2b-523ea5513b7c', 'INSERT', '{"uuid": "8ed6a950-8f04-421b-8c2b-523ea5513b7c", "assumed": true, "ascendantuuid": "edf9d085-dbfc-4e3a-9f0e-9eb407423ff6", "descendantuuid": "bb74107e-cd5f-4207-87e2-69f4d67eb7f3", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'rbac.grant', 'baab9056-95ba-489e-af8f-3c8500316ded', 'INSERT', '{"uuid": "baab9056-95ba-489e-af8f-3c8500316ded", "assumed": true, "ascendantuuid": "e9daa877-1886-48db-abab-5516000c4d8e", "descendantuuid": "edf9d085-dbfc-4e3a-9f0e-9eb407423ff6", "grantedbyroleuuid": null, "grantedbytriggerof": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2143', 'hs_office.bankaccount', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'INSERT', '{"bic": "INGDDEFFXXX", "iban": "DE49500105174516484892", "uuid": "f3140f7e-5045-4534-92aa-e918895bfafb", "holder": "JM GmbH", "version": 0}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'INSERT', '{"uuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705", "serialid": 271, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', 'INSERT', '{"uuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "roletype": "OWNER", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c', 'INSERT', '{"op": "DELETE", "uuid": "eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '418fe050-167d-494f-b368-5b79cf68ed2c', 'INSERT', '{"uuid": "418fe050-167d-494f-b368-5b79cf68ed2c", "assumed": true, "ascendantuuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "descendantuuid": "eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f1a34ea5-fa78-4061-9856-fc05184b21af', 'INSERT', '{"uuid": "f1a34ea5-fa78-4061-9856-fc05184b21af", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '323ca3e8-6c46-430d-abc4-26b350c76ad9', 'INSERT', '{"uuid": "323ca3e8-6c46-430d-abc4-26b350c76ad9", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "grantedbyroleuuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '232fe9ca-d6b6-4105-869b-435f0b1357cd', 'INSERT', '{"uuid": "232fe9ca-d6b6-4105-869b-435f0b1357cd", "roletype": "ADMIN", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f', 'INSERT', '{"op": "UPDATE", "uuid": "5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'fb717805-588e-4af1-8a4d-d469bb1fd4d9', 'INSERT', '{"uuid": "fb717805-588e-4af1-8a4d-d469bb1fd4d9", "assumed": true, "ascendantuuid": "232fe9ca-d6b6-4105-869b-435f0b1357cd", "descendantuuid": "5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f712c42a-e9da-4a52-91f0-cf1adcbcb472', 'INSERT', '{"uuid": "f712c42a-e9da-4a52-91f0-cf1adcbcb472", "assumed": true, "ascendantuuid": "7a4d5839-8342-48c3-95e1-d7032ce2a6a0", "descendantuuid": "232fe9ca-d6b6-4105-869b-435f0b1357cd", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '8f422852-c9d5-4c4f-bac1-ea4950ea77d4', 'INSERT', '{"uuid": "8f422852-c9d5-4c4f-bac1-ea4950ea77d4", "roletype": "AGENT", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '0d2930ac-000e-485c-92e0-4181aef8062d', 'INSERT', '{"uuid": "0d2930ac-000e-485c-92e0-4181aef8062d", "assumed": true, "ascendantuuid": "232fe9ca-d6b6-4105-869b-435f0b1357cd", "descendantuuid": "8f422852-c9d5-4c4f-bac1-ea4950ea77d4", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'dda57fac-9899-4895-bf24-8608b837e16e', 'INSERT', '{"uuid": "dda57fac-9899-4895-bf24-8608b837e16e", "assumed": true, "ascendantuuid": "8f422852-c9d5-4c4f-bac1-ea4950ea77d4", "descendantuuid": "aca34128-8a96-494d-a9e7-4e891208b023", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '548710bb-7879-4f1e-999a-c4f0cbd00ad4', 'INSERT', '{"uuid": "548710bb-7879-4f1e-999a-c4f0cbd00ad4", "assumed": true, "ascendantuuid": "8f422852-c9d5-4c4f-bac1-ea4950ea77d4", "descendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '8d53905b-418d-4c91-aa71-d4c49184cbae', 'INSERT', '{"uuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "roletype": "REFERRER", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '06d170a1-f3a5-453e-9a08-3dedf2ecc0d4', 'INSERT', '{"op": "SELECT", "uuid": "06d170a1-f3a5-453e-9a08-3dedf2ecc0d4", "objectuuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '0fed22c9-81a7-4e0d-b785-e0f526ae584d', 'INSERT', '{"uuid": "0fed22c9-81a7-4e0d-b785-e0f526ae584d", "assumed": true, "ascendantuuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "descendantuuid": "06d170a1-f3a5-453e-9a08-3dedf2ecc0d4", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'a113f072-ed17-43ad-9a44-a15836d419a7', 'INSERT', '{"uuid": "a113f072-ed17-43ad-9a44-a15836d419a7", "assumed": true, "ascendantuuid": "0ae403ca-5143-44f0-b997-be330a72ee97", "descendantuuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'e82498ba-ea7e-4b5c-8999-80bdd4a12cb9', 'INSERT', '{"uuid": "e82498ba-ea7e-4b5c-8999-80bdd4a12cb9", "assumed": true, "ascendantuuid": "fe0228ea-649c-45a4-b729-181aba7f3294", "descendantuuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '6548161a-1fa6-4aba-8474-9f4ac5eb0365', 'INSERT', '{"uuid": "6548161a-1fa6-4aba-8474-9f4ac5eb0365", "assumed": true, "ascendantuuid": "8f422852-c9d5-4c4f-bac1-ea4950ea77d4", "descendantuuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '779a7b69-138a-42e9-b856-9baec41f7298', 'INSERT', '{"uuid": "779a7b69-138a-42e9-b856-9baec41f7298", "assumed": true, "ascendantuuid": "8d53905b-418d-4c91-aa71-d4c49184cbae", "descendantuuid": "f218c4d9-d10b-4445-b381-b73a71f5848c", "grantedbyroleuuid": null, "grantedbytriggerof": "3d0e6bb5-a62e-4225-a2bb-967c76926705"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'INSERT', '{"uuid": "3d0e6bb5-a62e-4225-a2bb-967c76926705", "version": 0, "validity": "[2013-12-01,2016-02-16)", "agreement": "2013-12-01", "reference": "HS-10152-20140801", "debitoruuid": "67c2d793-212f-4ce0-a750-b18224a93c73", "bankaccountuuid": "9b403ef6-3fae-4698-9b21-2627c51fa254"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'INSERT', '{"uuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c", "serialid": 272, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '1ea18a1f-6676-43b8-9fca-20b7e575c31e', 'INSERT', '{"uuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "roletype": "OWNER", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '2194c042-0182-42cc-8174-6f219e3c4e65', 'INSERT', '{"op": "DELETE", "uuid": "2194c042-0182-42cc-8174-6f219e3c4e65", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'fecc2be7-6d8b-4329-9233-6adc0bdcc8ff', 'INSERT', '{"uuid": "fecc2be7-6d8b-4329-9233-6adc0bdcc8ff", "assumed": true, "ascendantuuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "descendantuuid": "2194c042-0182-42cc-8174-6f219e3c4e65", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f5487eeb-c486-4918-82cb-ceaf2865be9d', 'INSERT', '{"uuid": "f5487eeb-c486-4918-82cb-ceaf2865be9d", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'fe06dfb0-6da8-4343-8959-2b1fe0c48f99', 'INSERT', '{"uuid": "fe06dfb0-6da8-4343-8959-2b1fe0c48f99", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "grantedbyroleuuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'e5bb95d7-2fcd-4767-a200-c7c48e01401c', 'INSERT', '{"uuid": "e5bb95d7-2fcd-4767-a200-c7c48e01401c", "roletype": "ADMIN", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'f792f250-1f61-4efa-a515-d04af7ad5e18', 'INSERT', '{"op": "UPDATE", "uuid": "f792f250-1f61-4efa-a515-d04af7ad5e18", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'e4382c8a-b934-42be-b255-86a68b313e52', 'INSERT', '{"uuid": "e4382c8a-b934-42be-b255-86a68b313e52", "assumed": true, "ascendantuuid": "e5bb95d7-2fcd-4767-a200-c7c48e01401c", "descendantuuid": "f792f250-1f61-4efa-a515-d04af7ad5e18", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '3d08cdaa-3b4c-4a41-be4b-c02ff4d8d5b1', 'INSERT', '{"uuid": "3d08cdaa-3b4c-4a41-be4b-c02ff4d8d5b1", "assumed": true, "ascendantuuid": "1ea18a1f-6676-43b8-9fca-20b7e575c31e", "descendantuuid": "e5bb95d7-2fcd-4767-a200-c7c48e01401c", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'b83a49eb-39d3-4c98-8c0c-5a1fb1862079', 'INSERT', '{"uuid": "b83a49eb-39d3-4c98-8c0c-5a1fb1862079", "roletype": "AGENT", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'fe7f66e1-5f12-465f-892e-831c6eb8eca6', 'INSERT', '{"uuid": "fe7f66e1-5f12-465f-892e-831c6eb8eca6", "assumed": true, "ascendantuuid": "e5bb95d7-2fcd-4767-a200-c7c48e01401c", "descendantuuid": "b83a49eb-39d3-4c98-8c0c-5a1fb1862079", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '98694180-1334-428d-88ba-f590b4bd0f9b', 'INSERT', '{"uuid": "98694180-1334-428d-88ba-f590b4bd0f9b", "assumed": true, "ascendantuuid": "b83a49eb-39d3-4c98-8c0c-5a1fb1862079", "descendantuuid": "89ac1223-5561-4835-8c9d-681ab874a47a", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '7c34d13b-6f59-4951-9f67-86175240b61e', 'INSERT', '{"uuid": "7c34d13b-6f59-4951-9f67-86175240b61e", "assumed": true, "ascendantuuid": "b83a49eb-39d3-4c98-8c0c-5a1fb1862079", "descendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', 'INSERT', '{"uuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "roletype": "REFERRER", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6', 'INSERT', '{"op": "SELECT", "uuid": "0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6", "objectuuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'b5844430-3cc8-411b-b13f-b79b231cf9ec', 'INSERT', '{"uuid": "b5844430-3cc8-411b-b13f-b79b231cf9ec", "assumed": true, "ascendantuuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "descendantuuid": "0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'b50ba954-ffce-4a4f-bad5-0df732c28759', 'INSERT', '{"uuid": "b50ba954-ffce-4a4f-bad5-0df732c28759", "assumed": true, "ascendantuuid": "5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea", "descendantuuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '94051685-ca75-4b71-9f62-48e8f8b64dcf', 'INSERT', '{"uuid": "94051685-ca75-4b71-9f62-48e8f8b64dcf", "assumed": true, "ascendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "descendantuuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f0997e3b-25ec-478a-89cb-2ceb281db00b', 'INSERT', '{"uuid": "f0997e3b-25ec-478a-89cb-2ceb281db00b", "assumed": true, "ascendantuuid": "b83a49eb-39d3-4c98-8c0c-5a1fb1862079", "descendantuuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '34aaa5e2-cfdb-441e-a83c-235b50c3d095', 'INSERT', '{"uuid": "34aaa5e2-cfdb-441e-a83c-235b50c3d095", "assumed": true, "ascendantuuid": "7564d2ce-d4ad-48e2-baf4-2fc08cc249a8", "descendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "grantedbyroleuuid": null, "grantedbytriggerof": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'INSERT', '{"uuid": "6c0ad97f-fb44-471b-b53a-d834cd4ac04c", "version": 0, "validity": "[2013-12-01,)", "agreement": "2013-12-01", "reference": "HS-10003-20140801", "debitoruuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "bankaccountuuid": "f9811182-d400-43e0-ba9e-de745c9e82a3"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'INSERT', '{"uuid": "850aa448-3a14-440c-9834-0b7ef6d83c39", "serialid": 273, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '71c29d57-de3e-4f00-9303-2d51e8c11b20', 'INSERT', '{"uuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "roletype": "OWNER", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '02748d62-3212-4465-8c05-aabc3f919a08', 'INSERT', '{"op": "DELETE", "uuid": "02748d62-3212-4465-8c05-aabc3f919a08", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '1f014ff1-f4fc-428b-9c97-567d7d7aeca6', 'INSERT', '{"uuid": "1f014ff1-f4fc-428b-9c97-567d7d7aeca6", "assumed": true, "ascendantuuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "descendantuuid": "02748d62-3212-4465-8c05-aabc3f919a08", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'ebeae76d-0a04-4574-9ff8-bda63915a39f', 'INSERT', '{"uuid": "ebeae76d-0a04-4574-9ff8-bda63915a39f", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'e326cafc-77e1-457c-96e5-72ede9f4c721', 'INSERT', '{"uuid": "e326cafc-77e1-457c-96e5-72ede9f4c721", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "grantedbyroleuuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'adaeb8bf-e22b-4bb9-ab33-66e19053ab31', 'INSERT', '{"uuid": "adaeb8bf-e22b-4bb9-ab33-66e19053ab31", "roletype": "ADMIN", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '0cde804f-7eed-49d3-8eb4-d55e806f8957', 'INSERT', '{"op": "UPDATE", "uuid": "0cde804f-7eed-49d3-8eb4-d55e806f8957", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '656c7f0a-a22b-47db-8a70-04e089949578', 'INSERT', '{"uuid": "656c7f0a-a22b-47db-8a70-04e089949578", "assumed": true, "ascendantuuid": "adaeb8bf-e22b-4bb9-ab33-66e19053ab31", "descendantuuid": "0cde804f-7eed-49d3-8eb4-d55e806f8957", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'bf6e7bdf-0223-4f6a-9b18-83c7f32de12b', 'INSERT', '{"uuid": "bf6e7bdf-0223-4f6a-9b18-83c7f32de12b", "assumed": true, "ascendantuuid": "71c29d57-de3e-4f00-9303-2d51e8c11b20", "descendantuuid": "adaeb8bf-e22b-4bb9-ab33-66e19053ab31", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'bb372939-0891-4068-bf4b-651e8f2a03c8', 'INSERT', '{"uuid": "bb372939-0891-4068-bf4b-651e8f2a03c8", "roletype": "AGENT", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'ea19f91f-d0e1-4612-84de-136e1c687a95', 'INSERT', '{"uuid": "ea19f91f-d0e1-4612-84de-136e1c687a95", "assumed": true, "ascendantuuid": "adaeb8bf-e22b-4bb9-ab33-66e19053ab31", "descendantuuid": "bb372939-0891-4068-bf4b-651e8f2a03c8", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '3f67f755-72fa-435b-8f11-dee88ec0d5ff', 'INSERT', '{"uuid": "3f67f755-72fa-435b-8f11-dee88ec0d5ff", "assumed": true, "ascendantuuid": "bb372939-0891-4068-bf4b-651e8f2a03c8", "descendantuuid": "b204ae10-065f-4969-aedd-4c25602a821c", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '396be5ea-4bc6-4379-a8fe-052cddc952f6', 'INSERT', '{"uuid": "396be5ea-4bc6-4379-a8fe-052cddc952f6", "assumed": true, "ascendantuuid": "bb372939-0891-4068-bf4b-651e8f2a03c8", "descendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '88d51826-68ce-4d8a-9a65-91429e00d053', 'INSERT', '{"uuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "roletype": "REFERRER", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'b04e429b-3f95-4dea-b61e-3e96d114ecd1', 'INSERT', '{"op": "SELECT", "uuid": "b04e429b-3f95-4dea-b61e-3e96d114ecd1", "objectuuid": "850aa448-3a14-440c-9834-0b7ef6d83c39", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '7d60b8f3-b636-4774-9627-f1bf0da5161d', 'INSERT', '{"uuid": "7d60b8f3-b636-4774-9627-f1bf0da5161d", "assumed": true, "ascendantuuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "descendantuuid": "b04e429b-3f95-4dea-b61e-3e96d114ecd1", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'a07e0d52-8691-4ed9-929b-0874ec22e207', 'INSERT', '{"uuid": "a07e0d52-8691-4ed9-929b-0874ec22e207", "assumed": true, "ascendantuuid": "03089301-5a05-4c2d-abf3-b95267b2edef", "descendantuuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '1fa5268e-4a20-4733-a5ef-16250ee16686', 'INSERT', '{"uuid": "1fa5268e-4a20-4733-a5ef-16250ee16686", "assumed": true, "ascendantuuid": "e6409531-6513-43a9-84a7-eff44b18285a", "descendantuuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '37485252-ae63-47cc-badd-e551a9840214', 'INSERT', '{"uuid": "37485252-ae63-47cc-badd-e551a9840214", "assumed": true, "ascendantuuid": "bb372939-0891-4068-bf4b-651e8f2a03c8", "descendantuuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '81b57d10-68d0-4a5b-b4bd-22ef77b245b0', 'INSERT', '{"uuid": "81b57d10-68d0-4a5b-b4bd-22ef77b245b0", "assumed": true, "ascendantuuid": "88d51826-68ce-4d8a-9a65-91429e00d053", "descendantuuid": "d00a14ad-fe79-40fc-8f72-722fb5cd30bd", "grantedbyroleuuid": null, "grantedbytriggerof": "850aa448-3a14-440c-9834-0b7ef6d83c39"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'INSERT', '{"uuid": "850aa448-3a14-440c-9834-0b7ef6d83c39", "version": 0, "validity": "[2021-05-17,)", "agreement": "2021-05-12", "reference": "HS-11018-20210512", "debitoruuid": "ccbd7baa-494d-4bfc-b5bb-4310e607df04", "bankaccountuuid": "4924877c-c487-4e4d-8b14-901e9b6069ac"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'INSERT', '{"uuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc", "serialid": 274, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', 'INSERT', '{"uuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "roletype": "OWNER", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '3014663a-10bc-4a8b-b47c-2c805b198d7f', 'INSERT', '{"op": "DELETE", "uuid": "3014663a-10bc-4a8b-b47c-2c805b198d7f", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '715fcbc2-a193-4ad7-83b7-c4f455b5a7f8', 'INSERT', '{"uuid": "715fcbc2-a193-4ad7-83b7-c4f455b5a7f8", "assumed": true, "ascendantuuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "descendantuuid": "3014663a-10bc-4a8b-b47c-2c805b198d7f", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '94782817-2d75-467d-bb1b-bf257174d08a', 'INSERT', '{"uuid": "94782817-2d75-467d-bb1b-bf257174d08a", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '38b49585-c8b6-4060-a002-4313aba14115', 'INSERT', '{"uuid": "38b49585-c8b6-4060-a002-4313aba14115", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "grantedbyroleuuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '74b8c100-35a5-4a9e-882b-d106b0656e15', 'INSERT', '{"uuid": "74b8c100-35a5-4a9e-882b-d106b0656e15", "roletype": "ADMIN", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '702c700c-a440-4771-b203-9c030c1c100f', 'INSERT', '{"op": "UPDATE", "uuid": "702c700c-a440-4771-b203-9c030c1c100f", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'a65ff09c-84e5-484f-9e3d-6fc6b0910745', 'INSERT', '{"uuid": "a65ff09c-84e5-484f-9e3d-6fc6b0910745", "assumed": true, "ascendantuuid": "74b8c100-35a5-4a9e-882b-d106b0656e15", "descendantuuid": "702c700c-a440-4771-b203-9c030c1c100f", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '98fe55f4-9a13-4719-8332-9556d414cffd', 'INSERT', '{"uuid": "98fe55f4-9a13-4719-8332-9556d414cffd", "assumed": true, "ascendantuuid": "63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8", "descendantuuid": "74b8c100-35a5-4a9e-882b-d106b0656e15", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'c73f5078-0505-44ea-b0e1-57390f4d5a3b', 'INSERT', '{"uuid": "c73f5078-0505-44ea-b0e1-57390f4d5a3b", "roletype": "AGENT", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '869e59ed-914a-4779-a1ee-9989dace7aa5', 'INSERT', '{"uuid": "869e59ed-914a-4779-a1ee-9989dace7aa5", "assumed": true, "ascendantuuid": "74b8c100-35a5-4a9e-882b-d106b0656e15", "descendantuuid": "c73f5078-0505-44ea-b0e1-57390f4d5a3b", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f26117f0-9761-4e50-858d-0a5e70242649', 'INSERT', '{"uuid": "f26117f0-9761-4e50-858d-0a5e70242649", "assumed": true, "ascendantuuid": "c73f5078-0505-44ea-b0e1-57390f4d5a3b", "descendantuuid": "3a07b077-aebc-48ad-ab29-6d375afab845", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '49e38887-66ff-4548-9077-88858312127c', 'INSERT', '{"uuid": "49e38887-66ff-4548-9077-88858312127c", "assumed": true, "ascendantuuid": "c73f5078-0505-44ea-b0e1-57390f4d5a3b", "descendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '86454239-fb95-484e-9f75-142ee5ca2a5d', 'INSERT', '{"uuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "roletype": "REFERRER", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '69067b5f-41d0-447b-aba4-31764c6d6e04', 'INSERT', '{"op": "SELECT", "uuid": "69067b5f-41d0-447b-aba4-31764c6d6e04", "objectuuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'dcee72e3-0c00-4de2-a42b-0e270c2d8f9c', 'INSERT', '{"uuid": "dcee72e3-0c00-4de2-a42b-0e270c2d8f9c", "assumed": true, "ascendantuuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "descendantuuid": "69067b5f-41d0-447b-aba4-31764c6d6e04", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f8802f34-52da-44d5-9797-78e0dc3583a8', 'INSERT', '{"uuid": "f8802f34-52da-44d5-9797-78e0dc3583a8", "assumed": true, "ascendantuuid": "dceec9d4-d2a5-444e-a27b-4a16c01b155b", "descendantuuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '4fc7cfb9-2782-4b2c-9c3f-a8eb0e573d76', 'INSERT', '{"uuid": "4fc7cfb9-2782-4b2c-9c3f-a8eb0e573d76", "assumed": true, "ascendantuuid": "6e7feeb7-4891-4ea3-96b6-00d883da37c5", "descendantuuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '582a665f-fb6e-4a1d-9c34-544805cb2290', 'INSERT', '{"uuid": "582a665f-fb6e-4a1d-9c34-544805cb2290", "assumed": true, "ascendantuuid": "c73f5078-0505-44ea-b0e1-57390f4d5a3b", "descendantuuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'de1fa34f-307c-43aa-b9f9-0de34a7e55eb', 'INSERT', '{"uuid": "de1fa34f-307c-43aa-b9f9-0de34a7e55eb", "assumed": true, "ascendantuuid": "86454239-fb95-484e-9f75-142ee5ca2a5d", "descendantuuid": "1ed7ff07-778c-4920-a550-563b27223228", "grantedbyroleuuid": null, "grantedbytriggerof": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'INSERT', '{"uuid": "1c7e3e8a-59c7-4567-8102-f18694d5a1dc", "version": 0, "validity": "[2021-05-25,)", "agreement": "2021-05-19", "reference": "HS-11019-20210519", "debitoruuid": "ade3baa7-760f-488b-962d-7e365ad1402f", "bankaccountuuid": "831a608f-fefe-425b-b740-1786f856c680"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '466056f2-efc6-45d6-b778-fa111db7a18b', 'INSERT', '{"uuid": "466056f2-efc6-45d6-b778-fa111db7a18b", "serialid": 275, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '0017035a-e8ef-4e77-a43d-938cfc7962f5', 'INSERT', '{"uuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "roletype": "OWNER", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'a3d6ce3f-655b-452b-91b1-539956c8580d', 'INSERT', '{"op": "DELETE", "uuid": "a3d6ce3f-655b-452b-91b1-539956c8580d", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '9295097d-a6bb-4f56-872c-786a6e030c4d', 'INSERT', '{"uuid": "9295097d-a6bb-4f56-872c-786a6e030c4d", "assumed": true, "ascendantuuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "descendantuuid": "a3d6ce3f-655b-452b-91b1-539956c8580d", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '2f1d9ae4-4df3-4b51-bd68-0140f715fc71', 'INSERT', '{"uuid": "2f1d9ae4-4df3-4b51-bd68-0140f715fc71", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '829228f5-33c6-47e3-b6d5-4eae06004c3b', 'INSERT', '{"uuid": "829228f5-33c6-47e3-b6d5-4eae06004c3b", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "grantedbyroleuuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', 'INSERT', '{"uuid": "ad177311-3c0c-4d93-9ff7-c0b5665fd0ca", "roletype": "ADMIN", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '0198a5da-a2fc-4f7e-bf41-54642325d8dd', 'INSERT', '{"op": "UPDATE", "uuid": "0198a5da-a2fc-4f7e-bf41-54642325d8dd", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'b7ab4650-c744-4560-8e9b-bffde55f24f5', 'INSERT', '{"uuid": "b7ab4650-c744-4560-8e9b-bffde55f24f5", "assumed": true, "ascendantuuid": "ad177311-3c0c-4d93-9ff7-c0b5665fd0ca", "descendantuuid": "0198a5da-a2fc-4f7e-bf41-54642325d8dd", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '718c7a90-f8ca-4b20-aab8-d6470acc3cb0', 'INSERT', '{"uuid": "718c7a90-f8ca-4b20-aab8-d6470acc3cb0", "assumed": true, "ascendantuuid": "0017035a-e8ef-4e77-a43d-938cfc7962f5", "descendantuuid": "ad177311-3c0c-4d93-9ff7-c0b5665fd0ca", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'e2f03c7d-5026-42a3-a18f-ce770314c22b', 'INSERT', '{"uuid": "e2f03c7d-5026-42a3-a18f-ce770314c22b", "roletype": "AGENT", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'eaec616a-0014-4399-a500-41918750c501', 'INSERT', '{"uuid": "eaec616a-0014-4399-a500-41918750c501", "assumed": true, "ascendantuuid": "ad177311-3c0c-4d93-9ff7-c0b5665fd0ca", "descendantuuid": "e2f03c7d-5026-42a3-a18f-ce770314c22b", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '4085dd28-9917-4acd-a438-188c6de4ae47', 'INSERT', '{"uuid": "4085dd28-9917-4acd-a438-188c6de4ae47", "assumed": true, "ascendantuuid": "e2f03c7d-5026-42a3-a18f-ce770314c22b", "descendantuuid": "e1ddefd3-730f-4085-8651-a24dc88b7330", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'b2216acc-616a-43ac-9f46-9526a658a586', 'INSERT', '{"uuid": "b2216acc-616a-43ac-9f46-9526a658a586", "assumed": true, "ascendantuuid": "e2f03c7d-5026-42a3-a18f-ce770314c22b", "descendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '8e019651-e0a0-490f-8592-55c7016cec2c', 'INSERT', '{"uuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "roletype": "REFERRER", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f', 'INSERT', '{"op": "SELECT", "uuid": "ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f", "objectuuid": "466056f2-efc6-45d6-b778-fa111db7a18b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '03d92a07-9316-4168-816e-34416a2ec8d7', 'INSERT', '{"uuid": "03d92a07-9316-4168-816e-34416a2ec8d7", "assumed": true, "ascendantuuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "descendantuuid": "ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '156cd874-18f0-4914-879b-3abb92658f0b', 'INSERT', '{"uuid": "156cd874-18f0-4914-879b-3abb92658f0b", "assumed": true, "ascendantuuid": "2a9d3ef1-e293-4301-914b-0ed781b63689", "descendantuuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '74df7196-1406-4904-a395-f8ca0070adfe', 'INSERT', '{"uuid": "74df7196-1406-4904-a395-f8ca0070adfe", "assumed": true, "ascendantuuid": "6c0656b5-472b-4859-af3a-b8f1c53231a5", "descendantuuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '05a0f74b-4a19-44a0-bf45-bb01e3a3c542', 'INSERT', '{"uuid": "05a0f74b-4a19-44a0-bf45-bb01e3a3c542", "assumed": true, "ascendantuuid": "e2f03c7d-5026-42a3-a18f-ce770314c22b", "descendantuuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '32de1c62-58ac-4e44-9eb9-c9728cbcd99d', 'INSERT', '{"uuid": "32de1c62-58ac-4e44-9eb9-c9728cbcd99d", "assumed": true, "ascendantuuid": "8e019651-e0a0-490f-8592-55c7016cec2c", "descendantuuid": "8ad792c1-10e1-43fa-8d5a-a6f3810878a2", "grantedbyroleuuid": null, "grantedbytriggerof": "466056f2-efc6-45d6-b778-fa111db7a18b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '466056f2-efc6-45d6-b778-fa111db7a18b', 'INSERT', '{"uuid": "466056f2-efc6-45d6-b778-fa111db7a18b", "version": 0, "validity": "[2004-06-15,)", "agreement": "2004-06-12", "reference": "MH12345", "debitoruuid": "6fc20aab-5dcf-4b04-8a33-1d1512fe8c61", "bankaccountuuid": "4f95f38e-08e8-497a-8edb-b74f67e3f2b7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'INSERT', '{"uuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e", "serialid": 276, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', 'INSERT', '{"uuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "roletype": "OWNER", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '41bf1ce4-7d32-4bc9-a240-6f37aa7c5311', 'INSERT', '{"op": "DELETE", "uuid": "41bf1ce4-7d32-4bc9-a240-6f37aa7c5311", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '57fae3e0-faa4-4a5d-9578-3be81426c9ed', 'INSERT', '{"uuid": "57fae3e0-faa4-4a5d-9578-3be81426c9ed", "assumed": true, "ascendantuuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "descendantuuid": "41bf1ce4-7d32-4bc9-a240-6f37aa7c5311", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '76e98e3c-8e48-403f-a3a7-21e543cd1f43', 'INSERT', '{"uuid": "76e98e3c-8e48-403f-a3a7-21e543cd1f43", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '994806f8-555b-4852-84ea-46f1042cc8a7', 'INSERT', '{"uuid": "994806f8-555b-4852-84ea-46f1042cc8a7", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "grantedbyroleuuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '2214774f-6235-4cb9-8713-e2ee51b213d2', 'INSERT', '{"uuid": "2214774f-6235-4cb9-8713-e2ee51b213d2", "roletype": "ADMIN", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '008b96bf-c732-4063-95fa-8660cc3e378a', 'INSERT', '{"op": "UPDATE", "uuid": "008b96bf-c732-4063-95fa-8660cc3e378a", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'd0f378b9-9b9e-43ad-8d06-dddf272d656f', 'INSERT', '{"uuid": "d0f378b9-9b9e-43ad-8d06-dddf272d656f", "assumed": true, "ascendantuuid": "2214774f-6235-4cb9-8713-e2ee51b213d2", "descendantuuid": "008b96bf-c732-4063-95fa-8660cc3e378a", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '9dec48cd-6775-407c-ae5b-96bb7cc9bd03', 'INSERT', '{"uuid": "9dec48cd-6775-407c-ae5b-96bb7cc9bd03", "assumed": true, "ascendantuuid": "ee5eda97-ff2a-4646-ae01-dcec47a7688b", "descendantuuid": "2214774f-6235-4cb9-8713-e2ee51b213d2", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '919c64ed-015d-4a71-9287-69f554378b69', 'INSERT', '{"uuid": "919c64ed-015d-4a71-9287-69f554378b69", "roletype": "AGENT", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '4363884b-cec6-4d16-a544-aa7851fbe568', 'INSERT', '{"uuid": "4363884b-cec6-4d16-a544-aa7851fbe568", "assumed": true, "ascendantuuid": "2214774f-6235-4cb9-8713-e2ee51b213d2", "descendantuuid": "919c64ed-015d-4a71-9287-69f554378b69", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '009da81d-2778-4058-a777-f2a1a49a7dbb', 'INSERT', '{"uuid": "009da81d-2778-4058-a777-f2a1a49a7dbb", "assumed": true, "ascendantuuid": "919c64ed-015d-4a71-9287-69f554378b69", "descendantuuid": "ffe77615-7fe9-4dd7-8a55-9459ff2d2b43", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'b0fff766-3126-4558-8543-023fd7919a4a', 'INSERT', '{"uuid": "b0fff766-3126-4558-8543-023fd7919a4a", "assumed": true, "ascendantuuid": "919c64ed-015d-4a71-9287-69f554378b69", "descendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', 'INSERT', '{"uuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "roletype": "REFERRER", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', 'a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d', 'INSERT', '{"op": "SELECT", "uuid": "a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d", "objectuuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '35138f25-fa9f-411b-bbf9-ea90747ec053', 'INSERT', '{"uuid": "35138f25-fa9f-411b-bbf9-ea90747ec053", "assumed": true, "ascendantuuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "descendantuuid": "a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '88d0fcab-468c-434d-bba5-b8ea58e367cf', 'INSERT', '{"uuid": "88d0fcab-468c-434d-bba5-b8ea58e367cf", "assumed": true, "ascendantuuid": "fdfd2976-fc7d-422e-8b5f-91f401927b18", "descendantuuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '36714b48-ab50-4ca0-b817-643b3b724da1', 'INSERT', '{"uuid": "36714b48-ab50-4ca0-b817-643b3b724da1", "assumed": true, "ascendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "descendantuuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f43465dc-80e3-42d4-8f70-2e081827f14f', 'INSERT', '{"uuid": "f43465dc-80e3-42d4-8f70-2e081827f14f", "assumed": true, "ascendantuuid": "919c64ed-015d-4a71-9287-69f554378b69", "descendantuuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '12a8f987-2cca-4849-84e9-ab90c5e17815', 'INSERT', '{"uuid": "12a8f987-2cca-4849-84e9-ab90c5e17815", "assumed": true, "ascendantuuid": "67f93c8d-a31d-4d14-ad7a-6bae4f8202e8", "descendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "grantedbyroleuuid": null, "grantedbytriggerof": "e2dd08d5-2083-44ef-bf22-57898af08e3e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', 'INSERT', '{"uuid": "eb40ed40-ebf5-401a-b498-ecc46928a17d", "serialid": 288, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'INSERT', '{"uuid": "e2dd08d5-2083-44ef-bf22-57898af08e3e", "version": 0, "validity": "[2004-01-20,2005-06-28)", "agreement": "2004-01-15", "reference": "JM33344", "debitoruuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "bankaccountuuid": "0bae3550-be89-4c0e-9ba4-01bae0419be0"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.object', '51a4690c-bb0e-4be2-a285-31552f900db6', 'INSERT', '{"uuid": "51a4690c-bb0e-4be2-a285-31552f900db6", "serialid": 277, "objecttable": "hs_office.sepamandate"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'a48e5290-7207-469f-85ea-c5f5b2150d1f', 'INSERT', '{"uuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "roletype": "OWNER", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '74d9ec93-6755-4198-bba3-b900d1391ddf', 'INSERT', '{"op": "DELETE", "uuid": "74d9ec93-6755-4198-bba3-b900d1391ddf", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '57902b9d-783f-4a58-9f83-6224b3f4a6bc', 'INSERT', '{"uuid": "57902b9d-783f-4a58-9f83-6224b3f4a6bc", "assumed": true, "ascendantuuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "descendantuuid": "74d9ec93-6755-4198-bba3-b900d1391ddf", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'dcf355cc-ab44-4b22-a55e-d5f99b85af29', 'INSERT', '{"uuid": "dcf355cc-ab44-4b22-a55e-d5f99b85af29", "assumed": true, "ascendantuuid": "ce47754e-0d06-4b12-bc91-8034a4a046e7", "descendantuuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '8f7b7ef3-16bc-4304-9b94-3db035baaed1', 'INSERT', '{"uuid": "8f7b7ef3-16bc-4304-9b94-3db035baaed1", "assumed": true, "ascendantuuid": "3706fd53-e952-408a-aedd-93ec6d5129be", "descendantuuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "grantedbyroleuuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "grantedbytriggerof": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '39c84db0-c0b8-48bc-9602-f6371fee499b', 'INSERT', '{"uuid": "39c84db0-c0b8-48bc-9602-f6371fee499b", "roletype": "ADMIN", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '9cf52144-7c0c-4031-a0dc-b5f7d0581115', 'INSERT', '{"op": "UPDATE", "uuid": "9cf52144-7c0c-4031-a0dc-b5f7d0581115", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'f994f54c-8f7c-4507-9b4e-4544c14c0ad0', 'INSERT', '{"uuid": "f994f54c-8f7c-4507-9b4e-4544c14c0ad0", "assumed": true, "ascendantuuid": "39c84db0-c0b8-48bc-9602-f6371fee499b", "descendantuuid": "9cf52144-7c0c-4031-a0dc-b5f7d0581115", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '258ddb5c-2b75-40b9-8898-b9c627298806', 'INSERT', '{"uuid": "258ddb5c-2b75-40b9-8898-b9c627298806", "assumed": true, "ascendantuuid": "a48e5290-7207-469f-85ea-c5f5b2150d1f", "descendantuuid": "39c84db0-c0b8-48bc-9602-f6371fee499b", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', 'a9998fe5-2760-4309-a904-8e4f6787110e', 'INSERT', '{"uuid": "a9998fe5-2760-4309-a904-8e4f6787110e", "roletype": "AGENT", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '9717685f-d479-46d1-885a-4cb17a430342', 'INSERT', '{"uuid": "9717685f-d479-46d1-885a-4cb17a430342", "assumed": true, "ascendantuuid": "39c84db0-c0b8-48bc-9602-f6371fee499b", "descendantuuid": "a9998fe5-2760-4309-a904-8e4f6787110e", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '7ec462f2-83f8-42de-af55-8b6b5e2de3f4', 'INSERT', '{"uuid": "7ec462f2-83f8-42de-af55-8b6b5e2de3f4", "assumed": true, "ascendantuuid": "a9998fe5-2760-4309-a904-8e4f6787110e", "descendantuuid": "edf9d085-dbfc-4e3a-9f0e-9eb407423ff6", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '204b62fa-20c9-47bd-bf32-ff24d7fb7ffb', 'INSERT', '{"uuid": "204b62fa-20c9-47bd-bf32-ff24d7fb7ffb", "assumed": true, "ascendantuuid": "a9998fe5-2760-4309-a904-8e4f6787110e", "descendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.role', '81268148-75ff-467a-8d73-b8e4f734d83c', 'INSERT', '{"uuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "roletype": "REFERRER", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.permission', '7878934b-1841-4918-85e7-ce853fe8fdba', 'INSERT', '{"op": "SELECT", "uuid": "7878934b-1841-4918-85e7-ce853fe8fdba", "objectuuid": "51a4690c-bb0e-4be2-a285-31552f900db6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'bc6d5658-ce6e-4b26-871d-1ccc1df07c6d', 'INSERT', '{"uuid": "bc6d5658-ce6e-4b26-871d-1ccc1df07c6d", "assumed": true, "ascendantuuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "descendantuuid": "7878934b-1841-4918-85e7-ce853fe8fdba", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '60a9ee92-68f5-4335-8ce4-67107e5309ed', 'INSERT', '{"uuid": "60a9ee92-68f5-4335-8ce4-67107e5309ed", "assumed": true, "ascendantuuid": "e9daa877-1886-48db-abab-5516000c4d8e", "descendantuuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '79d673f7-e093-49c4-8cab-fcd4a340c39c', 'INSERT', '{"uuid": "79d673f7-e093-49c4-8cab-fcd4a340c39c", "assumed": true, "ascendantuuid": "6f90fa6f-da1f-41aa-a74e-bd06ef60f48b", "descendantuuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', 'dab64a81-9b1f-4c93-9a53-13a4f4b2c022', 'INSERT', '{"uuid": "dab64a81-9b1f-4c93-9a53-13a4f4b2c022", "assumed": true, "ascendantuuid": "a9998fe5-2760-4309-a904-8e4f6787110e", "descendantuuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'rbac.grant', '74fe3b51-2a5a-4d27-a527-6efdd14214fb', 'INSERT', '{"uuid": "74fe3b51-2a5a-4d27-a527-6efdd14214fb", "assumed": true, "ascendantuuid": "81268148-75ff-467a-8d73-b8e4f734d83c", "descendantuuid": "42f0c634-d86b-4129-822b-f103cd6e0755", "grantedbyroleuuid": null, "grantedbytriggerof": "51a4690c-bb0e-4be2-a285-31552f900db6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2165', 'hs_office.sepamandate', '51a4690c-bb0e-4be2-a285-31552f900db6', 'INSERT', '{"uuid": "51a4690c-bb0e-4be2-a285-31552f900db6", "version": 0, "validity": "[2005-07-01,)", "agreement": "2005-06-28", "reference": "JM33344", "debitoruuid": "84d4763e-0133-4d81-946b-fb64d1a3fd26", "bankaccountuuid": "f3140f7e-5045-4534-92aa-e918895bfafb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', '925e61ee-5120-4205-b609-18083af2c4d6', 'INSERT', '{"uuid": "925e61ee-5120-4205-b609-18083af2c4d6", "serialid": 278, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '18630744-5484-4f55-94a4-15b6f8a8c791', 'INSERT', '{"op": "SELECT", "uuid": "18630744-5484-4f55-94a4-15b6f8a8c791", "objectuuid": "925e61ee-5120-4205-b609-18083af2c4d6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '67eb1bec-83ec-4876-aa00-5c13ee29717f', 'INSERT', '{"uuid": "67eb1bec-83ec-4876-aa00-5c13ee29717f", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "18630744-5484-4f55-94a4-15b6f8a8c791", "grantedbyroleuuid": null, "grantedbytriggerof": "925e61ee-5120-4205-b609-18083af2c4d6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5', 'INSERT', '{"op": "UPDATE", "uuid": "7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5", "objectuuid": "925e61ee-5120-4205-b609-18083af2c4d6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'f7036040-6df9-44df-a4a4-40b8065234b3', 'INSERT', '{"op": "SELECT", "uuid": "f7036040-6df9-44df-a4a4-40b8065234b3", "objectuuid": "eb40ed40-ebf5-401a-b498-ecc46928a17d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '7d7eb6df-a1e5-417d-b885-010094347b53', 'INSERT', '{"uuid": "7d7eb6df-a1e5-417d-b885-010094347b53", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5", "grantedbyroleuuid": null, "grantedbytriggerof": "925e61ee-5120-4205-b609-18083af2c4d6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', '925e61ee-5120-4205-b609-18083af2c4d6', 'INSERT', '{"uuid": "925e61ee-5120-4205-b609-18083af2c4d6", "comment": "initial share subscription", "version": 0, "reference": "1000300", "valuedate": "2000-12-06", "sharecount": 80, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 'INSERT', '{"uuid": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9", "serialid": 279, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '23115d61-dd0d-4545-8240-2415ab603868', 'INSERT', '{"op": "SELECT", "uuid": "23115d61-dd0d-4545-8240-2415ab603868", "objectuuid": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '3a7f512f-841d-42c1-a380-b04e86d9220f', 'INSERT', '{"uuid": "3a7f512f-841d-42c1-a380-b04e86d9220f", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "23115d61-dd0d-4545-8240-2415ab603868", "grantedbyroleuuid": null, "grantedbytriggerof": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '4b8fc5ce-2f77-43cc-8c11-caefef50e9e0', 'INSERT', '{"op": "UPDATE", "uuid": "4b8fc5ce-2f77-43cc-8c11-caefef50e9e0", "objectuuid": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '6422bf87-17e1-4a44-8620-369cdb981f46', 'INSERT', '{"uuid": "6422bf87-17e1-4a44-8620-369cdb981f46", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "4b8fc5ce-2f77-43cc-8c11-caefef50e9e0", "grantedbyroleuuid": null, "grantedbytriggerof": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 'INSERT', '{"uuid": "76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2003-07-12", "sharecount": 1, "membershipuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 'INSERT', '{"uuid": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258", "serialid": 280, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '7ba7e7db-d2a0-4d8a-a982-4b592a6519d3', 'INSERT', '{"op": "SELECT", "uuid": "7ba7e7db-d2a0-4d8a-a982-4b592a6519d3", "objectuuid": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'daa6daef-4605-4ff7-8092-8ce36182aecd', 'INSERT', '{"uuid": "daa6daef-4605-4ff7-8092-8ce36182aecd", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "7ba7e7db-d2a0-4d8a-a982-4b592a6519d3", "grantedbyroleuuid": null, "grantedbytriggerof": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '28a1da29-5665-4481-be2c-23484fede329', 'INSERT', '{"op": "UPDATE", "uuid": "28a1da29-5665-4481-be2c-23484fede329", "objectuuid": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'af304e37-6161-49b4-a07f-9d2ff0fc83e8', 'INSERT', '{"uuid": "af304e37-6161-49b4-a07f-9d2ff0fc83e8", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "28a1da29-5665-4481-be2c-23484fede329", "grantedbyroleuuid": null, "grantedbytriggerof": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 'INSERT', '{"uuid": "e27e543b-f15b-4e0b-98fc-ce72bcd5d258", "comment": "", "version": 0, "reference": "1000300", "valuedate": "2011-12-05", "sharecount": 16, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'd9c28f32-a87e-4f2e-af07-75a76004907b', 'INSERT', '{"uuid": "d9c28f32-a87e-4f2e-af07-75a76004907b", "serialid": 281, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'ad772eba-1cc4-4973-b407-ee1292c8cefb', 'INSERT', '{"op": "SELECT", "uuid": "ad772eba-1cc4-4973-b407-ee1292c8cefb", "objectuuid": "d9c28f32-a87e-4f2e-af07-75a76004907b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '200fb76f-7c36-4210-916c-6cc3770a8e20', 'INSERT', '{"uuid": "200fb76f-7c36-4210-916c-6cc3770a8e20", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "ad772eba-1cc4-4973-b407-ee1292c8cefb", "grantedbyroleuuid": null, "grantedbytriggerof": "d9c28f32-a87e-4f2e-af07-75a76004907b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '2b1bd996-ed42-4b6f-941f-a02115b5c49c', 'INSERT', '{"op": "UPDATE", "uuid": "2b1bd996-ed42-4b6f-941f-a02115b5c49c", "objectuuid": "d9c28f32-a87e-4f2e-af07-75a76004907b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'd7bf8f19-245f-407c-a279-8c6a8ac4cb4d', 'INSERT', '{"uuid": "d7bf8f19-245f-407c-a279-8c6a8ac4cb4d", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "2b1bd996-ed42-4b6f-941f-a02115b5c49c", "grantedbyroleuuid": null, "grantedbytriggerof": "d9c28f32-a87e-4f2e-af07-75a76004907b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'd9c28f32-a87e-4f2e-af07-75a76004907b', 'INSERT', '{"uuid": "d9c28f32-a87e-4f2e-af07-75a76004907b", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2013-10-21", "sharecount": 1, "membershipuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 'INSERT', '{"uuid": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866", "serialid": 282, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3', 'INSERT', '{"op": "SELECT", "uuid": "114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3", "objectuuid": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'dbcc10e6-1f85-4e5b-b8f1-d30aae66e623', 'INSERT', '{"uuid": "dbcc10e6-1f85-4e5b-b8f1-d30aae66e623", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3", "grantedbyroleuuid": null, "grantedbytriggerof": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '9532739f-1149-42ed-bb1d-cac1d14d4380', 'INSERT', '{"op": "UPDATE", "uuid": "9532739f-1149-42ed-bb1d-cac1d14d4380", "objectuuid": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '5fc992c1-6639-471a-87a4-a80a0896e70c', 'INSERT', '{"uuid": "5fc992c1-6639-471a-87a4-a80a0896e70c", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "9532739f-1149-42ed-bb1d-cac1d14d4380", "grantedbyroleuuid": null, "grantedbytriggerof": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 'INSERT', '{"uuid": "b0a9b8a6-8709-4210-b4ad-eadcab6f7866", "comment": "Kapitalerhoehung", "version": 0, "reference": "1000300", "valuedate": "2020-12-08", "sharecount": 96, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'd3e130d9-9288-4d74-8699-1778d2f5c151', 'INSERT', '{"uuid": "d3e130d9-9288-4d74-8699-1778d2f5c151", "serialid": 283, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '04a9b874-65cc-460a-83be-47366ec3c35e', 'INSERT', '{"op": "SELECT", "uuid": "04a9b874-65cc-460a-83be-47366ec3c35e", "objectuuid": "d3e130d9-9288-4d74-8699-1778d2f5c151", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'f246d972-475b-4606-ac2f-94c0d79db3ff', 'INSERT', '{"uuid": "f246d972-475b-4606-ac2f-94c0d79db3ff", "assumed": true, "ascendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "descendantuuid": "04a9b874-65cc-460a-83be-47366ec3c35e", "grantedbyroleuuid": null, "grantedbytriggerof": "d3e130d9-9288-4d74-8699-1778d2f5c151"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'fac002b1-7dd0-4def-9c60-ce441ae74bf0', 'INSERT', '{"op": "UPDATE", "uuid": "fac002b1-7dd0-4def-9c60-ce441ae74bf0", "objectuuid": "d3e130d9-9288-4d74-8699-1778d2f5c151", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '339606b6-0f4d-412a-8fcf-c23c49cb362b', 'INSERT', '{"uuid": "339606b6-0f4d-412a-8fcf-c23c49cb362b", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "fac002b1-7dd0-4def-9c60-ce441ae74bf0", "grantedbyroleuuid": null, "grantedbytriggerof": "d3e130d9-9288-4d74-8699-1778d2f5c151"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'd3e130d9-9288-4d74-8699-1778d2f5c151', 'INSERT', '{"uuid": "d3e130d9-9288-4d74-8699-1778d2f5c151", "comment": "Beitritt", "version": 0, "reference": "1101800", "valuedate": "2021-05-17", "sharecount": 4, "membershipuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', '110138a4-46e3-418b-8ce2-095da9c6b98c', 'INSERT', '{"uuid": "110138a4-46e3-418b-8ce2-095da9c6b98c", "serialid": 284, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'd0c2aec5-df1e-4a43-accc-292636a196ee', 'INSERT', '{"op": "SELECT", "uuid": "d0c2aec5-df1e-4a43-accc-292636a196ee", "objectuuid": "110138a4-46e3-418b-8ce2-095da9c6b98c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'cef6afa7-a6d2-4100-8d23-55559217b4b5', 'INSERT', '{"uuid": "cef6afa7-a6d2-4100-8d23-55559217b4b5", "assumed": true, "ascendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "descendantuuid": "d0c2aec5-df1e-4a43-accc-292636a196ee", "grantedbyroleuuid": null, "grantedbytriggerof": "110138a4-46e3-418b-8ce2-095da9c6b98c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'c16db138-0d91-44b1-bd5a-b8361d1773a6', 'INSERT', '{"op": "UPDATE", "uuid": "c16db138-0d91-44b1-bd5a-b8361d1773a6", "objectuuid": "110138a4-46e3-418b-8ce2-095da9c6b98c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'faf97694-ad24-4965-9e64-432da96eb398', 'INSERT', '{"uuid": "faf97694-ad24-4965-9e64-432da96eb398", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "c16db138-0d91-44b1-bd5a-b8361d1773a6", "grantedbyroleuuid": null, "grantedbytriggerof": "110138a4-46e3-418b-8ce2-095da9c6b98c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', '110138a4-46e3-418b-8ce2-095da9c6b98c', 'INSERT', '{"uuid": "110138a4-46e3-418b-8ce2-095da9c6b98c", "comment": "Beitritt", "version": 0, "reference": "1101900", "valuedate": "2021-05-25", "sharecount": 1, "membershipuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', '0565d216-af16-45aa-86e5-9ca55751322f', 'INSERT', '{"uuid": "0565d216-af16-45aa-86e5-9ca55751322f", "serialid": 285, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'b299282d-1cfc-41b1-8936-2dcbfe1017ca', 'INSERT', '{"op": "SELECT", "uuid": "b299282d-1cfc-41b1-8936-2dcbfe1017ca", "objectuuid": "0565d216-af16-45aa-86e5-9ca55751322f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '2d664d49-5717-4a5f-a4f5-ec7743b5710b', 'INSERT', '{"uuid": "2d664d49-5717-4a5f-a4f5-ec7743b5710b", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "b299282d-1cfc-41b1-8936-2dcbfe1017ca", "grantedbyroleuuid": null, "grantedbytriggerof": "0565d216-af16-45aa-86e5-9ca55751322f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'bb211784-8f68-44ff-833c-3f501a33ad0f', 'INSERT', '{"op": "UPDATE", "uuid": "bb211784-8f68-44ff-833c-3f501a33ad0f", "objectuuid": "0565d216-af16-45aa-86e5-9ca55751322f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '53fb7a01-cb8a-496e-a74b-c18aead55996', 'INSERT', '{"uuid": "53fb7a01-cb8a-496e-a74b-c18aead55996", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "bb211784-8f68-44ff-833c-3f501a33ad0f", "grantedbyroleuuid": null, "grantedbytriggerof": "0565d216-af16-45aa-86e5-9ca55751322f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', '0565d216-af16-45aa-86e5-9ca55751322f', 'INSERT', '{"uuid": "0565d216-af16-45aa-86e5-9ca55751322f", "comment": "Kapitalerhoehung", "version": 0, "reference": "1000300", "valuedate": "2023-10-10", "sharecount": 96, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 'INSERT', '{"uuid": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8", "serialid": 286, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'd80e22b5-9ba3-4ad6-a392-fddaa4a5532e', 'INSERT', '{"op": "SELECT", "uuid": "d80e22b5-9ba3-4ad6-a392-fddaa4a5532e", "objectuuid": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'cf757bfb-f62d-42be-8bd3-cb2dfe1a9b3d', 'INSERT', '{"uuid": "cf757bfb-f62d-42be-8bd3-cb2dfe1a9b3d", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "d80e22b5-9ba3-4ad6-a392-fddaa4a5532e", "grantedbyroleuuid": null, "grantedbytriggerof": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '2afe8e61-bfb1-44c3-8685-bb5390e9ffa9', 'INSERT', '{"op": "UPDATE", "uuid": "2afe8e61-bfb1-44c3-8685-bb5390e9ffa9", "objectuuid": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '242bbed6-71bd-47d7-a1a5-1cf3495c0366', 'INSERT', '{"uuid": "242bbed6-71bd-47d7-a1a5-1cf3495c0366", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "2afe8e61-bfb1-44c3-8685-bb5390e9ffa9", "grantedbyroleuuid": null, "grantedbytriggerof": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 'INSERT', '{"uuid": "c7d34de2-7cbd-480a-9ce5-a574ef7248d8", "comment": "initial share subscription", "version": 0, "reference": "1002000", "valuedate": "2000-12-06", "sharecount": 2, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.object', '147820f5-533d-471d-9f54-99e087ec37c6', 'INSERT', '{"uuid": "147820f5-533d-471d-9f54-99e087ec37c6", "serialid": 287, "objecttable": "hs_office.coopsharetx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'd1fb0181-59a4-4c35-a6da-9c4c8c420f4b', 'INSERT', '{"op": "SELECT", "uuid": "d1fb0181-59a4-4c35-a6da-9c4c8c420f4b", "objectuuid": "147820f5-533d-471d-9f54-99e087ec37c6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'dcca4c69-4263-4bb9-a811-e6d89c8c3ecd', 'INSERT', '{"uuid": "dcca4c69-4263-4bb9-a811-e6d89c8c3ecd", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "d1fb0181-59a4-4c35-a6da-9c4c8c420f4b", "grantedbyroleuuid": null, "grantedbytriggerof": "147820f5-533d-471d-9f54-99e087ec37c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', '7f04b4ff-ce51-4c25-b924-eda9c80beab9', 'INSERT', '{"op": "UPDATE", "uuid": "7f04b4ff-ce51-4c25-b924-eda9c80beab9", "objectuuid": "147820f5-533d-471d-9f54-99e087ec37c6", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '4201e516-0d85-43c6-934e-41980b5f07a6', 'INSERT', '{"uuid": "4201e516-0d85-43c6-934e-41980b5f07a6", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "7f04b4ff-ce51-4c25-b924-eda9c80beab9", "grantedbyroleuuid": null, "grantedbytriggerof": "147820f5-533d-471d-9f54-99e087ec37c6"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', '147820f5-533d-471d-9f54-99e087ec37c6', 'INSERT', '{"uuid": "147820f5-533d-471d-9f54-99e087ec37c6", "comment": "increase", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "sharecount": 40, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "SUBSCRIPTION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', 'a710ad6d-cc4f-4a1a-8cd8-09eae7e33591', 'INSERT', '{"uuid": "a710ad6d-cc4f-4a1a-8cd8-09eae7e33591", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "f7036040-6df9-44df-a4a4-40b8065234b3", "grantedbyroleuuid": null, "grantedbytriggerof": "eb40ed40-ebf5-401a-b498-ecc46928a17d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.permission', 'aa8c9c0b-ac3d-4fe4-85ee-22876b77a346', 'INSERT', '{"op": "UPDATE", "uuid": "aa8c9c0b-ac3d-4fe4-85ee-22876b77a346", "objectuuid": "eb40ed40-ebf5-401a-b498-ecc46928a17d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'rbac.grant', '00ddbf09-cee4-4880-a4c7-3dfe2c7b831a', 'INSERT', '{"uuid": "00ddbf09-cee4-4880-a4c7-3dfe2c7b831a", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "aa8c9c0b-ac3d-4fe4-85ee-22876b77a346", "grantedbyroleuuid": null, "grantedbytriggerof": "eb40ed40-ebf5-401a-b498-ecc46928a17d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2187', 'hs_office.coopsharetx', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', 'INSERT', '{"uuid": "eb40ed40-ebf5-401a-b498-ecc46928a17d", "comment": "membership ended", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "sharecount": 22, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "CANCELLATION", "revertedsharetxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', 'INSERT', '{"uuid": "f9c724b4-3965-4cfa-bc93-5b780b2362e7", "serialid": 289, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '5612b460-e9f4-4c7f-8f30-fabca1954260', 'INSERT', '{"op": "SELECT", "uuid": "5612b460-e9f4-4c7f-8f30-fabca1954260", "objectuuid": "f9c724b4-3965-4cfa-bc93-5b780b2362e7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'c863aeb6-d294-4b38-9cb5-a746d88ae3bb', 'INSERT', '{"uuid": "c863aeb6-d294-4b38-9cb5-a746d88ae3bb", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "5612b460-e9f4-4c7f-8f30-fabca1954260", "grantedbyroleuuid": null, "grantedbytriggerof": "f9c724b4-3965-4cfa-bc93-5b780b2362e7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '793d3808-9277-4bc1-b39e-46fd0b5028d1', 'INSERT', '{"op": "UPDATE", "uuid": "793d3808-9277-4bc1-b39e-46fd0b5028d1", "objectuuid": "f9c724b4-3965-4cfa-bc93-5b780b2362e7", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '9b17f569-8476-4251-a789-cfb74e3d3f98', 'INSERT', '{"uuid": "9b17f569-8476-4251-a789-cfb74e3d3f98", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "793d3808-9277-4bc1-b39e-46fd0b5028d1", "grantedbyroleuuid": null, "grantedbytriggerof": "f9c724b4-3965-4cfa-bc93-5b780b2362e7"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', 'INSERT', '{"uuid": "f9c724b4-3965-4cfa-bc93-5b780b2362e7", "comment": "for subscription A", "version": 0, "reference": "1000300", "valuedate": "2000-12-06", "assetvalue": 5120.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '1b444a8f-352d-4812-97aa-bd1e649201f8', 'INSERT', '{"uuid": "1b444a8f-352d-4812-97aa-bd1e649201f8", "serialid": 290, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'a46e7e72-094a-4677-a2ba-b027e117c814', 'INSERT', '{"op": "SELECT", "uuid": "a46e7e72-094a-4677-a2ba-b027e117c814", "objectuuid": "1b444a8f-352d-4812-97aa-bd1e649201f8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'bbde51c9-e683-4ff4-a012-a554ae9bf2bb', 'INSERT', '{"uuid": "bbde51c9-e683-4ff4-a012-a554ae9bf2bb", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "a46e7e72-094a-4677-a2ba-b027e117c814", "grantedbyroleuuid": null, "grantedbytriggerof": "1b444a8f-352d-4812-97aa-bd1e649201f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '34608829-3d7a-475c-b734-f3692e102b82', 'INSERT', '{"op": "UPDATE", "uuid": "34608829-3d7a-475c-b734-f3692e102b82", "objectuuid": "1b444a8f-352d-4812-97aa-bd1e649201f8", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '6e566df6-3722-4285-b7c9-529dae12bf44', 'INSERT', '{"uuid": "6e566df6-3722-4285-b7c9-529dae12bf44", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "34608829-3d7a-475c-b734-f3692e102b82", "grantedbyroleuuid": null, "grantedbytriggerof": "1b444a8f-352d-4812-97aa-bd1e649201f8"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '1b444a8f-352d-4812-97aa-bd1e649201f8', 'INSERT', '{"uuid": "1b444a8f-352d-4812-97aa-bd1e649201f8", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2003-07-07", "assetvalue": 64.00, "membershipuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 'INSERT', '{"uuid": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5", "serialid": 291, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '176b447d-ce47-44da-8219-a00244a3d5e0', 'INSERT', '{"op": "SELECT", "uuid": "176b447d-ce47-44da-8219-a00244a3d5e0", "objectuuid": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'bfc8f1bb-1257-42d3-aeb9-dff5b7f3b217', 'INSERT', '{"uuid": "bfc8f1bb-1257-42d3-aeb9-dff5b7f3b217", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "176b447d-ce47-44da-8219-a00244a3d5e0", "grantedbyroleuuid": null, "grantedbytriggerof": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '22500be4-6daf-4c50-9120-a4d0c6491720', 'INSERT', '{"op": "UPDATE", "uuid": "22500be4-6daf-4c50-9120-a4d0c6491720", "objectuuid": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '0037af31-dbef-4d05-b8de-d96df9a4823c', 'INSERT', '{"uuid": "0037af31-dbef-4d05-b8de-d96df9a4823c", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "22500be4-6daf-4c50-9120-a4d0c6491720", "grantedbyroleuuid": null, "grantedbytriggerof": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 'INSERT', '{"uuid": "2b1590f1-c1b8-4318-9879-8e2d898fa4a5", "comment": "", "version": 0, "reference": "1000300", "valuedate": "2011-12-12", "assetvalue": 1024.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '0f05f1bd-403c-4239-8595-d317bba58a32', 'INSERT', '{"uuid": "0f05f1bd-403c-4239-8595-d317bba58a32", "serialid": 292, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'c772675e-39bf-48b0-b10a-1a2ff065c3a6', 'INSERT', '{"op": "SELECT", "uuid": "c772675e-39bf-48b0-b10a-1a2ff065c3a6", "objectuuid": "0f05f1bd-403c-4239-8595-d317bba58a32", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '76d8fb6c-b943-48ad-881b-2e2bd0fa4a76', 'INSERT', '{"uuid": "76d8fb6c-b943-48ad-881b-2e2bd0fa4a76", "assumed": true, "ascendantuuid": "5fd54e69-2513-4413-95d6-dde58ed6d8ae", "descendantuuid": "c772675e-39bf-48b0-b10a-1a2ff065c3a6", "grantedbyroleuuid": null, "grantedbytriggerof": "0f05f1bd-403c-4239-8595-d317bba58a32"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'b096450c-b5aa-4a9e-9b80-8633ca2243a4', 'INSERT', '{"op": "UPDATE", "uuid": "b096450c-b5aa-4a9e-9b80-8633ca2243a4", "objectuuid": "0f05f1bd-403c-4239-8595-d317bba58a32", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '57a68c1c-1fc9-4739-b67d-f61282cd36f1', 'INSERT', '{"uuid": "57a68c1c-1fc9-4739-b67d-f61282cd36f1", "assumed": true, "ascendantuuid": "9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772", "descendantuuid": "b096450c-b5aa-4a9e-9b80-8633ca2243a4", "grantedbyroleuuid": null, "grantedbytriggerof": "0f05f1bd-403c-4239-8595-d317bba58a32"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '96383615-0c59-4cc9-9292-723a1c0f4a52', 'INSERT', '{"op": "UPDATE", "uuid": "96383615-0c59-4cc9-9292-723a1c0f4a52", "objectuuid": "9f3ea248-0492-43af-8430-2cbe4ae3338b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '0f05f1bd-403c-4239-8595-d317bba58a32', 'INSERT', '{"uuid": "0f05f1bd-403c-4239-8595-d317bba58a32", "comment": "", "version": 0, "reference": "1015200", "valuedate": "2013-10-21", "assetvalue": 64.00, "membershipuuid": "af682fb0-f06d-4a2b-affb-40487a079a70", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '2cca894b-c08a-4b36-b809-d417cf0b305c', 'INSERT', '{"uuid": "2cca894b-c08a-4b36-b809-d417cf0b305c", "serialid": 293, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '651a87c6-db56-4963-88a5-5dd7b74d53ce', 'INSERT', '{"op": "SELECT", "uuid": "651a87c6-db56-4963-88a5-5dd7b74d53ce", "objectuuid": "2cca894b-c08a-4b36-b809-d417cf0b305c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '693be01f-b73e-4ff2-934c-c8401a2d54b6', 'INSERT', '{"uuid": "693be01f-b73e-4ff2-934c-c8401a2d54b6", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "651a87c6-db56-4963-88a5-5dd7b74d53ce", "grantedbyroleuuid": null, "grantedbytriggerof": "2cca894b-c08a-4b36-b809-d417cf0b305c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'cf345447-6015-474d-9c1f-2fe7b879edf0', 'INSERT', '{"op": "UPDATE", "uuid": "cf345447-6015-474d-9c1f-2fe7b879edf0", "objectuuid": "2cca894b-c08a-4b36-b809-d417cf0b305c", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '4589614b-cdeb-47aa-a747-83ba244d6100', 'INSERT', '{"uuid": "4589614b-cdeb-47aa-a747-83ba244d6100", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "cf345447-6015-474d-9c1f-2fe7b879edf0", "grantedbyroleuuid": null, "grantedbytriggerof": "2cca894b-c08a-4b36-b809-d417cf0b305c"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '2cca894b-c08a-4b36-b809-d417cf0b305c', 'INSERT', '{"uuid": "2cca894b-c08a-4b36-b809-d417cf0b305c", "comment": "Einzahlung", "version": 0, "reference": "1000300", "valuedate": "2020-12-15", "assetvalue": 6144.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'b4acab9a-7a54-42df-bd35-717f052b407d', 'INSERT', '{"uuid": "b4acab9a-7a54-42df-bd35-717f052b407d", "serialid": 294, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b', 'INSERT', '{"op": "SELECT", "uuid": "9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b", "objectuuid": "b4acab9a-7a54-42df-bd35-717f052b407d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '6b78ec2b-56c2-4f95-a57e-4e227ae4c4a9', 'INSERT', '{"uuid": "6b78ec2b-56c2-4f95-a57e-4e227ae4c4a9", "assumed": true, "ascendantuuid": "81aefd8d-c7aa-48a5-869f-1df15b4b68ae", "descendantuuid": "9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b", "grantedbyroleuuid": null, "grantedbytriggerof": "b4acab9a-7a54-42df-bd35-717f052b407d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f', 'INSERT', '{"op": "UPDATE", "uuid": "6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f", "objectuuid": "b4acab9a-7a54-42df-bd35-717f052b407d", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'fcd6e589-bdd7-49c2-a4a4-f1033039ba84', 'INSERT', '{"uuid": "fcd6e589-bdd7-49c2-a4a4-f1033039ba84", "assumed": true, "ascendantuuid": "173a65d3-7eb4-4910-a83f-08ce5ed65583", "descendantuuid": "6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f", "grantedbyroleuuid": null, "grantedbytriggerof": "b4acab9a-7a54-42df-bd35-717f052b407d"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'b4acab9a-7a54-42df-bd35-717f052b407d', 'INSERT', '{"uuid": "b4acab9a-7a54-42df-bd35-717f052b407d", "comment": "Beitritt - Lastschrift", "version": 0, "reference": "1101800", "valuedate": "2021-05-21", "assetvalue": 256.00, "membershipuuid": "ace60d06-0635-4c2c-bb4b-7233c19862fc", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', 'INSERT', '{"uuid": "fab99b6c-dd05-451f-a9e7-80891ec94db1", "serialid": 295, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'c7a074b6-6e8b-4570-a8b3-baf483e67c14', 'INSERT', '{"op": "SELECT", "uuid": "c7a074b6-6e8b-4570-a8b3-baf483e67c14", "objectuuid": "fab99b6c-dd05-451f-a9e7-80891ec94db1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '976d530f-a6a7-4ea1-bda1-087b3605a970', 'INSERT', '{"uuid": "976d530f-a6a7-4ea1-bda1-087b3605a970", "assumed": true, "ascendantuuid": "08c7995c-a7e7-4093-8aa0-6e6e8449f1e4", "descendantuuid": "c7a074b6-6e8b-4570-a8b3-baf483e67c14", "grantedbyroleuuid": null, "grantedbytriggerof": "fab99b6c-dd05-451f-a9e7-80891ec94db1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '16c5c51a-6b85-48fc-a19b-b1d0319c414d', 'INSERT', '{"op": "UPDATE", "uuid": "16c5c51a-6b85-48fc-a19b-b1d0319c414d", "objectuuid": "fab99b6c-dd05-451f-a9e7-80891ec94db1", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '59529140-a688-4039-8ca5-9c6bb81e1e5e', 'INSERT', '{"uuid": "59529140-a688-4039-8ca5-9c6bb81e1e5e", "assumed": true, "ascendantuuid": "e4d265c4-fe4a-468d-9cc9-3a77267ddcb3", "descendantuuid": "16c5c51a-6b85-48fc-a19b-b1d0319c414d", "grantedbyroleuuid": null, "grantedbytriggerof": "fab99b6c-dd05-451f-a9e7-80891ec94db1"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', 'INSERT', '{"uuid": "fab99b6c-dd05-451f-a9e7-80891ec94db1", "comment": "Beitritt - Lastschrift", "version": 0, "reference": "1101900", "valuedate": "2021-05-31", "assetvalue": 64.00, "membershipuuid": "183d5ad7-4cc1-46c1-8f4e-5d7c24583769", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 'INSERT', '{"uuid": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb", "serialid": 296, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c', 'INSERT', '{"op": "SELECT", "uuid": "ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c", "objectuuid": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '1c95e864-7f9e-4d8d-a834-225c93cfdc2d', 'INSERT', '{"uuid": "1c95e864-7f9e-4d8d-a834-225c93cfdc2d", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c", "grantedbyroleuuid": null, "grantedbytriggerof": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'a5de5a65-81f3-482b-baac-4054940ea7b5', 'INSERT', '{"op": "UPDATE", "uuid": "a5de5a65-81f3-482b-baac-4054940ea7b5", "objectuuid": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '0b668bc5-920c-4c00-ad0a-752ec371bc25', 'INSERT', '{"uuid": "0b668bc5-920c-4c00-ad0a-752ec371bc25", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "a5de5a65-81f3-482b-baac-4054940ea7b5", "grantedbyroleuuid": null, "grantedbytriggerof": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 'INSERT', '{"uuid": "34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb", "comment": "Kapitalerhoehung - Ueberweisung", "version": 0, "reference": "1000300", "valuedate": "2023-10-05", "assetvalue": 3072.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '9f3ea248-0492-43af-8430-2cbe4ae3338b', 'INSERT', '{"uuid": "9f3ea248-0492-43af-8430-2cbe4ae3338b", "serialid": 297, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'c32e6121-a5fc-4345-b6e6-26eda31d266e', 'INSERT', '{"op": "SELECT", "uuid": "c32e6121-a5fc-4345-b6e6-26eda31d266e", "objectuuid": "9f3ea248-0492-43af-8430-2cbe4ae3338b", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '6e7918ee-dfb7-4d0e-8aba-e0f281e40ecd', 'INSERT', '{"uuid": "6e7918ee-dfb7-4d0e-8aba-e0f281e40ecd", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "c32e6121-a5fc-4345-b6e6-26eda31d266e", "grantedbyroleuuid": null, "grantedbytriggerof": "9f3ea248-0492-43af-8430-2cbe4ae3338b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'c5313615-0a03-4ff3-bd3b-f38fc7bd68f0', 'INSERT', '{"uuid": "c5313615-0a03-4ff3-bd3b-f38fc7bd68f0", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "96383615-0c59-4cc9-9292-723a1c0f4a52", "grantedbyroleuuid": null, "grantedbytriggerof": "9f3ea248-0492-43af-8430-2cbe4ae3338b"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '9f3ea248-0492-43af-8430-2cbe4ae3338b', 'INSERT', '{"uuid": "9f3ea248-0492-43af-8430-2cbe4ae3338b", "comment": "Kapitalerhoehung - Ueberweisung", "version": 0, "reference": "1000300", "valuedate": "2023-10-06", "assetvalue": 3072.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '02362331-8069-4712-9c39-371973edb192', 'INSERT', '{"uuid": "02362331-8069-4712-9c39-371973edb192", "serialid": 298, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'db092336-0de9-4c19-b5a7-9f035596b364', 'INSERT', '{"op": "SELECT", "uuid": "db092336-0de9-4c19-b5a7-9f035596b364", "objectuuid": "02362331-8069-4712-9c39-371973edb192", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'e7c0f355-8789-4d74-bd38-6a7f77902823', 'INSERT', '{"uuid": "e7c0f355-8789-4d74-bd38-6a7f77902823", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "db092336-0de9-4c19-b5a7-9f035596b364", "grantedbyroleuuid": null, "grantedbytriggerof": "02362331-8069-4712-9c39-371973edb192"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '63dd3ba5-db8d-481b-8eb5-ee982522f4d0', 'INSERT', '{"op": "UPDATE", "uuid": "63dd3ba5-db8d-481b-8eb5-ee982522f4d0", "objectuuid": "02362331-8069-4712-9c39-371973edb192", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '4f2835bf-09ce-44c1-8dc7-fe4ff02fc494', 'INSERT', '{"uuid": "4f2835bf-09ce-44c1-8dc7-fe4ff02fc494", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "63dd3ba5-db8d-481b-8eb5-ee982522f4d0", "grantedbyroleuuid": null, "grantedbytriggerof": "02362331-8069-4712-9c39-371973edb192"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '02362331-8069-4712-9c39-371973edb192', 'INSERT', '{"uuid": "02362331-8069-4712-9c39-371973edb192", "comment": "for subscription B", "version": 0, "reference": "1002000", "valuedate": "2000-12-06", "assetvalue": 128.00, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '899a89c3-6715-4a37-bb69-1ed124e0a23f', 'INSERT', '{"uuid": "899a89c3-6715-4a37-bb69-1ed124e0a23f", "serialid": 299, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '67f40c40-c638-4350-a11b-951b0bf73bf0', 'INSERT', '{"op": "SELECT", "uuid": "67f40c40-c638-4350-a11b-951b0bf73bf0", "objectuuid": "899a89c3-6715-4a37-bb69-1ed124e0a23f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'b7428b9a-e165-4a81-b1b9-5187e0fe4cd6', 'INSERT', '{"uuid": "b7428b9a-e165-4a81-b1b9-5187e0fe4cd6", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "67f40c40-c638-4350-a11b-951b0bf73bf0", "grantedbyroleuuid": null, "grantedbytriggerof": "899a89c3-6715-4a37-bb69-1ed124e0a23f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '0166244a-b22b-4567-a09d-bd113f3430b0', 'INSERT', '{"op": "UPDATE", "uuid": "0166244a-b22b-4567-a09d-bd113f3430b0", "objectuuid": "899a89c3-6715-4a37-bb69-1ed124e0a23f", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '3ca77977-6015-4ace-9665-be334d0128ad', 'INSERT', '{"uuid": "3ca77977-6015-4ace-9665-be334d0128ad", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "0166244a-b22b-4567-a09d-bd113f3430b0", "grantedbyroleuuid": null, "grantedbytriggerof": "899a89c3-6715-4a37-bb69-1ed124e0a23f"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '899a89c3-6715-4a37-bb69-1ed124e0a23f', 'INSERT', '{"uuid": "899a89c3-6715-4a37-bb69-1ed124e0a23f", "comment": "for subscription C", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "assetvalue": 2560.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 'INSERT', '{"uuid": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd", "serialid": 300, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'b969f3ba-2936-4937-80ff-c440300d3f10', 'INSERT', '{"op": "SELECT", "uuid": "b969f3ba-2936-4937-80ff-c440300d3f10", "objectuuid": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'bbe6ea5d-c6bb-448d-a92e-0ec2e61f9985', 'INSERT', '{"uuid": "bbe6ea5d-c6bb-448d-a92e-0ec2e61f9985", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "b969f3ba-2936-4937-80ff-c440300d3f10", "grantedbyroleuuid": null, "grantedbytriggerof": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'f6d1a800-dbfe-44d3-a939-e168760203dd', 'INSERT', '{"op": "UPDATE", "uuid": "f6d1a800-dbfe-44d3-a939-e168760203dd", "objectuuid": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '0d245a6d-d759-4b8f-b1b7-44d6ce23ea8e', 'INSERT', '{"uuid": "0d245a6d-d759-4b8f-b1b7-44d6ce23ea8e", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "f6d1a800-dbfe-44d3-a939-e168760203dd", "grantedbyroleuuid": null, "grantedbytriggerof": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 'INSERT', '{"uuid": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd", "comment": "for transfer from 7", "version": 0, "reference": "1002000", "valuedate": "2005-01-10", "assetvalue": 512.00, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "ADOPTION", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '568b153a-13dd-4510-b681-13b53f866091', 'INSERT', '{"uuid": "568b153a-13dd-4510-b681-13b53f866091", "serialid": 301, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '44a7f281-7acd-4536-a7da-db74fc7d5a30', 'INSERT', '{"op": "SELECT", "uuid": "44a7f281-7acd-4536-a7da-db74fc7d5a30", "objectuuid": "568b153a-13dd-4510-b681-13b53f866091", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '80101a12-d237-46ed-b8bc-27eab76c14a7', 'INSERT', '{"uuid": "80101a12-d237-46ed-b8bc-27eab76c14a7", "assumed": true, "ascendantuuid": "345b8b7b-a948-446f-949a-2a903b460032", "descendantuuid": "44a7f281-7acd-4536-a7da-db74fc7d5a30", "grantedbyroleuuid": null, "grantedbytriggerof": "568b153a-13dd-4510-b681-13b53f866091"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '51278cdf-daff-4fe9-90b2-1e651847e0d8', 'INSERT', '{"op": "UPDATE", "uuid": "51278cdf-daff-4fe9-90b2-1e651847e0d8", "objectuuid": "568b153a-13dd-4510-b681-13b53f866091", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '6154c85c-c362-4b71-b842-8b2bd73e4285', 'INSERT', '{"uuid": "6154c85c-c362-4b71-b842-8b2bd73e4285", "assumed": true, "ascendantuuid": "0eabdcfb-e308-4e52-8c7f-27643332c947", "descendantuuid": "51278cdf-daff-4fe9-90b2-1e651847e0d8", "grantedbyroleuuid": null, "grantedbytriggerof": "568b153a-13dd-4510-b681-13b53f866091"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '568b153a-13dd-4510-b681-13b53f866091', 'INSERT', '{"uuid": "568b153a-13dd-4510-b681-13b53f866091", "comment": "for transfer to 10", "version": 0, "reference": "1000300", "valuedate": "2005-01-10", "assetvalue": -512.00, "membershipuuid": "f97e9751-6e67-40fb-b840-b818dc69afcf", "transactiontype": "TRANSFER", "assetadoptiontxuuid": "a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd", "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', 'INSERT', '{"uuid": "6d4e335b-f22c-48d8-98b3-0da4ad759e65", "serialid": 302, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '852d7666-33fb-4246-b2c4-1efbecba4da0', 'INSERT', '{"op": "SELECT", "uuid": "852d7666-33fb-4246-b2c4-1efbecba4da0", "objectuuid": "6d4e335b-f22c-48d8-98b3-0da4ad759e65", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '050e2230-78e6-43ae-9278-eb70a4a6909b', 'INSERT', '{"uuid": "050e2230-78e6-43ae-9278-eb70a4a6909b", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "852d7666-33fb-4246-b2c4-1efbecba4da0", "grantedbyroleuuid": null, "grantedbytriggerof": "6d4e335b-f22c-48d8-98b3-0da4ad759e65"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'fcc39eac-cca5-44fb-b728-9b4df8aa3874', 'INSERT', '{"op": "UPDATE", "uuid": "fcc39eac-cca5-44fb-b728-9b4df8aa3874", "objectuuid": "6d4e335b-f22c-48d8-98b3-0da4ad759e65", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '7d5320cb-c8ce-4c24-988b-72d8fcc43b0f', 'INSERT', '{"uuid": "7d5320cb-c8ce-4c24-988b-72d8fcc43b0f", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "fcc39eac-cca5-44fb-b728-9b4df8aa3874", "grantedbyroleuuid": null, "grantedbytriggerof": "6d4e335b-f22c-48d8-98b3-0da4ad759e65"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', 'INSERT', '{"uuid": "6d4e335b-f22c-48d8-98b3-0da4ad759e65", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -8.00, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "CLEARING", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '105e8365-c8b6-4d69-bef4-8bc388524462', 'INSERT', '{"uuid": "105e8365-c8b6-4d69-bef4-8bc388524462", "serialid": 303, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '6a568f34-8ab2-4a74-941c-266e28a52836', 'INSERT', '{"op": "SELECT", "uuid": "6a568f34-8ab2-4a74-941c-266e28a52836", "objectuuid": "105e8365-c8b6-4d69-bef4-8bc388524462", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '261a0a0b-a0a8-4493-96f1-10f8eb18e01f', 'INSERT', '{"uuid": "261a0a0b-a0a8-4493-96f1-10f8eb18e01f", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "6a568f34-8ab2-4a74-941c-266e28a52836", "grantedbyroleuuid": null, "grantedbytriggerof": "105e8365-c8b6-4d69-bef4-8bc388524462"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '8a4f7331-7bdf-41a9-85c3-5ea327063d71', 'INSERT', '{"op": "UPDATE", "uuid": "8a4f7331-7bdf-41a9-85c3-5ea327063d71", "objectuuid": "105e8365-c8b6-4d69-bef4-8bc388524462", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'c1c5ea35-68d0-4e81-b659-9b0e7894364e', 'INSERT', '{"uuid": "c1c5ea35-68d0-4e81-b659-9b0e7894364e", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "8a4f7331-7bdf-41a9-85c3-5ea327063d71", "grantedbyroleuuid": null, "grantedbytriggerof": "105e8365-c8b6-4d69-bef4-8bc388524462"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '105e8365-c8b6-4d69-bef4-8bc388524462', 'INSERT', '{"uuid": "105e8365-c8b6-4d69-bef4-8bc388524462", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -100.00, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "DISBURSAL", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', '5b516553-2772-4591-b4bf-4f353e598c79', 'INSERT', '{"uuid": "5b516553-2772-4591-b4bf-4f353e598c79", "serialid": 304, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '526ae830-0342-4a87-a95f-07d760391fb7', 'INSERT', '{"op": "SELECT", "uuid": "526ae830-0342-4a87-a95f-07d760391fb7", "objectuuid": "5b516553-2772-4591-b4bf-4f353e598c79", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'c57e5955-fca4-4ddf-8cb1-c6731cd7bd70', 'INSERT', '{"uuid": "c57e5955-fca4-4ddf-8cb1-c6731cd7bd70", "assumed": true, "ascendantuuid": "ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c", "descendantuuid": "526ae830-0342-4a87-a95f-07d760391fb7", "grantedbyroleuuid": null, "grantedbytriggerof": "5b516553-2772-4591-b4bf-4f353e598c79"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '08a87b5d-d5eb-4d77-aa10-1afa61c87e38', 'INSERT', '{"op": "UPDATE", "uuid": "08a87b5d-d5eb-4d77-aa10-1afa61c87e38", "objectuuid": "5b516553-2772-4591-b4bf-4f353e598c79", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '2b408520-c1ed-4d41-8457-7d9496910c56', 'INSERT', '{"uuid": "2b408520-c1ed-4d41-8457-7d9496910c56", "assumed": true, "ascendantuuid": "6df50d79-b958-456a-ac84-a8786f0f18a7", "descendantuuid": "08a87b5d-d5eb-4d77-aa10-1afa61c87e38", "grantedbyroleuuid": null, "grantedbytriggerof": "5b516553-2772-4591-b4bf-4f353e598c79"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', '5b516553-2772-4591-b4bf-4f353e598c79', 'INSERT', '{"uuid": "5b516553-2772-4591-b4bf-4f353e598c79", "comment": "for cancellation D", "version": 0, "reference": "1002000", "valuedate": "2016-12-31", "assetvalue": -20.00, "membershipuuid": "db1fa6bf-85ff-4302-b7c3-9a66f9761830", "transactiontype": "LOSS", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'df223672-3c4b-4044-8f54-1794a50c957e', 'INSERT', '{"uuid": "df223672-3c4b-4044-8f54-1794a50c957e", "serialid": 305, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb', 'INSERT', '{"op": "SELECT", "uuid": "63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb", "objectuuid": "df223672-3c4b-4044-8f54-1794a50c957e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '6cc382ac-c4f0-4341-80ac-32d9d2eb28f3', 'INSERT', '{"uuid": "6cc382ac-c4f0-4341-80ac-32d9d2eb28f3", "assumed": true, "ascendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "descendantuuid": "63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb", "grantedbyroleuuid": null, "grantedbytriggerof": "df223672-3c4b-4044-8f54-1794a50c957e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'cc4e1270-9d63-449f-ae27-a492326f72b1', 'INSERT', '{"op": "UPDATE", "uuid": "cc4e1270-9d63-449f-ae27-a492326f72b1", "objectuuid": "df223672-3c4b-4044-8f54-1794a50c957e", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', 'a6994a91-4291-4342-bc50-9a7bd25f7b20', 'INSERT', '{"uuid": "a6994a91-4291-4342-bc50-9a7bd25f7b20", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "cc4e1270-9d63-449f-ae27-a492326f72b1", "grantedbyroleuuid": null, "grantedbytriggerof": "df223672-3c4b-4044-8f54-1794a50c957e"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'df223672-3c4b-4044-8f54-1794a50c957e', 'INSERT', '{"uuid": "df223672-3c4b-4044-8f54-1794a50c957e", "comment": "for subscription E", "version": 0, "reference": "1909000", "valuedate": "2024-01-15", "assetvalue": 128.00, "membershipuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "transactiontype": "DEPOSIT", "assetadoptiontxuuid": null, "revertedassettxuuid": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.object', 'cd8cd45a-a4af-46ce-a434-5b5208095346', 'INSERT', '{"uuid": "cd8cd45a-a4af-46ce-a434-5b5208095346", "serialid": 306, "objecttable": "hs_office.coopassettx"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', 'f03cc85a-b722-43f4-8d56-a29f1387e692', 'INSERT', '{"op": "SELECT", "uuid": "f03cc85a-b722-43f4-8d56-a29f1387e692", "objectuuid": "cd8cd45a-a4af-46ce-a434-5b5208095346", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '72e5484a-06b8-4fcb-b039-42dd92d1b54a', 'INSERT', '{"uuid": "72e5484a-06b8-4fcb-b039-42dd92d1b54a", "assumed": true, "ascendantuuid": "1d24331c-d029-4539-8b40-2b891f6a75a9", "descendantuuid": "f03cc85a-b722-43f4-8d56-a29f1387e692", "grantedbyroleuuid": null, "grantedbytriggerof": "cd8cd45a-a4af-46ce-a434-5b5208095346"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.permission', '16994a15-ef4b-4c7f-b123-e9c2e03919d0', 'INSERT', '{"op": "UPDATE", "uuid": "16994a15-ef4b-4c7f-b123-e9c2e03919d0", "objectuuid": "cd8cd45a-a4af-46ce-a434-5b5208095346", "optablename": null}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'rbac.grant', '2f57e665-78f6-48fa-b811-d8537ff580e3', 'INSERT', '{"uuid": "2f57e665-78f6-48fa-b811-d8537ff580e3", "assumed": true, "ascendantuuid": "bf27b482-99fb-43fe-8789-b926b9131a32", "descendantuuid": "16994a15-ef4b-4c7f-b123-e9c2e03919d0", "grantedbyroleuuid": null, "grantedbytriggerof": "cd8cd45a-a4af-46ce-a434-5b5208095346"}'); +INSERT INTO base.tx_journal (txid, targettable, targetuuid, targetop, targetdelta) VALUES ('2210', 'hs_office.coopassettx', 'cd8cd45a-a4af-46ce-a434-5b5208095346', 'INSERT', '{"uuid": "cd8cd45a-a4af-46ce-a434-5b5208095346", "comment": "chargeback for subscription E", "version": 0, "reference": "1909000", "valuedate": "2024-01-20", "assetvalue": -128.00, "membershipuuid": "9c468212-9e05-4b29-9d75-5a2c147b2b8f", "transactiontype": "REVERSAL", "assetadoptiontxuuid": null, "revertedassettxuuid": "df223672-3c4b-4044-8f54-1794a50c957e"}'); -- -- Data for Name: bankaccount; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 0, 'Ragnar Richter', 'DE02300209000106531065', 'GENODEM1GLS'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('7761056f-60a1-4981-a45f-55097922cfcb', 0, 'Michael Mellis', 'DE37500105177419788228', 'GENODEF1HH2'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 0, 'Wasserwerk Suedholstein', 'DE49500105174516484892', 'NOLADE21WHO'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('1ee9f29b-08b9-4651-a866-24e3c6c1f337', 0, 'Richard Wiese Das Perfekte Haus', 'DE89370400440532013000', 'COBADEFFXXX'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('9a5d0728-35a4-4fed-8f48-9944255ddee5', 0, 'Michael Mellis', 'DE37500105177419788228', 'INGDDEFFXXX'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('0e352061-8280-491d-9125-d1547e3662f8', 0, 'JM e.K.', 'DE02300209000106531065', 'CMCIDEDD'); -INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('e7f9797c-0871-4df4-b9ef-e658e97825c0', 0, 'JM GmbH', 'DE49500105174516484892', 'INGDDEFFXXX'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('9b403ef6-3fae-4698-9b21-2627c51fa254', 0, 'Ragnar Richter', 'DE02300209000106531065', 'GENODEM1GLS'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('f9811182-d400-43e0-ba9e-de745c9e82a3', 0, 'Michael Mellis', 'DE37500105177419788228', 'GENODEF1HH2'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('4924877c-c487-4e4d-8b14-901e9b6069ac', 0, 'Wasserwerk Suedholstein', 'DE49500105174516484892', 'NOLADE21WHO'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('831a608f-fefe-425b-b740-1786f856c680', 0, 'Richard Wiese Das Perfekte Haus', 'DE89370400440532013000', 'COBADEFFXXX'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 0, 'Michael Mellis', 'DE37500105177419788228', 'INGDDEFFXXX'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('0bae3550-be89-4c0e-9ba4-01bae0419be0', 0, 'JM e.K.', 'DE02300209000106531065', 'CMCIDEDD'); +INSERT INTO hs_office.bankaccount (uuid, version, holder, iban, bic) VALUES ('f3140f7e-5045-4534-92aa-e918895bfafb', 0, 'JM GmbH', 'DE49500105174516484892', 'INGDDEFFXXX'); -- -- Data for Name: contact; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('1c52fc2c-6390-425b-993a-788365e85d05', 0, 'Michael Mellis, Herr Michael Mellis', '{"city": "Hage", "firm": "Herr Michael Mellis", "name": "Herr Michael Mellis", "street": "Dr. Bolte Str. 50", "country": "Germany", "zipcode": "26524"}', '{"main": "michael@Mellis.example.org"}', '{"fax": "+49 40 912345-9", "phone_mobile": "+49/1522123455", "phone_office": "+49 4931/1234567"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 0, 'Ragnar IT-Beratung, Herr Ragnar Richter', '{"city": "Stuttgart", "firm": "Herr Ragnar Richter", "name": "Herr Ragnar Richter", "street": "Vioktoriastraße 114", "country": "Germany", "zipcode": "70197"}', '{"main": "hostsharing@ragnar-richter.de"}', '{"fax": "+49 711 87654-3", "phone_office": "+49 711 987654-2", "phone_private": "+49 711 987654-1"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('441d53f1-af50-4e73-9b53-48468700d257', 0, 'Hostsharing e.G., Hostmaster Hostsharing', '{"firm": "Hostmaster Hostsharing", "name": "Hostmaster Hostsharing", "country": "Germany"}', '{"main": "hostmaster@hostsharing.net"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('483c5cf4-8c5e-405c-8f98-8139e80a7dce', 0, 'JM e.K.', '{"city": "Berlin", "firm": "", "street": "Wiesenweg 15", "country": "DE", "zipcode": "12335"}', '{"main": "jm-ex-partner@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('aa9af033-e564-421c-b235-2dd7d5b96559', 0, 'JM GmbH, Frau Dr. Jenny Meyer-Billing', '{"city": "Berlin", "firm": "Frau Dr. Jenny Meyer-Billing", "name": "Frau Dr. Jenny Meyer-Billing", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "jm-billing@example.org"}', '{"fax": "+49 30 2222222", "phone_office": "+49 30 1111111", "phone_private": "+49 30 7777777"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 0, 'JM GmbH, Herr Andrew Meyer-Operation', '{"city": "Berlin", "firm": "Herr Andrew Meyer-Operation", "name": "Herr Andrew Meyer-Operation", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "am-operation@example.org"}', '{"fax": "+49 30 4444444", "phone_office": "+49 30 3333333", "phone_private": "+49 30 6666666"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('25083463-3713-4a20-b579-c1e34d542bcd', 0, 'JM GmbH, Herr Philip Meyer-Contract', '{"city": "Berlin", "firm": "Herr Philip Meyer-Contract", "name": "Herr Philip Meyer-Contract", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "pm-partner@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('dbf6038a-0387-400d-b083-411ba014ff6a', 0, 'JM GmbH, Frau Tammy Meyer-VIP', '{"city": "Berlin", "firm": "Frau Tammy Meyer-VIP", "name": "Frau Tammy Meyer-VIP", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "tm-vip@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 999999", "phone_private": "+49 30 999999"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 0, 'Test PS, Petra Schmidt', '{"firm": "Petra Schmidt", "name": "Petra Schmidt"}', '{"main": "ps@example.com"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('c5bd22df-9452-49c1-b369-b98c10a90853', 0, 'Frau Frauke Fanninga', '{"city": "Hitzacker", "name": "Frau Frauke Fanninga", "street": "Am Walde 1", "country": "DE", "zipcode": "29456"}', '{"main": "ff@example.org"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 0, 'Frau Cecilia Camus', '{"city": "Orléans", "name": "Frau Cecilia Camus", "street": "Rue d''Avignion 60", "country": "FR", "zipcode": "45000"}', '{"main": "cc@example.org"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('a8380163-1e05-41c9-9614-a0af334d49ac', 0, 'Wasserwerk Südholstein, Frau Christiane Milberg', '{"city": "Hetlingen", "firm": "Frau Christiane Milberg", "name": "Frau Christiane Milberg", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}', '{"main": "rechnung@ww-sholst.example.org"}', '{"phone_mobile": "+49 4103 12345-1"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('03229434-fc7d-43f6-89ce-892d4fa2f8d2', 0, 'Das Perfekte Haus, Herr Richard Wiese', '{"city": "Essen", "firm": "Herr Richard Wiese", "name": "Herr Richard Wiese", "street": "Kennedyplatz 11", "country": "Germany", "zipcode": "45279"}', '{"main": "admin@das-perfekte-haus.example.org"}', '{"phone_mobile": "+49-172-12345"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('7321b71b-7c08-49bf-ae45-12f69644378f', 0, 'Wasswerwerk Südholstein, Herr Karim Metzger', '{"city": "Hetlingen", "firm": "Herr Karim Metzger", "name": "Herr Karim Metzger", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}', '{"main": "karim.metzger@ww-sholst.example.org"}', '{"phone_office": "+49 4103 12345-2"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 0, 'Das Perfekte Haus, Herr Inhaber R. Wiese', '{"co": "Client-ID 515217", "city": "Hannover", "firm": "Herr Inhaber R. Wiese", "name": "Herr Inhaber R. Wiese", "street": "Essen, Kastanienallee 81", "country": "Germany", "zipcode": "30127"}', '{"main": "515217@kkemail.example.org"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('9b4179ba-a41d-47e3-bbaa-a180b2965f04', 0, 'Ragnar Richter', '{"name": "Ragnar Richter"}', '{"main": "mail@ragnar-richter..example.org"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('31eb8927-f7e7-45db-a350-bece46fd2300', 0, 'Eike Henning', '{"name": "Eike Henning"}', '{"main": "hostsharing@eike-henning..example.org"}', '{}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('d5b31ba0-0fa5-4e89-871b-df13e4d3834a', 0, 'Jan Henning', '{"name": "Jan Henning"}', '{"main": "mail@jan-henning.example.org"}', '{"phone_office": "01577 12345678"}'); -INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('825cdd9a-8562-47ad-ad23-58ed52dbbab5', 0, 'Jan Henning', '{"name": "Jan Henning"}', '{"main": "lists@jan-henning.example.org"}', '{"phone_office": "01577 12345678"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('691db509-b67e-46ec-a859-c4cb05fbbd70', 0, 'Michael Mellis, Herr Michael Mellis', '{"city": "Hage", "firm": "Herr Michael Mellis", "name": "Herr Michael Mellis", "street": "Dr. Bolte Str. 50", "country": "Germany", "zipcode": "26524"}', '{"main": "michael@Mellis.example.org"}', '{"fax": "+49 40 912345-9", "phone_mobile": "+49/1522123455", "phone_office": "+49 4931/1234567"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 0, 'Ragnar IT-Beratung, Herr Ragnar Richter', '{"city": "Stuttgart", "firm": "Herr Ragnar Richter", "name": "Herr Ragnar Richter", "street": "Vioktoriastraße 114", "country": "Germany", "zipcode": "70197"}', '{"main": "hostsharing@ragnar-richter.de"}', '{"fax": "+49 711 87654-3", "phone_office": "+49 711 987654-2", "phone_private": "+49 711 987654-1"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('d363745a-e94f-48be-8397-4b361570a54d', 0, 'Hostsharing e.G., Hostmaster Hostsharing', '{"firm": "Hostmaster Hostsharing", "name": "Hostmaster Hostsharing", "country": "Germany"}', '{"main": "hostmaster@hostsharing.net"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('7a334268-7d11-4765-8fa9-17e2c36cca7a', 0, 'JM e.K.', '{"city": "Berlin", "firm": "", "street": "Wiesenweg 15", "country": "DE", "zipcode": "12335"}', '{"main": "jm-ex-partner@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('33b40eee-30ed-4924-859d-6c58b5aa4124', 0, 'JM GmbH, Frau Dr. Jenny Meyer-Billing', '{"city": "Berlin", "firm": "Frau Dr. Jenny Meyer-Billing", "name": "Frau Dr. Jenny Meyer-Billing", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "jm-billing@example.org"}', '{"fax": "+49 30 2222222", "phone_office": "+49 30 1111111", "phone_private": "+49 30 7777777"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('16da0560-e134-41c5-aafb-1f7a5b33692b', 0, 'JM GmbH, Herr Andrew Meyer-Operation', '{"city": "Berlin", "firm": "Herr Andrew Meyer-Operation", "name": "Herr Andrew Meyer-Operation", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "am-operation@example.org"}', '{"fax": "+49 30 4444444", "phone_office": "+49 30 3333333", "phone_private": "+49 30 6666666"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('1fc10779-390b-40ff-b641-b6b5e2634ebb', 0, 'JM GmbH, Herr Philip Meyer-Contract', '{"city": "Berlin", "firm": "Herr Philip Meyer-Contract", "name": "Herr Philip Meyer-Contract", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "pm-partner@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 5555555", "phone_private": "+49 30 6666666"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('caac18bd-9277-47ac-99bb-368e2d64dac0', 0, 'JM GmbH, Frau Tammy Meyer-VIP', '{"city": "Berlin", "firm": "Frau Tammy Meyer-VIP", "name": "Frau Tammy Meyer-VIP", "street": "Waldweg 5", "country": "DE", "zipcode": "11001"}', '{"main": "tm-vip@example.org"}', '{"fax": "+49 30 6666666", "phone_office": "+49 30 999999", "phone_private": "+49 30 999999"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('eead6995-dd54-475f-8194-74445c421305', 0, 'Test PS, Petra Schmidt', '{"firm": "Petra Schmidt", "name": "Petra Schmidt"}', '{"main": "ps@example.com"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('4b68de11-a658-44bb-be49-ad592e73e3d8', 0, 'Frau Frauke Fanninga', '{"city": "Hitzacker", "name": "Frau Frauke Fanninga", "street": "Am Walde 1", "country": "DE", "zipcode": "29456"}', '{"main": "ff@example.org"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 0, 'Frau Cecilia Camus', '{"city": "Orléans", "name": "Frau Cecilia Camus", "street": "Rue d''Avignion 60", "country": "FR", "zipcode": "45000"}', '{"main": "cc@example.org"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('25358342-4f90-4397-b4c4-d90524ac0b7b', 0, 'Wasserwerk Südholstein, Frau Christiane Milberg', '{"city": "Hetlingen", "firm": "Frau Christiane Milberg", "name": "Frau Christiane Milberg", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}', '{"main": "rechnung@ww-sholst.example.org"}', '{"phone_mobile": "+49 4103 12345-1"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('4997dce8-4927-4a10-a7b3-16c574eb79c9', 0, 'Das Perfekte Haus, Herr Richard Wiese', '{"city": "Essen", "firm": "Herr Richard Wiese", "name": "Herr Richard Wiese", "street": "Kennedyplatz 11", "country": "Germany", "zipcode": "45279"}', '{"main": "admin@das-perfekte-haus.example.org"}', '{"phone_mobile": "+49-172-12345"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('9dcab961-1465-40e3-8d83-357b22af2674', 0, 'Wasswerwerk Südholstein, Herr Karim Metzger', '{"city": "Hetlingen", "firm": "Herr Karim Metzger", "name": "Herr Karim Metzger", "street": "Am Wasserwerk 1-3", "country": "Germany", "zipcode": "25491"}', '{"main": "karim.metzger@ww-sholst.example.org"}', '{"phone_office": "+49 4103 12345-2"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('29e2d42f-5f00-467f-ab73-f2ff59f2792d', 0, 'Das Perfekte Haus, Herr Inhaber R. Wiese', '{"co": "Client-ID 515217", "city": "Hannover", "firm": "Herr Inhaber R. Wiese", "name": "Herr Inhaber R. Wiese", "street": "Essen, Kastanienallee 81", "country": "Germany", "zipcode": "30127"}', '{"main": "515217@kkemail.example.org"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('627a274d-55b0-42e7-963c-8b0cc3e204b4', 0, 'Ragnar Richter', '{"name": "Ragnar Richter"}', '{"main": "mail@ragnar-richter..example.org"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('e8151525-ae0c-44fb-9755-72be88f7f6b1', 0, 'Eike Henning', '{"name": "Eike Henning"}', '{"main": "hostsharing@eike-henning..example.org"}', '{}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 0, 'Jan Henning', '{"name": "Jan Henning"}', '{"main": "mail@jan-henning.example.org"}', '{"phone_office": "01577 12345678"}'); +INSERT INTO hs_office.contact (uuid, version, caption, postaladdress, emailaddresses, phonenumbers) VALUES ('c3b8c521-37f4-46b8-89f7-1931159e9a14', 0, 'Jan Henning', '{"name": "Jan Henning"}', '{"main": "lists@jan-henning.example.org"}', '{"phone_office": "01577 12345678"}'); -- -- Data for Name: contact_legacy_id; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('1c52fc2c-6390-425b-993a-788365e85d05', 100); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 132); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('441d53f1-af50-4e73-9b53-48468700d257', 212); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('483c5cf4-8c5e-405c-8f98-8139e80a7dce', 1200); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('aa9af033-e564-421c-b235-2dd7d5b96559', 1201); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 1202); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('25083463-3713-4a20-b579-c1e34d542bcd', 1203); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('dbf6038a-0387-400d-b083-411ba014ff6a', 1204); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 1301); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('c5bd22df-9452-49c1-b369-b98c10a90853', 1401); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 1501); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('a8380163-1e05-41c9-9614-a0af334d49ac', 90436); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('03229434-fc7d-43f6-89ce-892d4fa2f8d2', 90437); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('7321b71b-7c08-49bf-ae45-12f69644378f', 90438); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 90590); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('9b4179ba-a41d-47e3-bbaa-a180b2965f04', 90629); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('31eb8927-f7e7-45db-a350-bece46fd2300', 90677); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('d5b31ba0-0fa5-4e89-871b-df13e4d3834a', 90698); -INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('825cdd9a-8562-47ad-ad23-58ed52dbbab5', 90699); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('691db509-b67e-46ec-a859-c4cb05fbbd70', 100); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 132); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('d363745a-e94f-48be-8397-4b361570a54d', 212); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('7a334268-7d11-4765-8fa9-17e2c36cca7a', 1200); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('33b40eee-30ed-4924-859d-6c58b5aa4124', 1201); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('16da0560-e134-41c5-aafb-1f7a5b33692b', 1202); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('1fc10779-390b-40ff-b641-b6b5e2634ebb', 1203); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('caac18bd-9277-47ac-99bb-368e2d64dac0', 1204); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('eead6995-dd54-475f-8194-74445c421305', 1301); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('4b68de11-a658-44bb-be49-ad592e73e3d8', 1401); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 1501); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('25358342-4f90-4397-b4c4-d90524ac0b7b', 90436); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('4997dce8-4927-4a10-a7b3-16c574eb79c9', 90437); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('9dcab961-1465-40e3-8d83-357b22af2674', 90438); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('29e2d42f-5f00-467f-ab73-f2ff59f2792d', 90590); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('627a274d-55b0-42e7-963c-8b0cc3e204b4', 90629); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('e8151525-ae0c-44fb-9755-72be88f7f6b1', 90677); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 90698); +INSERT INTO hs_office.contact_legacy_id (uuid, contact_id) VALUES ('c3b8c521-37f4-46b8-89f7-1931159e9a14', 90699); -- -- Data for Name: coopassettx; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('9a9713e3-8f23-4acf-b260-234c6cd3afbe', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2000-12-06', 5120.00, '1000300', NULL, NULL, 'for subscription A'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('768f09ac-20c4-4952-9175-cb46e5acb491', 0, '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'DEPOSIT', '2003-07-07', 64.00, '1015200', NULL, NULL, ''); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('7dd37099-29cb-4932-b412-443444dc0027', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2011-12-12', 1024.00, '1000300', NULL, NULL, ''); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('419e123b-0d37-4559-8a0e-61117c653510', 0, '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'DEPOSIT', '2013-10-21', 64.00, '1015200', NULL, NULL, ''); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('a65dde94-715d-4eb5-ab56-bf6646857bb0', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2020-12-15', 6144.00, '1000300', NULL, NULL, 'Einzahlung'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 0, '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'DEPOSIT', '2021-05-21', 256.00, '1101800', NULL, NULL, 'Beitritt - Lastschrift'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('e5896125-6348-4a13-b947-71ebce17b19b', 0, 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'DEPOSIT', '2021-05-31', 64.00, '1101900', NULL, NULL, 'Beitritt - Lastschrift'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2023-10-05', 3072.00, '1000300', NULL, NULL, 'Kapitalerhoehung - Ueberweisung'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2023-10-06', 3072.00, '1000300', NULL, NULL, 'Kapitalerhoehung - Ueberweisung'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('8e9febfa-b05b-4374-97b1-68b1f23c317d', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'DEPOSIT', '2000-12-06', 128.00, '1002000', NULL, NULL, 'for subscription B'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DEPOSIT', '2005-01-10', 2560.00, '1000300', NULL, NULL, 'for subscription C'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('0abc3f6a-3232-409a-b81c-9416487b9290', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'ADOPTION', '2005-01-10', 512.00, '1002000', NULL, NULL, 'for transfer from 7'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('80944291-bb84-40fa-bf0b-ac429f7f6220', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'TRANSFER', '2005-01-10', -512.00, '1000300', NULL, '0abc3f6a-3232-409a-b81c-9416487b9290', 'for transfer to 10'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('b3765c8e-2e21-4cfb-99fd-77a351c960e4', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'CLEARING', '2016-12-31', -8.00, '1002000', NULL, NULL, 'for cancellation D'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('9c34861c-1b7e-482c-8346-b68835f787c9', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'DISBURSAL', '2016-12-31', -100.00, '1002000', NULL, NULL, 'for cancellation D'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('fd978b61-e7ae-403e-82c1-d5f298ef01a9', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'LOSS', '2016-12-31', -20.00, '1002000', NULL, NULL, 'for cancellation D'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('53a9b0ea-3758-401c-bdcd-f100511d04dd', 0, 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'DEPOSIT', '2024-01-15', 128.00, '1909000', NULL, NULL, 'for subscription E'); -INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('1f85fb03-656d-4abd-962c-a4f142f93652', 0, 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'REVERSAL', '2024-01-20', -128.00, '1909000', '53a9b0ea-3758-401c-bdcd-f100511d04dd', NULL, 'chargeback for subscription E'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('f9c724b4-3965-4cfa-bc93-5b780b2362e7', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2000-12-06', 5120.00, '1000300', NULL, NULL, 'for subscription A'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('1b444a8f-352d-4812-97aa-bd1e649201f8', 0, 'af682fb0-f06d-4a2b-affb-40487a079a70', 'DEPOSIT', '2003-07-07', 64.00, '1015200', NULL, NULL, ''); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2011-12-12', 1024.00, '1000300', NULL, NULL, ''); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('0f05f1bd-403c-4239-8595-d317bba58a32', 0, 'af682fb0-f06d-4a2b-affb-40487a079a70', 'DEPOSIT', '2013-10-21', 64.00, '1015200', NULL, NULL, ''); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('2cca894b-c08a-4b36-b809-d417cf0b305c', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2020-12-15', 6144.00, '1000300', NULL, NULL, 'Einzahlung'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('b4acab9a-7a54-42df-bd35-717f052b407d', 0, 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'DEPOSIT', '2021-05-21', 256.00, '1101800', NULL, NULL, 'Beitritt - Lastschrift'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('fab99b6c-dd05-451f-a9e7-80891ec94db1', 0, '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'DEPOSIT', '2021-05-31', 64.00, '1101900', NULL, NULL, 'Beitritt - Lastschrift'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2023-10-05', 3072.00, '1000300', NULL, NULL, 'Kapitalerhoehung - Ueberweisung'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('9f3ea248-0492-43af-8430-2cbe4ae3338b', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2023-10-06', 3072.00, '1000300', NULL, NULL, 'Kapitalerhoehung - Ueberweisung'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('02362331-8069-4712-9c39-371973edb192', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'DEPOSIT', '2000-12-06', 128.00, '1002000', NULL, NULL, 'for subscription B'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('899a89c3-6715-4a37-bb69-1ed124e0a23f', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DEPOSIT', '2005-01-10', 2560.00, '1000300', NULL, NULL, 'for subscription C'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'ADOPTION', '2005-01-10', 512.00, '1002000', NULL, NULL, 'for transfer from 7'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('568b153a-13dd-4510-b681-13b53f866091', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'TRANSFER', '2005-01-10', -512.00, '1000300', NULL, 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 'for transfer to 10'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('6d4e335b-f22c-48d8-98b3-0da4ad759e65', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'CLEARING', '2016-12-31', -8.00, '1002000', NULL, NULL, 'for cancellation D'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('105e8365-c8b6-4d69-bef4-8bc388524462', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'DISBURSAL', '2016-12-31', -100.00, '1002000', NULL, NULL, 'for cancellation D'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('5b516553-2772-4591-b4bf-4f353e598c79', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'LOSS', '2016-12-31', -20.00, '1002000', NULL, NULL, 'for cancellation D'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('df223672-3c4b-4044-8f54-1794a50c957e', 0, '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'DEPOSIT', '2024-01-15', 128.00, '1909000', NULL, NULL, 'for subscription E'); +INSERT INTO hs_office.coopassettx (uuid, version, membershipuuid, transactiontype, valuedate, assetvalue, reference, revertedassettxuuid, assetadoptiontxuuid, comment) VALUES ('cd8cd45a-a4af-46ce-a434-5b5208095346', 0, '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'REVERSAL', '2024-01-20', -128.00, '1909000', 'df223672-3c4b-4044-8f54-1794a50c957e', NULL, 'chargeback for subscription E'); -- -- Data for Name: coopassettx_legacy_id; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('9a9713e3-8f23-4acf-b260-234c6cd3afbe', 358); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('768f09ac-20c4-4952-9175-cb46e5acb491', 442); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('7dd37099-29cb-4932-b412-443444dc0027', 577); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('419e123b-0d37-4559-8a0e-61117c653510', 632); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('a65dde94-715d-4eb5-ab56-bf6646857bb0', 885); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 924); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('e5896125-6348-4a13-b947-71ebce17b19b', 925); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 1093); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 1094); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('8e9febfa-b05b-4374-97b1-68b1f23c317d', 31000); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 32000); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('80944291-bb84-40fa-bf0b-ac429f7f6220', 33001); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('0abc3f6a-3232-409a-b81c-9416487b9290', 33002); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('b3765c8e-2e21-4cfb-99fd-77a351c960e4', 34001); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('9c34861c-1b7e-482c-8346-b68835f787c9', 34002); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('fd978b61-e7ae-403e-82c1-d5f298ef01a9', 34003); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('53a9b0ea-3758-401c-bdcd-f100511d04dd', 35001); -INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('1f85fb03-656d-4abd-962c-a4f142f93652', 35002); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('f9c724b4-3965-4cfa-bc93-5b780b2362e7', 358); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('1b444a8f-352d-4812-97aa-bd1e649201f8', 442); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 577); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('0f05f1bd-403c-4239-8595-d317bba58a32', 632); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('2cca894b-c08a-4b36-b809-d417cf0b305c', 885); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('b4acab9a-7a54-42df-bd35-717f052b407d', 924); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('fab99b6c-dd05-451f-a9e7-80891ec94db1', 925); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 1093); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('9f3ea248-0492-43af-8430-2cbe4ae3338b', 1094); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('02362331-8069-4712-9c39-371973edb192', 31000); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('899a89c3-6715-4a37-bb69-1ed124e0a23f', 32000); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('568b153a-13dd-4510-b681-13b53f866091', 33001); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 33002); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('6d4e335b-f22c-48d8-98b3-0da4ad759e65', 34001); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('105e8365-c8b6-4d69-bef4-8bc388524462', 34002); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('5b516553-2772-4591-b4bf-4f353e598c79', 34003); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('df223672-3c4b-4044-8f54-1794a50c957e', 35001); +INSERT INTO hs_office.coopassettx_legacy_id (uuid, member_asset_id) VALUES ('cd8cd45a-a4af-46ce-a434-5b5208095346', 35002); -- -- Data for Name: coopsharetx; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('cc866944-946f-4608-9ba0-fd309f0b67de', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SUBSCRIPTION', '2000-12-06', 80, '1000300', NULL, 'initial share subscription'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 0, '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'SUBSCRIPTION', '2003-07-12', 1, '1015200', NULL, ''); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('0344596f-43fe-4802-8b57-11cd9574b644', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SUBSCRIPTION', '2011-12-05', 16, '1000300', NULL, ''); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('18b7c4ae-621f-4618-99c5-f22819b9bf32', 0, '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'SUBSCRIPTION', '2013-10-21', 1, '1015200', NULL, ''); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SUBSCRIPTION', '2020-12-08', 96, '1000300', NULL, 'Kapitalerhoehung'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('9269215d-0c94-4114-90f7-faace9ddd667', 0, '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'SUBSCRIPTION', '2021-05-17', 4, '1101800', NULL, 'Beitritt'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('ace9fec5-5880-4e30-96ea-b843d7001d83', 0, 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'SUBSCRIPTION', '2021-05-25', 1, '1101900', NULL, 'Beitritt'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('7659fb30-f484-469b-8817-71f19eb71022', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SUBSCRIPTION', '2023-10-10', 96, '1000300', NULL, 'Kapitalerhoehung'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('4eb3b112-412d-46ec-b127-b9c76f7cde99', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'SUBSCRIPTION', '2000-12-06', 2, '1002000', NULL, 'initial share subscription'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('1acec5cf-f771-48ed-9c15-00505524d3b1', 0, '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SUBSCRIPTION', '2005-01-10', 40, '1000300', NULL, 'increase'); -INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('31289955-0d15-45b2-9ffc-07f7cdd6afd1', 0, '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'CANCELLATION', '2016-12-31', 22, '1002000', NULL, 'membership ended'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('925e61ee-5120-4205-b609-18083af2c4d6', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SUBSCRIPTION', '2000-12-06', 80, '1000300', NULL, 'initial share subscription'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 0, 'af682fb0-f06d-4a2b-affb-40487a079a70', 'SUBSCRIPTION', '2003-07-12', 1, '1015200', NULL, ''); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SUBSCRIPTION', '2011-12-05', 16, '1000300', NULL, ''); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('d9c28f32-a87e-4f2e-af07-75a76004907b', 0, 'af682fb0-f06d-4a2b-affb-40487a079a70', 'SUBSCRIPTION', '2013-10-21', 1, '1015200', NULL, ''); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SUBSCRIPTION', '2020-12-08', 96, '1000300', NULL, 'Kapitalerhoehung'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('d3e130d9-9288-4d74-8699-1778d2f5c151', 0, 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'SUBSCRIPTION', '2021-05-17', 4, '1101800', NULL, 'Beitritt'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('110138a4-46e3-418b-8ce2-095da9c6b98c', 0, '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'SUBSCRIPTION', '2021-05-25', 1, '1101900', NULL, 'Beitritt'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('0565d216-af16-45aa-86e5-9ca55751322f', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SUBSCRIPTION', '2023-10-10', 96, '1000300', NULL, 'Kapitalerhoehung'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'SUBSCRIPTION', '2000-12-06', 2, '1002000', NULL, 'initial share subscription'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('147820f5-533d-471d-9f54-99e087ec37c6', 0, 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SUBSCRIPTION', '2005-01-10', 40, '1000300', NULL, 'increase'); +INSERT INTO hs_office.coopsharetx (uuid, version, membershipuuid, transactiontype, valuedate, sharecount, reference, revertedsharetxuuid, comment) VALUES ('eb40ed40-ebf5-401a-b498-ecc46928a17d', 0, 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'CANCELLATION', '2016-12-31', 22, '1002000', NULL, 'membership ended'); -- -- Data for Name: coopsharetx_legacy_id; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('cc866944-946f-4608-9ba0-fd309f0b67de', 3); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 90); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('0344596f-43fe-4802-8b57-11cd9574b644', 241); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('18b7c4ae-621f-4618-99c5-f22819b9bf32', 279); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 523); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('9269215d-0c94-4114-90f7-faace9ddd667', 562); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('ace9fec5-5880-4e30-96ea-b843d7001d83', 563); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('7659fb30-f484-469b-8817-71f19eb71022', 721); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('4eb3b112-412d-46ec-b127-b9c76f7cde99', 33451); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('1acec5cf-f771-48ed-9c15-00505524d3b1', 33701); -INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('31289955-0d15-45b2-9ffc-07f7cdd6afd1', 33810); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('925e61ee-5120-4205-b609-18083af2c4d6', 3); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 90); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 241); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('d9c28f32-a87e-4f2e-af07-75a76004907b', 279); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 523); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('d3e130d9-9288-4d74-8699-1778d2f5c151', 562); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('110138a4-46e3-418b-8ce2-095da9c6b98c', 563); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('0565d216-af16-45aa-86e5-9ca55751322f', 721); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 33451); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('147820f5-533d-471d-9f54-99e087ec37c6', 33701); +INSERT INTO hs_office.coopsharetx_legacy_id (uuid, member_share_id) VALUES ('eb40ed40-ebf5-401a-b498-ecc46928a17d', 33810); -- -- Data for Name: debitor; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('3162b2b5-9fda-476a-94e8-4e0265758d31', 0, '00', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', false, 'DE217249198', NULL, true, false, NULL, 'mim'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('0db2a143-0ab2-473f-84f8-d570ee119e04', 0, '00', '92b842af-05fc-405d-b0db-7a667228c221', false, '', NULL, true, false, NULL, 'xyz'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('5d6f9f7a-1821-4176-884f-fe191eb0de3d', 0, '00', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', false, '', NULL, true, true, NULL, 'xxx'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('6191fa62-0cc3-4172-9696-4145049b64ce', 0, '00', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', false, 'DE 236 109 136', NULL, true, false, NULL, 'rar'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('d93f1bac-c54d-4215-9831-ec3ebd08fcd4', 0, '00', '3c0abfbb-0006-426a-903f-6f435e03276e', false, '', NULL, true, true, NULL, 'yyy'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 0, '00', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', false, '', NULL, true, false, NULL, 'hsh'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('eab4b615-a7ab-438d-953d-b5da6485baa4', 0, '00', '6263942d-84d3-40de-b460-04c52e2a7f36', false, '', NULL, true, false, NULL, 'wws'); -INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('50eef0ed-3045-4b45-9fa4-3d4038c626e7', 0, '00', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', false, '', NULL, true, false, NULL, 'dph'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 0, '00', 'f415978e-b5c2-4a99-962e-3d31a4658780', false, 'DE217249198', NULL, true, false, NULL, 'mim'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('84d4763e-0133-4d81-946b-fb64d1a3fd26', 0, '00', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', false, '', NULL, true, false, NULL, 'xyz'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('bdfc3748-abd1-4bce-a239-f5b4df6715c4', 0, '00', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', false, '', NULL, true, true, NULL, 'xxx'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('67c2d793-212f-4ce0-a750-b18224a93c73', 0, '00', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', false, 'DE 236 109 136', NULL, true, false, NULL, 'rar'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('3692b171-10ef-4f20-97de-ed5fa562ca46', 0, '00', '268c2ce6-8945-4393-9916-ac90050f064a', false, '', NULL, true, true, NULL, 'yyy'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('ce424fb0-bcc4-43ef-bc62-e923fb337fde', 0, '00', '78123dac-fed2-4e3e-817b-0c13a2129dfe', false, '', NULL, true, false, NULL, 'hsh'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('ccbd7baa-494d-4bfc-b5bb-4310e607df04', 0, '00', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', false, '', NULL, true, false, NULL, 'wws'); +INSERT INTO hs_office.debitor (uuid, version, debitornumbersuffix, debitorreluuid, billable, vatid, vatcountrycode, vatbusiness, vatreversecharge, refundbankaccountuuid, defaultprefix) VALUES ('ade3baa7-760f-488b-962d-7e365ad1402f', 0, '00', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', false, '', NULL, true, false, NULL, 'dph'); -- -- Data for Name: membership; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('860a931c-5819-4cc8-9379-c2d530cd30f6', 0, 'c73dc87f-990b-4c2a-8809-7be08b6d1535', '00', '[2000-12-06,)', 'ACTIVE', false); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 0, '45fd8262-37b2-4d6d-b2f9-26d1561d307f', '00', '[2000-12-06,2016-01-01)', 'UNKNOWN', true); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 0, 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', '00', '[2021-04-01,)', 'ACTIVE', true); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 0, '94c3062b-ec85-469d-824d-885a125e5a52', '00', '[2003-07-12,)', 'ACTIVE', true); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('ca0baf78-f634-430f-b9d3-351a6d1a6723', 0, 'f32722ac-acac-46cd-b3d9-171c1921f2bc', '00', 'empty', 'INVALID', false); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('8a6743f8-ecf2-4500-8983-d657b9d61b18', 0, '23272f3b-28e7-4777-9f86-5821646343ad', '00', '[2021-05-17,)', 'ACTIVE', true); -INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('cce6083f-6122-4759-85a9-5ac021b2c95d', 0, 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', '00', '[2021-05-25,)', 'ACTIVE', true); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('f97e9751-6e67-40fb-b840-b818dc69afcf', 0, '91b63591-b1e2-4c65-8ad2-c607be4c1238', '00', '[2000-12-06,)', 'ACTIVE', false); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('db1fa6bf-85ff-4302-b7c3-9a66f9761830', 0, 'db7f287e-dfd7-4627-88e3-407cac226472', '00', '[2000-12-06,2016-01-01)', 'UNKNOWN', true); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('cf4c2c71-c6a0-4887-83a3-67509371b8af', 0, 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', '00', '[2021-04-01,)', 'ACTIVE', true); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('af682fb0-f06d-4a2b-affb-40487a079a70', 0, '029b1c78-d68b-48e6-83e5-8883b9cefe7c', '00', '[2003-07-12,)', 'ACTIVE', true); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('9c468212-9e05-4b29-9d75-5a2c147b2b8f', 0, '58ca016b-15ea-41e3-80ba-2603bf736619', '00', 'empty', 'INVALID', false); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('ace60d06-0635-4c2c-bb4b-7233c19862fc', 0, '25b8066a-59fd-4733-90f2-8ea80c826fff', '00', '[2021-05-17,)', 'ACTIVE', true); +INSERT INTO hs_office.membership (uuid, version, partneruuid, membernumbersuffix, validity, status, membershipfeebillable) VALUES ('183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 0, 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', '00', '[2021-05-25,)', 'ACTIVE', true); -- -- Data for Name: partner; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('c73dc87f-990b-4c2a-8809-7be08b6d1535', 0, 10003, 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('45fd8262-37b2-4d6d-b2f9-26d1561d307f', 0, 10020, '510f22fa-273b-4c27-a99c-0ced2c8ac722', '0bb9a82f-172b-40de-ae96-37fbb086d4d7'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 0, 11022, 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', '66a88623-096d-475e-b36c-1748db1503dc'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('94c3062b-ec85-469d-824d-885a125e5a52', 0, 10152, 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'c3657447-959c-488f-adcc-9402a118a8e9'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('f32722ac-acac-46cd-b3d9-171c1921f2bc', 0, 19090, 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('a7f3294e-b64f-4e46-860e-99e3617329bb', 0, 10000, '9702bd74-e7d9-440a-a210-64905274c259', 'ad6d5da4-b239-444b-b869-a66f4023c7cc'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('23272f3b-28e7-4777-9f86-5821646343ad', 0, 11018, '262a75f6-0c99-4101-8301-0cb95f7cb81e', '59a560aa-78c5-42be-8c9b-76329131b0a6'); -INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 0, 11019, 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('91b63591-b1e2-4c65-8ad2-c607be4c1238', 0, 10003, '48618c28-9304-4ccb-b022-e2cbb1832944', '6da29bfa-4744-437f-aed3-2695571c58bf'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('db7f287e-dfd7-4627-88e3-407cac226472', 0, 10020, '164d3cde-e2ab-4239-9dbf-de1c963158ac', '7b7a528d-a284-4d0d-99ce-73f2a7585f78'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 0, 11022, 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('029b1c78-d68b-48e6-83e5-8883b9cefe7c', 0, 10152, '201b417e-4ebe-458b-a7ce-a287c0ad9287', '90604765-0e48-4363-83e4-1c2e9e4a8f33'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('58ca016b-15ea-41e3-80ba-2603bf736619', 0, 19090, 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('defa6288-bed7-4ed8-ae6d-fbbb3530a632', 0, 10000, 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'f1048d9f-e560-459a-91fe-f769ef049648'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('25b8066a-59fd-4733-90f2-8ea80c826fff', 0, 11018, '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'b2cd9234-6651-4c9a-818d-f48610d76095'); +INSERT INTO hs_office.partner (uuid, version, partnernumber, partnerreluuid, detailsuuid) VALUES ('c83c9583-a825-4a2d-96b7-fec9dd635fbc', 0, 11019, 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', '871eadbe-c143-444a-966c-cc4494ba93bf'); -- -- Data for Name: partner_details; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('a6773052-fbc1-4f5b-81df-17d59e7bc76b', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('0bb9a82f-172b-40de-ae96-37fbb086d4d7', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('66a88623-096d-475e-b36c-1748db1503dc', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('c3657447-959c-488f-adcc-9402a118a8e9', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('d6bd08e1-4c8e-4727-88ae-9e287723f74e', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('ad6d5da4-b239-444b-b869-a66f4023c7cc', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('59a560aa-78c5-42be-8c9b-76329131b0a6', 0, NULL, NULL, NULL, NULL, NULL, NULL); -INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('6da29bfa-4744-437f-aed3-2695571c58bf', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('7b7a528d-a284-4d0d-99ce-73f2a7585f78', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('90604765-0e48-4363-83e4-1c2e9e4a8f33', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('a7494bd0-af97-421e-bfa3-53bd97fb1df8', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('f1048d9f-e560-459a-91fe-f769ef049648', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('b2cd9234-6651-4c9a-818d-f48610d76095', 0, NULL, NULL, NULL, NULL, NULL, NULL); +INSERT INTO hs_office.partner_details (uuid, version, registrationoffice, registrationnumber, birthplace, birthname, birthday, dateofdeath) VALUES ('871eadbe-c143-444a-966c-cc4494ba93bf', 0, NULL, NULL, NULL, NULL, NULL, NULL); -- -- Data for Name: partner_legacy_id; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('c73dc87f-990b-4c2a-8809-7be08b6d1535', 100); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('45fd8262-37b2-4d6d-b2f9-26d1561d307f', 120); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 122); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('94c3062b-ec85-469d-824d-885a125e5a52', 132); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('f32722ac-acac-46cd-b3d9-171c1921f2bc', 190); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('a7f3294e-b64f-4e46-860e-99e3617329bb', 213); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('23272f3b-28e7-4777-9f86-5821646343ad', 541); -INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 542); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('91b63591-b1e2-4c65-8ad2-c607be4c1238', 100); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('db7f287e-dfd7-4627-88e3-407cac226472', 120); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 122); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('029b1c78-d68b-48e6-83e5-8883b9cefe7c', 132); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('58ca016b-15ea-41e3-80ba-2603bf736619', 190); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('defa6288-bed7-4ed8-ae6d-fbbb3530a632', 213); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('25b8066a-59fd-4733-90f2-8ea80c826fff', 541); +INSERT INTO hs_office.partner_legacy_id (uuid, bp_id) VALUES ('c83c9583-a825-4a2d-96b7-fec9dd635fbc', 542); -- -- Data for Name: person; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('caf3808d-21ec-4391-a57b-ea59eafe2c75', 0, '??', 'Michael Mellis', 'Herr', '', 'Michael', 'Mellis'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('89f83a40-5d7b-4f33-ba0b-29207f263f15', 0, '??', 'Ragnar IT-Beratung', 'Herr', '', 'Ragnar', 'Richter'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('ed1ea73e-5097-42c1-ba31-fe11480f3089', 0, 'LP', 'Hostsharing e.G.', 'Firma', '', 'Hostmaster', 'Hostsharing'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('ea4932ab-63b1-4e5a-9965-6f8604a14923', 0, 'LP', 'JM e.K.', '', '', '', ''); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 0, 'LP', 'JM GmbH', 'Frau', 'Dr.', 'Jenny', 'Meyer-Billing'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 0, 'LP', 'JM GmbH', 'Herr', '', 'Andrew', 'Meyer-Operation'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('f50adac4-8248-4179-bfaf-26f03d96d13b', 0, 'LP', 'JM GmbH', 'Herr', '', 'Philip', 'Meyer-Contract'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('f4e3fd05-43f8-49cb-a167-91a91640a117', 0, 'LP', 'JM GmbH', 'Frau', '', 'Tammy', 'Meyer-VIP'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 0, '??', 'Test PS', '', '', 'Petra', 'Schmidt'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('7e11b785-e756-49de-a3b3-2f001ea79993', 0, 'NP', '', 'Frau', '', 'Frauke', 'Fanninga'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('d616957a-e628-498e-b230-be25244d4e30', 0, 'NP', '', 'Frau', '', 'Cecilia', 'Camus'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 0, '??', 'Wasserwerk Südholstein', 'Frau', '', 'Christiane', 'Milberg'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('348a082d-3ca8-44a0-adc2-06a2aed23cd9', 0, '??', 'Das Perfekte Haus', 'Herr', '', 'Richard', 'Wiese'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('55dd7d96-751e-43b2-afd8-4803a55b422a', 0, '??', 'Wasswerwerk Südholstein', 'Herr', '', 'Karim', 'Metzger'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 0, '??', 'Das Perfekte Haus', 'Herr', '', 'Inhaber R.', 'Wiese'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('351d423b-c277-4300-afcd-7cdc9942f48b', 0, 'NP', '', '', '', 'Ragnar', 'Richter'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('08e856b7-4c1e-4f9f-96ad-6127de069fa2', 0, 'NP', '', '', '', 'Eike', 'Henning'); -INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 0, 'NP', '', '', '', 'Jan', 'Henning'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('137fb47a-07d4-42cc-b2ef-8e371041cf41', 0, '??', 'Michael Mellis', 'Herr', '', 'Michael', 'Mellis'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 0, '??', 'Ragnar IT-Beratung', 'Herr', '', 'Ragnar', 'Richter'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('cd48cfd6-6313-408f-ae7d-9af047d0c22e', 0, 'LP', 'Hostsharing e.G.', 'Firma', '', 'Hostmaster', 'Hostsharing'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 0, 'LP', 'JM e.K.', '', '', '', ''); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 0, 'LP', 'JM GmbH', 'Frau', 'Dr.', 'Jenny', 'Meyer-Billing'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 0, 'LP', 'JM GmbH', 'Herr', '', 'Andrew', 'Meyer-Operation'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('ff030436-d19e-4606-9d48-7e192eaf469f', 0, 'LP', 'JM GmbH', 'Herr', '', 'Philip', 'Meyer-Contract'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('c8050a1b-0d28-4aa7-ac77-958c99152cd1', 0, 'LP', 'JM GmbH', 'Frau', '', 'Tammy', 'Meyer-VIP'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('89bca3fd-d7b2-46f5-821a-64c5566d03f1', 0, '??', 'Test PS', '', '', 'Petra', 'Schmidt'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('2fd1ba30-936a-41a8-8fbe-e93be547f44b', 0, 'NP', '', 'Frau', '', 'Frauke', 'Fanninga'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 0, 'NP', '', 'Frau', '', 'Cecilia', 'Camus'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('38cc5d59-085f-449e-aeb3-439febbabd9b', 0, '??', 'Wasserwerk Südholstein', 'Frau', '', 'Christiane', 'Milberg'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 0, '??', 'Das Perfekte Haus', 'Herr', '', 'Richard', 'Wiese'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('d7485220-e4f2-4683-9e84-7728a2ef4ebf', 0, '??', 'Wasswerwerk Südholstein', 'Herr', '', 'Karim', 'Metzger'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('d6488771-b5c0-4f39-a6d6-81af6ca982f4', 0, '??', 'Das Perfekte Haus', 'Herr', '', 'Inhaber R.', 'Wiese'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('7c10a7d7-bac2-41e2-a5c0-963e191239a8', 0, 'NP', '', '', '', 'Ragnar', 'Richter'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('c3d97013-0ceb-4cc7-a59b-a4f70107acea', 0, 'NP', '', '', '', 'Eike', 'Henning'); +INSERT INTO hs_office.person (uuid, version, persontype, tradename, salutation, title, givenname, familyname) VALUES ('e50c983a-060c-47c9-9d47-efd552b1e618', 0, 'NP', '', '', '', 'Jan', 'Henning'); -- -- Data for Name: relation; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f72c1add-5a68-445e-b3b3-4d4ae33144d9', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ef085ca0-2cc6-4497-b739-1668e6acb687', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ddb4f0d0-83d2-43de-8024-a98953c1e821', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('9702bd74-e7d9-440a-a210-64905274c259', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '441d53f1-af50-4e73-9b53-48468700d257', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '441d53f1-af50-4e73-9b53-48468700d257', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('262a75f6-0c99-4101-8301-0cb95f7cb81e', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('6263942d-84d3-40de-b460-04c52e2a7f36', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f1d2c18d-4cb0-481e-a948-934324a74f61', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('510f22fa-273b-4c27-a99c-0ced2c8ac722', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'f50adac4-8248-4179-bfaf-26f03d96d13b', '25083463-3713-4a20-b579-c1e34d542bcd', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('92b842af-05fc-405d-b0db-7a667228c221', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 0, 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('d8b3342b-fd1f-4db5-83d6-9b13f63a3058', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'd616957a-e628-498e-b230-be25244d4e30', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('3c0abfbb-0006-426a-903f-6f435e03276e', 0, 'd616957a-e628-498e-b230-be25244d4e30', 'd616957a-e628-498e-b230-be25244d4e30', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'DEBITOR', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('76c70bb8-38cc-404e-ae2b-710f94e708a2', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '441d53f1-af50-4e73-9b53-48468700d257', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('6ff8b863-15dd-4646-96bc-fdec9d271aba', 0, 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', '441d53f1-af50-4e73-9b53-48468700d257', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('8c9e386f-d331-4e54-8d7d-ab768a575c77', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('14ca6db0-b2db-403a-98f7-09a4aece479e', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'SUBSCRIBER', 'operations-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('e9507d52-a4ed-46c4-a761-c3a01fb42511', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('82771891-737c-4c22-8321-c2542f973dbe', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'SUBSCRIBER', 'generalversammlung'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('5460e6bc-ff8c-4137-b262-9587833fd26e', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'SUBSCRIBER', 'members-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bd58eafc-8b10-44fc-9877-fa823ec2168b', 0, 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', '1c52fc2c-6390-425b-993a-788365e85d05', 'SUBSCRIBER', 'members-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('1586854a-cd2a-4378-ba84-fd371c8d06c7', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('29759ed5-a529-4555-b0f8-77b722d5cf48', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'SUBSCRIBER', 'operations-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('568eff85-93e4-43fd-9e46-bf46ccbd76bb', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '89f83a40-5d7b-4f33-ba0b-29207f263f15', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('68821d28-1f12-40fb-93cd-c979ab75c04e', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'EX_PARTNER', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bd150cec-ea90-4cbe-bd1b-872330452c1b', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ef673d13-b575-4c2a-84e7-849432e0213c', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('dec33315-b6ee-4257-8b4f-79ee2b3f86af', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'VIP_CONTACT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('452aae38-0b88-4771-b632-9d883909bd8c', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('354920fc-1b03-4c43-a9ee-52d0b11e07cc', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'f50adac4-8248-4179-bfaf-26f03d96d13b', '25083463-3713-4a20-b579-c1e34d542bcd', 'SUBSCRIBER', 'members-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('e77a9a29-bc8f-48ea-a854-6efb979b86aa', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'f50adac4-8248-4179-bfaf-26f03d96d13b', '25083463-3713-4a20-b579-c1e34d542bcd', 'SUBSCRIBER', 'customers-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('68dea4fd-58cf-47bd-91af-745dcf8aa697', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'VIP_CONTACT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 0, 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('171aa70c-1909-417e-9daf-b17c36857995', 0, 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 0, 'f50adac4-8248-4179-bfaf-26f03d96d13b', '7e11b785-e756-49de-a3b3-2f001ea79993', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('b4a78230-3b9c-4cca-971d-b9c2171f22ca', 0, 'd616957a-e628-498e-b230-be25244d4e30', 'd616957a-e628-498e-b230-be25244d4e30', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('2267ef17-1092-4799-b042-8b06389bd4a9', 0, 'd616957a-e628-498e-b230-be25244d4e30', 'd616957a-e628-498e-b230-be25244d4e30', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'SUBSCRIBER', 'generalversammlung'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('05f9829a-f505-4758-891e-5f38b5242d75', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'SUBSCRIBER', 'members-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'SUBSCRIBER', 'members-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ede0d030-8e66-469a-a11f-43f818863809', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('505337e7-2099-4d83-a2f5-7447bc63a387', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SUBSCRIBER', 'operations-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SUBSCRIBER', 'generalversammlung'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('d0c7ee55-15a9-4773-9b7d-a2f2d6833469', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SUBSCRIBER', 'members-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('8ae4d050-ac5a-4bd4-affd-53de24264815', 0, '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SUBSCRIBER', 'members-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '55dd7d96-751e-43b2-afd8-4803a55b422a', '7321b71b-7c08-49bf-ae45-12f69644378f', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('264dc502-036f-4af7-b5aa-f991cfe795b5', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '55dd7d96-751e-43b2-afd8-4803a55b422a', '7321b71b-7c08-49bf-ae45-12f69644378f', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('9c568d47-146a-4be9-8ae0-c233ef79b212', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '55dd7d96-751e-43b2-afd8-4803a55b422a', '7321b71b-7c08-49bf-ae45-12f69644378f', 'SUBSCRIBER', 'operations-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('3b3cb721-4348-4aae-afea-5935d3e9475c', 0, '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', '55dd7d96-751e-43b2-afd8-4803a55b422a', '7321b71b-7c08-49bf-ae45-12f69644378f', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '351d423b-c277-4300-afcd-7cdc9942f48b', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'REPRESENTATIVE', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '351d423b-c277-4300-afcd-7cdc9942f48b', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'SUBSCRIBER', 'generalversammlung'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '351d423b-c277-4300-afcd-7cdc9942f48b', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'SUBSCRIBER', 'members-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('c19283ee-f365-4bcc-9251-c9d5d45aedfe', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '351d423b-c277-4300-afcd-7cdc9942f48b', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'SUBSCRIBER', 'members-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', '31eb8927-f7e7-45db-a350-bece46fd2300', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('526ddec1-2738-48dc-a696-6c3579201851', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', '31eb8927-f7e7-45db-a350-bece46fd2300', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('2cdad63b-9a5a-42db-a383-9c552f1d16c2', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', '31eb8927-f7e7-45db-a350-bece46fd2300', 'SUBSCRIBER', 'operations-discussion'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('7ff40241-2808-4bd5-a1be-22636c8fd26e', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', '31eb8927-f7e7-45db-a350-bece46fd2300', 'SUBSCRIBER', 'operations-announce'); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('7afc8c46-3635-4456-bdfe-6ce0702fff28', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'OPERATIONS_ALERT', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('63e06470-764c-41b3-92d8-e114d4e52664', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'OPERATIONS', NULL); -INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('8bd78e9a-428e-4400-bc0e-543808a6ebe3', 0, '89f83a40-5d7b-4f33-ba0b-29207f263f15', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('48618c28-9304-4ccb-b022-e2cbb1832944', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f415978e-b5c2-4a99-962e-3d31a4658780', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('201b417e-4ebe-458b-a7ce-a287c0ad9287', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f85f9a58-7651-417f-b1b2-cf522bcce415', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'd363745a-e94f-48be-8397-4b361570a54d', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('78123dac-fed2-4e3e-817b-0c13a2129dfe', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'd363745a-e94f-48be-8397-4b361570a54d', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('463c4856-495f-4ab3-b26c-7b2f96b05ab5', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', '38cc5d59-085f-449e-aeb3-439febbabd9b', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', '38cc5d59-085f-449e-aeb3-439febbabd9b', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ecf9603d-1bc4-417b-b953-552b8f08f6f3', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('dd0eae3e-7f45-45dd-b686-f39e046918b0', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('164d3cde-e2ab-4239-9dbf-de1c963158ac', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'ff030436-d19e-4606-9d48-7e192eaf469f', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a85fd289-2383-4abe-b796-9b0b47d702d2', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'eead6995-dd54-475f-8194-74445c421305', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bc8c4b35-c55b-4c3e-9122-94485909b17e', 0, '89bca3fd-d7b2-46f5-821a-64c5566d03f1', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'eead6995-dd54-475f-8194-74445c421305', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bcd0fdb5-7415-40d2-8265-85113a4b66be', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('268c2ce6-8945-4393-9916-ac90050f064a', 0, '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'DEBITOR', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'd363745a-e94f-48be-8397-4b361570a54d', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('86b706e2-9225-482e-b82a-d4ac4adab065', 0, 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'd363745a-e94f-48be-8397-4b361570a54d', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('2db1a3ce-910d-4f3d-be67-b3a0a598d834', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ddbda55a-0143-4224-bb6c-7ec5e8b79465', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SUBSCRIBER', 'operations-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('47b7bd3f-8668-4934-bee9-56708e835d7f', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('80a9daef-e282-499a-ab2f-98a016edb8f7', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SUBSCRIBER', 'generalversammlung'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('93d9827e-63dc-418e-a021-25b400847b2e', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SUBSCRIBER', 'members-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f4219fae-353d-4324-90ca-9f313a8c1c17', 0, '137fb47a-07d4-42cc-b2ef-8e371041cf41', '137fb47a-07d4-42cc-b2ef-8e371041cf41', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SUBSCRIBER', 'members-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('219baf3d-0bb7-4252-b92f-4cfa97cb633c', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ed0fb977-6512-4452-8505-378fcbbd5060', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'SUBSCRIBER', 'operations-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('af82432c-09a8-42a7-9525-e9095025d4dd', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f691585e-eb5e-45bd-8d8a-8187094ed0a0', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'EX_PARTNER', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('65879210-cf7c-4e5b-a2d1-742a42fcb488', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('97e5ed67-e81c-4c12-b354-45db951901c0', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a0e5508f-533d-4f7c-9602-6f23fa85e601', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'VIP_CONTACT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('2eec1138-d2ad-43de-a105-605d0182a1f8', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', 'ff030436-d19e-4606-9d48-7e192eaf469f', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'SUBSCRIBER', 'members-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('fad03414-b62b-45d4-93fd-51c52149762c', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', 'ff030436-d19e-4606-9d48-7e192eaf469f', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'SUBSCRIBER', 'customers-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('48a0fa39-0d72-4c0a-800f-afed02865850', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'VIP_CONTACT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a84434fd-e879-4208-a8e8-8095e22b72bf', 0, '89bca3fd-d7b2-46f5-821a-64c5566d03f1', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'eead6995-dd54-475f-8194-74445c421305', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('93d87d13-efdb-4d31-83e6-3b13db983c12', 0, '89bca3fd-d7b2-46f5-821a-64c5566d03f1', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'eead6995-dd54-475f-8194-74445c421305', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bad214a0-5220-4433-8714-52e4c736585a', 0, 'ff030436-d19e-4606-9d48-7e192eaf469f', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('5add96a4-6fff-4fe2-8628-669d72252417', 0, '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('2185083d-3134-4b30-9dcb-674058feaac2', 0, '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('c60e1d4e-01a1-42a8-9521-1681c77b350f', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', '38cc5d59-085f-449e-aeb3-439febbabd9b', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'SUBSCRIBER', 'generalversammlung'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('17ea3654-289d-4892-a837-3ddcaea2d7db', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', '38cc5d59-085f-449e-aeb3-439febbabd9b', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'SUBSCRIBER', 'members-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('60702c01-7285-4eea-a937-6019d6e3661d', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', '38cc5d59-085f-449e-aeb3-439febbabd9b', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'SUBSCRIBER', 'members-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a66a844c-e5b3-4569-96cf-06197abc0d2f', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f7ddff21-e58a-426b-a693-46a2b45c9d4e', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('8363ec62-6d90-4dd9-940b-6073b3246c39', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SUBSCRIBER', 'operations-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('bc9fabea-d44b-455c-87d6-a0b0428e7768', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SUBSCRIBER', 'generalversammlung'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a13af5de-4315-46dd-ae08-427ea72b35a0', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SUBSCRIBER', 'members-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('cea1bd90-a42c-4cbf-97c3-33c134537bfc', 0, 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SUBSCRIBER', 'members-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('fac4bfec-9f0b-427f-b032-ca54188d0a76', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', '9dcab961-1465-40e3-8d83-357b22af2674', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', '9dcab961-1465-40e3-8d83-357b22af2674', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('18124f89-8ce6-4813-8efe-3ed47b7eb453', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', '9dcab961-1465-40e3-8d83-357b22af2674', 'SUBSCRIBER', 'operations-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('cbda6432-b849-4787-84ab-88e680dbfa72', 0, '38cc5d59-085f-449e-aeb3-439febbabd9b', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', '9dcab961-1465-40e3-8d83-357b22af2674', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('f3b07a47-e7ac-4fea-850e-1d785edfea34', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'REPRESENTATIVE', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('4761d35a-2de3-4415-a91d-f53d15162aea', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'SUBSCRIBER', 'generalversammlung'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('04c248f9-20e0-42e1-adf3-b24d2ff7a272', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'SUBSCRIBER', 'members-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('7113f4da-b942-4f17-97f8-d3fdfd2966c6', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'SUBSCRIBER', 'members-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('4dbf555d-3375-442e-a87d-815d1492af55', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('e74992df-66a8-4572-9e55-ec7b210f04e0', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'SUBSCRIBER', 'operations-discussion'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'SUBSCRIBER', 'operations-announce'); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'e50c983a-060c-47c9-9d47-efd552b1e618', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'OPERATIONS_ALERT', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('047364a5-9dcb-4027-a94c-e35f4646860e', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'e50c983a-060c-47c9-9d47-efd552b1e618', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'OPERATIONS', NULL); +INSERT INTO hs_office.relation (uuid, version, anchoruuid, holderuuid, contactuuid, type, mark) VALUES ('08e80808-fb86-4503-ab9b-9652af82d5b5', 0, 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'SUBSCRIBER', 'operations-announce'); -- -- Data for Name: sepamandate; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('23731ee7-5762-4c61-b825-d19a31217388', 0, '6191fa62-0cc3-4172-9696-4145049b64ce', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'HS-10152-20140801', '2013-12-01', '[2013-12-01,2016-02-16)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 0, '3162b2b5-9fda-476a-94e8-4e0265758d31', '7761056f-60a1-4981-a45f-55097922cfcb', 'HS-10003-20140801', '2013-12-01', '[2013-12-01,)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('a41933db-1aac-4207-a8be-1e90621d834a', 0, 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'HS-11018-20210512', '2021-05-12', '[2021-05-17,)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 0, '50eef0ed-3045-4b45-9fa4-3d4038c626e7', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'HS-11019-20210519', '2021-05-19', '[2021-05-25,)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('2c3575e7-0ee8-414d-a7bb-f3604e526075', 0, '3162b2b5-9fda-476a-94e8-4e0265758d31', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'MH12345', '2004-06-12', '[2004-06-15,)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('d5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 0, '0db2a143-0ab2-473f-84f8-d570ee119e04', '0e352061-8280-491d-9125-d1547e3662f8', 'JM33344', '2004-01-15', '[2004-01-20,2005-06-28)'); -INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('84f64b9f-3d8b-420a-b75a-782d6619028d', 0, '0db2a143-0ab2-473f-84f8-d570ee119e04', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'JM33344', '2005-06-28', '[2005-07-01,)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('3d0e6bb5-a62e-4225-a2bb-967c76926705', 0, '67c2d793-212f-4ce0-a750-b18224a93c73', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'HS-10152-20140801', '2013-12-01', '[2013-12-01,2016-02-16)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 0, '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'HS-10003-20140801', '2013-12-01', '[2013-12-01,)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('850aa448-3a14-440c-9834-0b7ef6d83c39', 0, 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'HS-11018-20210512', '2021-05-12', '[2021-05-17,)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 0, 'ade3baa7-760f-488b-962d-7e365ad1402f', '831a608f-fefe-425b-b740-1786f856c680', 'HS-11019-20210519', '2021-05-19', '[2021-05-25,)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('466056f2-efc6-45d6-b778-fa111db7a18b', 0, '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'MH12345', '2004-06-12', '[2004-06-15,)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('e2dd08d5-2083-44ef-bf22-57898af08e3e', 0, '84d4763e-0133-4d81-946b-fb64d1a3fd26', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'JM33344', '2004-01-15', '[2004-01-20,2005-06-28)'); +INSERT INTO hs_office.sepamandate (uuid, version, debitoruuid, bankaccountuuid, reference, agreement, validity) VALUES ('51a4690c-bb0e-4be2-a285-31552f900db6', 0, '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'JM33344', '2005-06-28', '[2005-07-01,)'); -- -- Data for Name: sepamandate_legacy_id; Type: TABLE DATA; Schema: hs_office; Owner: test -- -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('23731ee7-5762-4c61-b825-d19a31217388', 30); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 132); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('a41933db-1aac-4207-a8be-1e90621d834a', 386); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 387); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('2c3575e7-0ee8-414d-a7bb-f3604e526075', 234234); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('d5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 235600); -INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('84f64b9f-3d8b-420a-b75a-782d6619028d', 235662); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('3d0e6bb5-a62e-4225-a2bb-967c76926705', 30); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 132); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('850aa448-3a14-440c-9834-0b7ef6d83c39', 386); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 387); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('466056f2-efc6-45d6-b778-fa111db7a18b', 234234); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('e2dd08d5-2083-44ef-bf22-57898af08e3e', 235600); +INSERT INTO hs_office.sepamandate_legacy_id (uuid, sepa_mandate_id) VALUES ('51a4690c-bb0e-4be2-a285-31552f900db6', 235662); -- -- Data for Name: databasechangelog; Type: TABLE DATA; Schema: public; Owner: test -- -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('base-SCHEMA', 'michael.hoennig', 'db/changelog/0-base/000-base-schema.sql', '2025-02-03 15:09:55.452165', 1, 'EXECUTED', '9:5ad38f09c5cfce85000d90157413112e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('last-row-count', 'michael.hoennig', 'db/changelog/0-base/001-last-row-count.sql', '2025-02-03 15:09:55.50203', 2, 'EXECUTED', '9:40f27b3837ad530535302a833a9cfe3e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('int-to-var', 'michael.hoennig', 'db/changelog/0-base/002-int-to-var.sql', '2025-02-03 15:09:55.523262', 3, 'EXECUTED', '9:8c101fdc053b1b04fd570e6692b6a853', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('random-in-range', 'michael.hoennig', 'db/changelog/0-base/003-random-in-range.sql', '2025-02-03 15:09:55.541161', 4, 'EXECUTED', '9:379a1f08adead68b798107aee5737184', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('JSONB-CHANGES-DELTA', 'michael.hoennig', 'db/changelog/0-base/004-jsonb-changes-delta.sql', '2025-02-03 15:09:55.610084', 5, 'EXECUTED', '9:e636e0d4ed3617a70b459617c2cc8b3c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('uuid-ossp-extension', 'michael.hoennig', 'db/changelog/0-base/005-uuid-ossp-extension.sql', '2025-02-03 15:09:55.627432', 6, 'EXECUTED', '9:a8abcc99c84d1e19bdf591a0f5af3f56', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('numeric-hash-functions', 'michael.hoennig', 'db/changelog/0-base/006-numeric-hash-functions.sql', '2025-02-03 15:09:55.641995', 7, 'EXECUTED', '9:7835429124ebbea01c598f26e6537c6a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('table-columns-function', 'michael.hoennig', 'db/changelog/0-base/007-table-columns.sql', '2025-02-03 15:09:55.658466', 8, 'EXECUTED', '9:bb868191fbe9c3ba4ac1f8bdc6a75f8c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('RAISE-FUNCTIONS', 'michael.hoennig', 'db/changelog/0-base/008-raise-functions.sql', '2025-02-03 15:09:55.680667', 9, 'EXECUTED', '9:3ceaffba52919b6bfc90a902a944a616', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('ASSERT-FUNCTIONS', 'michael.hoennig', 'db/changelog/0-base/008-raise-functions.sql', '2025-02-03 15:09:55.700883', 10, 'EXECUTED', '9:a0ed7624c59909966e06875f59cfeccb', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hash', 'michael.hoennig', 'db/changelog/0-base/009-check-environment.sql', '2025-02-03 15:09:55.720176', 11, 'EXECUTED', '9:034a82679cf5cf1be4b9729c55621158', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-DEFINE', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-02-03 15:09:55.745473', 12, 'EXECUTED', '9:a8d195345229a2cd835f398b086ee21c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-CURRENT-TASK', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-02-03 15:09:55.759765', 13, 'EXECUTED', '9:4919efeac14bf86c57bed35de501a2b2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-CURRENT-REQUEST', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-02-03 15:09:55.77122', 14, 'EXECUTED', '9:d1c3bcc3a5b3468daa69e8ed0b324ea5', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-current-subject', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-02-03 15:09:55.785049', 15, 'EXECUTED', '9:663c11875733a9bab362d06086722023', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-base.ASSUMED-ROLES', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-02-03 15:09:55.811704', 16, 'EXECUTED', '9:e2885ddc509186e66c51200d7965ea71', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('base-COMBINE-TABLE-SCHEMA-AND-NAME', 'michael.hoennig', 'db/changelog/0-base/011-table-schema-and-name.sql', '2025-02-03 15:09:55.833311', 17, 'EXECUTED', '9:9345df8e57b4d96e7f7e90f2b6f9db15', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-OPERATION-TYPE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.858299', 18, 'EXECUTED', '9:c0876a331d8559a47e56c386c44a766c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-CONTEXT-TABLE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.875769', 19, 'EXECUTED', '9:203f45b5021e65040704071a01aead4c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-TABLE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.891272', 20, 'EXECUTED', '9:534f075b40b1d50fcf273c448c5c2703', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-VIEW', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.909518', 21, 'EXECUTED', '9:b0633c27d7b16fab52029b65ba883213', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-TRIGGER', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.927412', 22, 'EXECUTED', '9:414f25221a87a701087b3b7bb4868865', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-CREATE-JOURNAL-LOG', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-02-03 15:09:55.94026', 23, 'EXECUTED', '9:c6559436bc007f797d5c4b4bfdb68f18', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-history-txid', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-02-03 15:09:55.960058', 24, 'EXECUTED', '9:c736085285073ed50bf00997240e616d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-historicize-tf', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-02-03 15:09:55.9885', 25, 'EXECUTED', '9:345716cca165c108edbab1771c3619c1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-create-historicization', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-02-03 15:09:56.032067', 26, 'EXECUTED', '9:5b127ea60101bf0fa368cf4c0077a6cf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-SCHEMA', 'michael.hoennig', 'db/changelog/1-rbac/1000-rbac-schema.sql', '2025-02-03 15:09:56.049284', 27, 'EXECUTED', '9:f08498d55a283e30a44ba6a59728e5a8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-REFERENCE', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.085245', 28, 'EXECUTED', '9:84d675573e2e88733ee10c4c09b015ce', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-SUBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.118058', 29, 'EXECUTED', '9:10f7dc267fdd8b001809507858f9d44e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.140564', 30, 'EXECUTED', '9:aa3a9e05103db455ce3d31089fdf9521', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-GENERATE-RELATED-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.170327', 31, 'EXECUTED', '9:a79fd4336db173a1743f3ee3950be02b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.1962', 32, 'EXECUTED', '9:09df25cdcf2508acd8c5ae4a685c6fda', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE-DESCRIPTOR', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.220474', 33, 'EXECUTED', '9:3a685a915da4783e308e9c456c4b834a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-IDNAME-FUNCTIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.25039', 34, 'EXECUTED', '9:5a2be2e0339bebb8f25c92407d4158ba', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE-FUNCTIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.291374', 35, 'EXECUTED', '9:336c90101a4c61aa9e3e9f917a8318f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-BEFORE-DELETE-ROLE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.312069', 36, 'EXECUTED', '9:4eda349ef330fa85a57756e4a99ff0f1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-BEFORE-DELETE-OBJECT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.327747', 37, 'EXECUTED', '9:82f081b70545f7f1d1a38c639ff15b89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-PERMISSION', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.369452', 38, 'EXECUTED', '9:9d5e9d323c630d1d7e49f1088374d28a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-duplicate-role-grant-exception', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.38503', 39, 'EXECUTED', '9:abcf51b5de6cc4ba064479c7c2e7741e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-GRANTS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.450246', 40, 'EXECUTED', '9:0dd702f26c3d617fe7a71f7218ffaced', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-ACCESSIBLE-OBJECT-UUIDS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.473505', 41, 'EXECUTED', '9:458e3f137c8fdeb9862e5d0e95b0094f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-GRANTED-PERMISSIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.493018', 42, 'EXECUTED', '9:05bcbf6d56c95c400042f100c38637f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-SUBJECTS-WITH-PERMISSION-FOR-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.508527', 43, 'EXECUTED', '9:ebd6a7182547ddcdb9217838c53e7d68', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-PGSQL-ROLES', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-02-03 15:09:56.526875', 44, 'EXECUTED', '9:a50fd61a191459e25fb01f5fc079f3e7', 'sql', '', NULL, '4.29.2', '!external-db', NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-GRANT-ROLE-TO-USER', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-02-03 15:09:56.552363', 45, 'EXECUTED', '9:7d0785b50901582050221d58ab11b1e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-REVOKE-ROLE-FROM-USER', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-02-03 15:09:56.579057', 46, 'EXECUTED', '9:ce6e0a7157afbfdb482a432e2b6e3f43', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-REVOKE-PERMISSION-FROM-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-02-03 15:09:56.599881', 47, 'EXECUTED', '9:cab4dd9c2a2b8a2a746dfbf1f17946cb', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-DETERMINE', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-02-03 15:09:56.634421', 48, 'EXECUTED', '9:94e05896d964f327901b72004f1de5a3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-CONTEXT-DEFINED', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-02-03 15:09:56.655561', 49, 'EXECUTED', '9:a5520c3244d9fcd8071349c37150400a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-current-subject-ID', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-02-03 15:09:56.675842', 50, 'EXECUTED', '9:763774fe9bf9d9d453feef641c685e71', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-CURRENT-SUBJECT-UUIDS', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-02-03 15:09:56.6942', 51, 'EXECUTED', '9:d43c6fb58da7532a2821f82800618a4d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-ROLE-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.713675', 52, 'EXECUTED', '9:fbc2f7166cebb5d0211736da2d522ef1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-ROLE-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.72855', 53, 'EXECUTED', '9:cf0b8bfb094b852b639d21b624ac9576', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANT-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.756417', 54, 'EXECUTED', '9:b1d4a50e1525a300bcda9916d6c49d1c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANT-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.780935', 55, 'EXECUTED', '9:e2840e3f1fabbc91d2476894e1a40764', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTS-RV-INSERT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.798918', 56, 'EXECUTED', '9:b809276f65f12a861e50b04a0507d5ee', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTS-RV-DELETE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.814466', 57, 'EXECUTED', '9:acc6fde38d60effa54128d9462484d04', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.83433', 58, 'EXECUTED', '9:12662bbb1b705dc0392ff681501488bf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.860695', 59, 'EXECUTED', '9:13148aa24511cb9e5b7737ac32b78eae', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RV-INSERT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.884865', 60, 'EXECUTED', '9:c286e7c287522d0cb1c5f0c9f2bd2967', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RV-DELETE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.900316', 61, 'EXECUTED', '9:03a4e6989597a284bad81440870eed4f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-OWN-GRANTED-PERMISSIONS-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.916353', 62, 'EXECUTED', '9:5c702b2aa8819205d8c25efce99b1bbd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTED-PERMISSIONS', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-02-03 15:09:56.935665', 63, 'EXECUTED', '9:fb1576f4d379e7cb66b93a9d53de45b2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-ENTER', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-02-03 15:09:56.949205', 64, 'EXECUTED', '9:e891b11a112193e9316148a42a8f3525', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-CURRENT-ID', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-02-03 15:09:56.961967', 65, 'EXECUTED', '9:975b972288f0de5d8052248f6084c200', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-LEAVE', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-02-03 15:09:56.971939', 66, 'EXECUTED', '9:68f9acbd7d2fd41daa761ecc728d3128', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-role-builder-define-role', 'michael.hoennig', 'db/changelog/1-rbac/1057-rbac-role-builder.sql', '2025-02-03 15:09:56.989624', 67, 'EXECUTED', '9:6a327b337505f8afa5f2db873429636e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-RELATED-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-02-03 15:09:57.010117', 68, 'EXECUTED', '9:0006cac3f0c7a57ddea68f8080214b56', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-ROLE-DESCRIPTORS', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-02-03 15:09:57.02671', 69, 'EXECUTED', '9:3bc9635289e427a065bbeb4118a041fe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-IDENTITY-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-02-03 15:09:57.045634', 70, 'EXECUTED', '9:3bc394e73ca91776450708efe5ae213a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-02-03 15:09:57.069594', 71, 'EXECUTED', '9:a486bfc49e34405ba5da0d97e496d909', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-statistics', 'michael.hoennig', 'db/changelog/1-rbac/1059-rbac-statistics.sql', '2025-02-03 15:09:57.083068', 72, 'EXECUTED', '9:b6919db9e9815057048fe612bd431d68', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.109988', 73, 'EXECUTED', '9:288acb3380a2a0bcb4ddfd120c08d3a9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-IS-GLOBAL-ADMIN', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.13547', 74, 'EXECUTED', '9:59f9cde6ee354642d62addebeedf9f05', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-HAS-GLOBAL-ADMIN-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.159126', 75, 'EXECUTED', '9:8c449086f4dd8ce63b32d28c16b1a723', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-HAS-GLOBAL-PERMISSION', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.174363', 76, 'EXECUTED', '9:b39359e1f60917b2ee5f373333654f80', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-IDENTITY-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.19489', 77, 'EXECUTED', '9:fd11fbd2509564a48b40394e46ff3920', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-PSEUDO-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.221874', 78, 'EXECUTED', '9:f1a0139f0f049753fbd26092ec00b4e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-ADMIN-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.252192', 79, 'EXECUTED', '9:b8ce7d33d7b7469614010953ee05ab83', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-GUEST-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-02-03 15:09:57.279333', 80, 'EXECUTED', '9:f5f124a1d50c7b3b9816b554fbd12d11', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-SCHEMA', 'michael.hoennig', 'db/changelog/5-hs-office/500-hs-office-schema.sql', '2025-02-03 15:09:57.301264', 81, 'EXECUTED', '9:95af3304188550e45b497aacc9552a0e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5010-hs-office-contact.sql', '2025-02-03 15:09:57.314804', 82, 'EXECUTED', '9:bd3868a9d6417d250c8fa5eaf06cdda1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5010-hs-office-contact.sql', '2025-02-03 15:09:57.338135', 83, 'EXECUTED', '9:53c099cb757a95e71a86f8f5211c9c2f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.35826', 84, 'EXECUTED', '9:e8a20b6295686c71c125d77f579194f2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.379829', 85, 'EXECUTED', '9:87dae05d3dfb3030a7c56927a4da7f45', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.409465', 86, 'EXECUTED', '9:0bcfe1779f0ffbacab92db389872e096', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.431886', 87, 'EXECUTED', '9:97aa885eefed9ed6a62a9b9888838431', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.462155', 88, 'EXECUTED', '9:093e1b9419923dc0055110229adaee14', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-02-03 15:09:57.475674', 89, 'EXECUTED', '9:eb2ad24e9d7090e2a8f876a597beeff8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.488425', 90, 'EXECUTED', '9:e9e8e9301086e3790ad67fe484a4043c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.499089', 91, 'EXECUTED', '9:a8afcc443b88cdbd828e26b058ed36db', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.514107', 92, 'EXECUTED', '9:a101121181b4470b757a4cdacc14659e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.534483', 93, 'EXECUTED', '9:8e1511d5bc132902db31485841bd1a48', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.546042', 94, 'EXECUTED', '9:bd39d996cabd921232ebec69b749985e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-02-03 15:09:57.565591', 95, 'EXECUTED', '9:114fb1ab2b30bca25d060fa574c45c41', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5020-hs-office-person.sql', '2025-02-03 15:09:57.5917', 96, 'EXECUTED', '9:b21ba5a82adefc2bab915f5abcc1a54d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5020-hs-office-person.sql', '2025-02-03 15:09:57.607971', 97, 'EXECUTED', '9:06b9a35487c7405e08d13753df1818c4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.624293', 98, 'EXECUTED', '9:7271b4a8bee2993867280c01973b1038', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.633589', 99, 'EXECUTED', '9:febbde4cf2b9ae6b0492bc0f8683878d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.649866', 100, 'EXECUTED', '9:a2b9fcf71c677f27b8336373a43769f3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.663742', 101, 'EXECUTED', '9:996ec48861e791fcc446495368290e4d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.696019', 102, 'EXECUTED', '9:46d217d0f46a225e463b77ee32320efe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-02-03 15:09:57.714289', 103, 'EXECUTED', '9:204efdb868707ac9a7f358ca84e64d7b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-02-03 15:09:57.734125', 104, 'EXECUTED', '9:86cdab39361d2c0d41ec13c3007cdeee', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-unique-constraints', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-02-03 15:09:57.752089', 105, 'EXECUTED', '9:4a455dac69cc17c9a21bde5bb1d72123', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-02-03 15:09:57.761296', 106, 'EXECUTED', '9:13f528e4b745751dfcf6e0aa8b31a86e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.782225', 107, 'EXECUTED', '9:62d3835be0ca79ae9a5c397ba36ccf18', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.79752', 108, 'EXECUTED', '9:8f604a50201fcc189ef4ad6465b0f87d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.839358', 109, 'EXECUTED', '9:8d3b3682fd4f331d560f9609e9df3611', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.852574', 110, 'EXECUTED', '9:843a2d517a737612f679b586b22dfa1f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.8677', 111, 'EXECUTED', '9:16a25331076d4fe2529906937e513eb0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.880726', 112, 'EXECUTED', '9:6b8fb2185819dac7871c748fec67c19c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.893763', 113, 'EXECUTED', '9:837d545cc3a79d543491e2d76ae76918', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.9169', 114, 'EXECUTED', '9:5350c22ca984311f09a102000551a06a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-02-03 15:09:57.932471', 115, 'EXECUTED', '9:aef36d49fbfd9e9e6b44408a56e0dc4e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DETAILS-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-02-03 15:09:57.949651', 116, 'EXECUTED', '9:07885059d4d27b328da5cb98518640fe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DETAILS-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-02-03 15:09:57.967713', 117, 'EXECUTED', '9:37bd59be01e36bef353fedf2ab699098', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-02-03 15:09:57.988079', 118, 'EXECUTED', '9:0201fea673d545f158bb5910fc9d0d17', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DELETE-DEPENDENTS-TRIGGER', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-02-03 15:09:58.010485', 119, 'EXECUTED', '9:4b849a6a05772609a448564e839445e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-02-03 15:09:58.026942', 120, 'EXECUTED', '9:5d9a0eab674f574b199594f056bd0b32', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.039554', 121, 'EXECUTED', '9:99fb95a8e62697841e58a1bb4b10c949', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.05068', 122, 'EXECUTED', '9:133005f2f871355ae47a9f648fe9c12f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.072771', 123, 'EXECUTED', '9:fae9a12e3dc592bb62711b8d1770ce46', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.099303', 124, 'EXECUTED', '9:5f673c674692de67315c230c74de1cbf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.123561', 125, 'EXECUTED', '9:7828179bad8fd8a82a54075753da17a7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.134801', 126, 'EXECUTED', '9:3efc4e4a17da6e225c808c6fcc159603', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.152901', 127, 'EXECUTED', '9:97c7a6e0462732c51130e1b3fb8bdb81', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.178669', 128, 'EXECUTED', '9:2cf5ed77894e41337859cfb8d5d6232c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-02-03 15:09:58.1907', 129, 'EXECUTED', '9:e7ac0d2761e29703e7d6da089962ac89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.198288', 130, 'EXECUTED', '9:100aa26a8e93898e56c1779a7453fb67', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.206418', 131, 'EXECUTED', '9:9529764d7ae47527e87aac4b5ad58c7d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.217355', 132, 'EXECUTED', '9:96cf3d4a24ca5d100282c7f788d43b3b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.233605', 133, 'EXECUTED', '9:8f57444b7ba0dce36772c994af77e49f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.244246', 134, 'EXECUTED', '9:e690b91d50d17b6bb41cfb27766066b0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.25406', 135, 'EXECUTED', '9:79e0da7d5107ed61f17ea4e165dc8945', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.272754', 136, 'EXECUTED', '9:9eb01d87b429f2c138b7d5176bf5db26', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-02-03 15:09:58.283507', 137, 'EXECUTED', '9:967f05730d37d71cdfb18e2382937a57', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.296668', 138, 'EXECUTED', '9:00f12db8bec33a1276b8f597decae0a6', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.304542', 139, 'EXECUTED', '9:78db6dfb3b1778869277a8e42cc063ba', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.311352', 140, 'EXECUTED', '9:97805e89d388a278a1071618e26e2f91', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.319016', 141, 'EXECUTED', '9:06826ce261f4ead46c2ffe68f79f520c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.329041', 142, 'EXECUTED', '9:801e5870315de722dd90b1ae212eb3c9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-02-03 15:09:58.339169', 143, 'EXECUTED', '9:d18c1da68e3e6d51cb4f5338eb59c40d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('raw', 'includeAll', 'db/changelog/5-hs-office/505-bankaccount/5050-hs-office-bankaccount.sql', '2025-02-03 15:09:58.354588', 144, 'EXECUTED', '9:00022f725212f8ae1909262841948bb1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.364412', 145, 'EXECUTED', '9:7b14c584ffa7061a57ff5142dbc851f4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.374786', 146, 'EXECUTED', '9:26e78f0ccb9239d8ba1be81f48293fcd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.389998', 147, 'EXECUTED', '9:f09c1aa5e54888fe71cc6f38d6e6d1dc', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.400837', 148, 'EXECUTED', '9:b1409959b111083b3cf0e3c669f5024b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.418448', 149, 'EXECUTED', '9:6915edcb6fda80537e3876ce890b021a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-02-03 15:09:58.430313', 150, 'EXECUTED', '9:912589683b5a8710bd01c70f3ae91e7b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-02-03 15:09:58.452966', 151, 'EXECUTED', '9:e35607826fc17ead65711ac55a63d62e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-DELETE-DEPENDENTS-TRIGGER', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-02-03 15:09:58.463856', 152, 'EXECUTED', '9:c2f4ce2f8fa13549a8566edd29ac25f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-02-03 15:09:58.470503', 153, 'EXECUTED', '9:942a0ffeb44c31900d60a854c8e21529', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.477362', 154, 'EXECUTED', '9:097db1b8d04268c1c8e472b318d6198f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.484757', 155, 'EXECUTED', '9:4ff230a43a56670eb11167f26095fd00', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.499759', 156, 'EXECUTED', '9:5833902da14fd902bdd61f962ddc4d89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.510309', 157, 'EXECUTED', '9:0417bc8650f40e08ff8325c211d6a4db', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.526094', 158, 'EXECUTED', '9:0bbd61a430bd2857a0aa8b8efbc811f3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.544126', 159, 'EXECUTED', '9:4f767b3b03c431b83259c199b2d4214b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.565487', 160, 'EXECUTED', '9:e7a4ecf70b9d0427ba4aea1f1cc3f5f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.580641', 161, 'EXECUTED', '9:759a74535fd82b597a4e407f7c0031e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-02-03 15:09:58.590168', 162, 'EXECUTED', '9:f7511c63df1fc5fada3aaf29732576b8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5070-hs-office-sepamandate.sql', '2025-02-03 15:09:58.603808', 163, 'EXECUTED', '9:7094f5fd111cb53c5cfe3d352744fd36', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5070-hs-office-sepamandate.sql', '2025-02-03 15:09:58.611646', 164, 'EXECUTED', '9:7b387b6dbaeac43b2c33445a6709b2c7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.619616', 165, 'EXECUTED', '9:be4e6cdfc4ad11a7e025bf38651f34d1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.628361', 166, 'EXECUTED', '9:44b3251af2898fde9813eb7398b906a3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.646947', 167, 'EXECUTED', '9:17cb0a4439da270ab15600fed60b257d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.663459', 168, 'EXECUTED', '9:83f68f08d1b37c3bd228a8d322ab3fe7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.677021', 169, 'EXECUTED', '9:3cb7b97d9ac43a2fc1a46873af943d78', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.691047', 170, 'EXECUTED', '9:77bc5f87dd7cc5757e2e3eccd9e8ba90', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.70668', 171, 'EXECUTED', '9:56cb083ac90933d246be79b750bfe6c9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-02-03 15:09:58.722464', 172, 'EXECUTED', '9:0c9130f70f86c9512e57c035375b4081', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.737737', 173, 'EXECUTED', '9:85c63a4e5f2880f9cc27cba3f513a693', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.746878', 174, 'EXECUTED', '9:e4a182f0eea5ab0db7eb7c115f3aba90', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.755229', 175, 'EXECUTED', '9:5341a47b4c52b16b5493eb2b6fe8e391', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.766234', 176, 'EXECUTED', '9:0cac585727746de1df9bd85e43c3253f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.778611', 177, 'EXECUTED', '9:4e13d6ba612be4d16ac470eff321ac55', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-02-03 15:09:58.791769', 178, 'EXECUTED', '9:6a438bb2441c476f19c8adecfc0ada7e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5100-hs-office-membership.sql', '2025-02-03 15:09:58.81109', 179, 'EXECUTED', '9:5cb327f0ee0e6dad2ff7b2add1046b31', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5100-hs-office-membership.sql', '2025-02-03 15:09:58.820637', 180, 'EXECUTED', '9:ebca1dd23c9ebcd49f948628a04eab96', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.83023', 181, 'EXECUTED', '9:38e75a8432730f0abb7eb57bcac7d15d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.840878', 182, 'EXECUTED', '9:9f9dc3a42a2c807edb65d9c8e689c227', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.859499', 183, 'EXECUTED', '9:d35b18a0737ac5278f837ebcc96f0083', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.878968', 184, 'EXECUTED', '9:31da52dd1bb16e3c6fcbb843c0b9806b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.894059', 185, 'EXECUTED', '9:fefecd0ba599565d22076b6841661401', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.906528', 186, 'EXECUTED', '9:5f2dd8c715fdf8e9ef499ee80fcea24b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.923779', 187, 'EXECUTED', '9:79db5ea41b711b2607b92ac0ea1d569a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-02-03 15:09:58.936047', 188, 'EXECUTED', '9:8baae4dbdd21b162cd3ca7c8a939223d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-02-03 15:09:58.952722', 189, 'EXECUTED', '9:dd5642d53c66a58f6b90d5e8f0b2eefd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-BUSINESS-RULES', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-02-03 15:09:58.961322', 190, 'EXECUTED', '9:be3db6ea2b92031072765cdcc1c0ad38', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-SHARE-COUNT-CONSTRAINT', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-02-03 15:09:58.970072', 191, 'EXECUTED', '9:d8433344adbc9d103f77a152bfe150c0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-02-03 15:09:58.979669', 192, 'EXECUTED', '9:5e302243d9bfabf507630b5e074ac4ec', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:58.989055', 193, 'EXECUTED', '9:d3421993f41f43c4b99cb1afbb614d39', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:58.998466', 194, 'EXECUTED', '9:48097391a78abef6b3b3bfec2a92b338', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.011248', 195, 'EXECUTED', '9:dca08c5d3d8f82e02438878022b1f81d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.023368', 196, 'EXECUTED', '9:50469fbd535cd90ae0eacb79083067e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.033163', 197, 'EXECUTED', '9:dff51f901834806905f0a032960b3da3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.044192', 198, 'EXECUTED', '9:324a03d0c8858aff81b457aff02feeb4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.057503', 199, 'EXECUTED', '9:1ea81886c6351b59f1408645c17b8dbe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-02-03 15:09:59.066954', 200, 'EXECUTED', '9:952da62b0a67d7d1e9f951d14d37889f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.075474', 201, 'EXECUTED', '9:361f46900a3867db4cdea155550a9694', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.082492', 202, 'EXECUTED', '9:dfa74018490986a7aa2d28c890fa8b1d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.088744', 203, 'EXECUTED', '9:3e3d01d4d5416ce58b51e2823153a934', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.097113', 204, 'EXECUTED', '9:8b5ed8e4e8376ba793aaa55219e0d0f9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopShares-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.105062', 205, 'EXECUTED', '9:465888aa1bf6053a5a76bcaeda506fa7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopShares-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-02-03 15:09:59.112918', 206, 'EXECUTED', '9:ace1b952c692a0f453a2878a5796041c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-02-03 15:09:59.130137', 207, 'EXECUTED', '9:5157878ebca481817b080219de4ec9d0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-BUSINESS-RULES', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-02-03 15:09:59.140428', 208, 'EXECUTED', '9:008c73cb2883353bfad0a7b4b91ec16d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-ASSET-VALUE-CONSTRAINT', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-02-03 15:09:59.149066', 209, 'EXECUTED', '9:cf831a455813de1d54dbaaea5f0588fc', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-02-03 15:09:59.155192', 210, 'EXECUTED', '9:13ee6812125cb02968ada8a92af47c75', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.16234', 211, 'EXECUTED', '9:571ffbd8c6ce5070fa72e25434e2d819', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.170275', 212, 'EXECUTED', '9:81ea7ebfba6746f9b82c4dc4b2cd247b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.180487', 213, 'EXECUTED', '9:bc0a4b78b806fbe53c62425612812467', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.191107', 214, 'EXECUTED', '9:72c95623dd7b39dd7ee9cf8f4557a182', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.1991', 215, 'EXECUTED', '9:d76e9461931e5143dafe96cd88335bb2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.206321', 216, 'EXECUTED', '9:2fcdd71e8c918eda052e10fbde75278e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.219838', 217, 'EXECUTED', '9:83f4252251daaa81aa670520a1a13a06', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-02-03 15:09:59.229076', 218, 'EXECUTED', '9:d607c71372e6059880bc905c817451d8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.239403', 219, 'EXECUTED', '9:c5ff3e7587acde442cae7de66fb2001c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.249348', 220, 'EXECUTED', '9:cf6ab0aefc52d21bae832899f0523d1e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.258625', 221, 'EXECUTED', '9:ef2459889790a7d6950d1acddee76a21', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.27084', 222, 'EXECUTED', '9:3c77d48e979b54d2cc3864228fc5d234', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssets-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.280466', 223, 'EXECUTED', '9:110c20c2c46897bafcf994ddf426d2b3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssets-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-02-03 15:09:59.2986', 224, 'EXECUTED', '9:51e3f23a1d481d94050287be951a66e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-integration-SCHEMA', 'timotheus.pokorra', 'db/changelog/9-hs-global/9100-hs-integration-schema.sql', '2025-02-03 15:09:59.31013', 225, 'EXECUTED', '9:e6e03e675664bdbad9bb11fc2875e822', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-kimai', 'timotheus.pokorra', 'db/changelog/9-hs-global/9110-integration-kimai.sql', '2025-02-03 15:09:59.324548', 226, 'EXECUTED', '9:56e481a555f86b471b74aaceacc4b520', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-znuny', 'timotheus.pokorra', 'db/changelog/9-hs-global/9120-integration-znuny.sql', '2025-02-03 15:09:59.363394', 227, 'EXECUTED', '9:48685a4882797575f8bb8c83d5fc9380', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); -INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-mlmmj', 'timotheus.pokorra', 'db/changelog/9-hs-global/9130-integration-mlmmj.sql', '2025-02-03 15:09:59.372428', 228, 'EXECUTED', '9:df6c8a724cfdd0c0aa013ba996655ed1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8591795228'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('base-SCHEMA', 'michael.hoennig', 'db/changelog/0-base/000-base-schema.sql', '2025-01-30 16:35:49.973591', 1, 'EXECUTED', '9:5ad38f09c5cfce85000d90157413112e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('last-row-count', 'michael.hoennig', 'db/changelog/0-base/001-last-row-count.sql', '2025-01-30 16:35:49.998027', 2, 'EXECUTED', '9:40f27b3837ad530535302a833a9cfe3e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('int-to-var', 'michael.hoennig', 'db/changelog/0-base/002-int-to-var.sql', '2025-01-30 16:35:50.018972', 3, 'EXECUTED', '9:8c101fdc053b1b04fd570e6692b6a853', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('random-in-range', 'michael.hoennig', 'db/changelog/0-base/003-random-in-range.sql', '2025-01-30 16:35:50.040057', 4, 'EXECUTED', '9:379a1f08adead68b798107aee5737184', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('JSONB-CHANGES-DELTA', 'michael.hoennig', 'db/changelog/0-base/004-jsonb-changes-delta.sql', '2025-01-30 16:35:50.100446', 5, 'EXECUTED', '9:e636e0d4ed3617a70b459617c2cc8b3c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('uuid-ossp-extension', 'michael.hoennig', 'db/changelog/0-base/005-uuid-ossp-extension.sql', '2025-01-30 16:35:50.118038', 6, 'EXECUTED', '9:a8abcc99c84d1e19bdf591a0f5af3f56', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('numeric-hash-functions', 'michael.hoennig', 'db/changelog/0-base/006-numeric-hash-functions.sql', '2025-01-30 16:35:50.130319', 7, 'EXECUTED', '9:7835429124ebbea01c598f26e6537c6a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('table-columns-function', 'michael.hoennig', 'db/changelog/0-base/007-table-columns.sql', '2025-01-30 16:35:50.150082', 8, 'EXECUTED', '9:bb868191fbe9c3ba4ac1f8bdc6a75f8c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('RAISE-FUNCTIONS', 'michael.hoennig', 'db/changelog/0-base/008-raise-functions.sql', '2025-01-30 16:35:50.162025', 9, 'EXECUTED', '9:3ceaffba52919b6bfc90a902a944a616', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('ASSERT-FUNCTIONS', 'michael.hoennig', 'db/changelog/0-base/008-raise-functions.sql', '2025-01-30 16:35:50.172505', 10, 'EXECUTED', '9:a0ed7624c59909966e06875f59cfeccb', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hash', 'michael.hoennig', 'db/changelog/0-base/009-check-environment.sql', '2025-01-30 16:35:50.183741', 11, 'EXECUTED', '9:034a82679cf5cf1be4b9729c55621158', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-DEFINE', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-01-30 16:35:50.202274', 12, 'EXECUTED', '9:a8d195345229a2cd835f398b086ee21c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-CURRENT-TASK', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-01-30 16:35:50.213926', 13, 'EXECUTED', '9:4919efeac14bf86c57bed35de501a2b2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-CURRENT-REQUEST', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-01-30 16:35:50.22341', 14, 'EXECUTED', '9:d1c3bcc3a5b3468daa69e8ed0b324ea5', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-current-subject', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-01-30 16:35:50.238617', 15, 'EXECUTED', '9:663c11875733a9bab362d06086722023', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('context-base.ASSUMED-ROLES', 'michael.hoennig', 'db/changelog/0-base/010-context.sql', '2025-01-30 16:35:50.268168', 16, 'EXECUTED', '9:e2885ddc509186e66c51200d7965ea71', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('base-COMBINE-TABLE-SCHEMA-AND-NAME', 'michael.hoennig', 'db/changelog/0-base/011-table-schema-and-name.sql', '2025-01-30 16:35:50.28754', 17, 'EXECUTED', '9:9345df8e57b4d96e7f7e90f2b6f9db15', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-OPERATION-TYPE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.31383', 18, 'EXECUTED', '9:c0876a331d8559a47e56c386c44a766c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-CONTEXT-TABLE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.33644', 19, 'EXECUTED', '9:203f45b5021e65040704071a01aead4c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-TABLE', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.359416', 20, 'EXECUTED', '9:534f075b40b1d50fcf273c448c5c2703', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-VIEW', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.372867', 21, 'EXECUTED', '9:b0633c27d7b16fab52029b65ba883213', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-TX-JOURNAL-TRIGGER', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.434567', 22, 'EXECUTED', '9:414f25221a87a701087b3b7bb4868865', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('audit-CREATE-JOURNAL-LOG', 'michael.hoennig', 'db/changelog/0-base/020-audit-log.sql', '2025-01-30 16:35:50.461024', 23, 'EXECUTED', '9:c6559436bc007f797d5c4b4bfdb68f18', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-history-txid', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-01-30 16:35:50.481851', 24, 'EXECUTED', '9:c736085285073ed50bf00997240e616d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-historicize-tf', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-01-30 16:35:50.512946', 25, 'EXECUTED', '9:345716cca165c108edbab1771c3619c1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-historization-tx-create-historicization', 'michael.hoennig', 'db/changelog/0-base/030-historization.sql', '2025-01-30 16:35:50.534851', 26, 'EXECUTED', '9:5b127ea60101bf0fa368cf4c0077a6cf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-SCHEMA', 'michael.hoennig', 'db/changelog/1-rbac/1000-rbac-schema.sql', '2025-01-30 16:35:50.549214', 27, 'EXECUTED', '9:f08498d55a283e30a44ba6a59728e5a8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-REFERENCE', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.570793', 28, 'EXECUTED', '9:84d675573e2e88733ee10c4c09b015ce', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-SUBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.596942', 29, 'EXECUTED', '9:10f7dc267fdd8b001809507858f9d44e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.629131', 30, 'EXECUTED', '9:aa3a9e05103db455ce3d31089fdf9521', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-GENERATE-RELATED-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.646429', 31, 'EXECUTED', '9:a79fd4336db173a1743f3ee3950be02b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.669947', 32, 'EXECUTED', '9:09df25cdcf2508acd8c5ae4a685c6fda', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE-DESCRIPTOR', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.691202', 33, 'EXECUTED', '9:3a685a915da4783e308e9c456c4b834a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-IDNAME-FUNCTIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.719205', 34, 'EXECUTED', '9:5a2be2e0339bebb8f25c92407d4158ba', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-ROLE-FUNCTIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.758104', 35, 'EXECUTED', '9:336c90101a4c61aa9e3e9f917a8318f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-BEFORE-DELETE-ROLE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.780391', 36, 'EXECUTED', '9:4eda349ef330fa85a57756e4a99ff0f1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-BEFORE-DELETE-OBJECT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.799483', 37, 'EXECUTED', '9:82f081b70545f7f1d1a38c639ff15b89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-PERMISSION', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.842312', 38, 'EXECUTED', '9:9d5e9d323c630d1d7e49f1088374d28a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-duplicate-role-grant-exception', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.863667', 39, 'EXECUTED', '9:abcf51b5de6cc4ba064479c7c2e7741e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-GRANTS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.930335', 40, 'EXECUTED', '9:0dd702f26c3d617fe7a71f7218ffaced', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-ACCESSIBLE-OBJECT-UUIDS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.949724', 41, 'EXECUTED', '9:458e3f137c8fdeb9862e5d0e95b0094f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-GRANTED-PERMISSIONS', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:50.974771', 42, 'EXECUTED', '9:05bcbf6d56c95c400042f100c38637f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-QUERY-SUBJECTS-WITH-PERMISSION-FOR-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:51.000185', 43, 'EXECUTED', '9:ebd6a7182547ddcdb9217838c53e7d68', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-base-PGSQL-ROLES', 'michael.hoennig', 'db/changelog/1-rbac/1050-rbac-base.sql', '2025-01-30 16:35:51.018202', 44, 'EXECUTED', '9:a50fd61a191459e25fb01f5fc079f3e7', 'sql', '', NULL, '4.29.2', '!external-db', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-GRANT-ROLE-TO-USER', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-01-30 16:35:51.044431', 45, 'EXECUTED', '9:7d0785b50901582050221d58ab11b1e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-REVOKE-ROLE-FROM-USER', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-01-30 16:35:51.065385', 46, 'EXECUTED', '9:ce6e0a7157afbfdb482a432e2b6e3f43', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-user-grant-REVOKE-PERMISSION-FROM-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1051-rbac-subject-grant.sql', '2025-01-30 16:35:51.082008', 47, 'EXECUTED', '9:cab4dd9c2a2b8a2a746dfbf1f17946cb', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-DETERMINE', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-01-30 16:35:51.11175', 48, 'EXECUTED', '9:94e05896d964f327901b72004f1de5a3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-CONTEXT-DEFINED', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-01-30 16:35:51.134052', 49, 'EXECUTED', '9:a5520c3244d9fcd8071349c37150400a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-current-subject-ID', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-01-30 16:35:51.154847', 50, 'EXECUTED', '9:763774fe9bf9d9d453feef641c685e71', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-context-CURRENT-SUBJECT-UUIDS', 'michael.hoennig', 'db/changelog/1-rbac/1054-rbac-context.sql', '2025-01-30 16:35:51.175992', 51, 'EXECUTED', '9:d43c6fb58da7532a2821f82800618a4d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-ROLE-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.200154', 52, 'EXECUTED', '9:fbc2f7166cebb5d0211736da2d522ef1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-ROLE-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.215715', 53, 'EXECUTED', '9:cf0b8bfb094b852b639d21b624ac9576', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANT-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.242757', 54, 'EXECUTED', '9:b1d4a50e1525a300bcda9916d6c49d1c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANT-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.261653', 55, 'EXECUTED', '9:e2840e3f1fabbc91d2476894e1a40764', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTS-RV-INSERT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.276935', 56, 'EXECUTED', '9:b809276f65f12a861e50b04a0507d5ee', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTS-RV-DELETE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.28937', 57, 'EXECUTED', '9:acc6fde38d60effa54128d9462484d04', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-ENHANCED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.309428', 58, 'EXECUTED', '9:12662bbb1b705dc0392ff681501488bf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.330571', 59, 'EXECUTED', '9:13148aa24511cb9e5b7737ac32b78eae', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RV-INSERT-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.347816', 60, 'EXECUTED', '9:c286e7c287522d0cb1c5f0c9f2bd2967', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-USER-RV-DELETE-TRIGGER', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.365997', 61, 'EXECUTED', '9:03a4e6989597a284bad81440870eed4f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-OWN-GRANTED-PERMISSIONS-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.393139', 62, 'EXECUTED', '9:5c702b2aa8819205d8c25efce99b1bbd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-views-GRANTED-PERMISSIONS', 'michael.hoennig', 'db/changelog/1-rbac/1055-rbac-views.sql', '2025-01-30 16:35:51.411062', 63, 'EXECUTED', '9:fb1576f4d379e7cb66b93a9d53de45b2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-ENTER', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-01-30 16:35:51.425841', 64, 'EXECUTED', '9:e891b11a112193e9316148a42a8f3525', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-CURRENT-ID', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-01-30 16:35:51.442215', 65, 'EXECUTED', '9:975b972288f0de5d8052248f6084c200', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-trigger-context-LEAVE', 'michael.hoennig', 'db/changelog/1-rbac/1056-rbac-trigger-context.sql', '2025-01-30 16:35:51.458871', 66, 'EXECUTED', '9:68f9acbd7d2fd41daa761ecc728d3128', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-role-builder-define-role', 'michael.hoennig', 'db/changelog/1-rbac/1057-rbac-role-builder.sql', '2025-01-30 16:35:51.484875', 67, 'EXECUTED', '9:6a327b337505f8afa5f2db873429636e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-RELATED-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-01-30 16:35:51.506488', 68, 'EXECUTED', '9:0006cac3f0c7a57ddea68f8080214b56', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-ROLE-DESCRIPTORS', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-01-30 16:35:51.534162', 69, 'EXECUTED', '9:3bc9635289e427a065bbeb4118a041fe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-IDENTITY-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-01-30 16:35:51.559298', 70, 'EXECUTED', '9:3bc394e73ca91776450708efe5ae213a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-generators-RESTRICTED-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1058-rbac-generators.sql', '2025-01-30 16:35:51.60381', 71, 'EXECUTED', '9:a486bfc49e34405ba5da0d97e496d909', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-statistics', 'michael.hoennig', 'db/changelog/1-rbac/1059-rbac-statistics.sql', '2025-01-30 16:35:51.629223', 72, 'EXECUTED', '9:b6919db9e9815057048fe612bd431d68', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.659427', 73, 'EXECUTED', '9:288acb3380a2a0bcb4ddfd120c08d3a9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-IS-GLOBAL-ADMIN', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.683964', 74, 'EXECUTED', '9:59f9cde6ee354642d62addebeedf9f05', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-HAS-GLOBAL-ADMIN-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.701377', 75, 'EXECUTED', '9:8c449086f4dd8ce63b32d28c16b1a723', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-HAS-GLOBAL-PERMISSION', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.718634', 76, 'EXECUTED', '9:b39359e1f60917b2ee5f373333654f80', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-IDENTITY-VIEW', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.747644', 77, 'EXECUTED', '9:fd11fbd2509564a48b40394e46ff3920', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-PSEUDO-OBJECT', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.77644', 78, 'EXECUTED', '9:f1a0139f0f049753fbd26092ec00b4e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-ADMIN-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.798335', 79, 'EXECUTED', '9:b8ce7d33d7b7469614010953ee05ab83', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-GUEST-ROLE', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.820593', 80, 'EXECUTED', '9:f5f124a1d50c7b3b9816b554fbd12d11', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-ADMIN-USERS', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.867391', 81, 'EXECUTED', '9:defcefd72b25de449be69d3e3df7134b', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbac-global-TEST', 'michael.hoennig', 'db/changelog/1-rbac/1080-rbac-global.sql', '2025-01-30 16:35:51.890426', 82, 'EXECUTED', '9:8e3fd77650d35f24e56b99ae54ba77f1', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-SCHEMA', 'michael.hoennig', 'db/changelog/2-rbactest/200-rbactest-schema.sql', '2025-01-30 16:35:51.909758', 83, 'EXECUTED', '9:d3ac51d27712286855b340c8a8966231', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-customer-MAIN-TABLE', 'michael.hoennig', 'db/changelog/2-rbactest/201-rbactest-customer/2010-rbactest-customer.sql', '2025-01-30 16:35:51.925473', 84, 'EXECUTED', '9:c99c30902fec715c651b38cb2208aab4', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:51.939866', 85, 'EXECUTED', '9:fc4c1dd970025e35cb8f01ad15e979f9', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:51.955322', 86, 'EXECUTED', '9:67799ab25eb0e05f61bd0eceeb6e3d9c', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:51.974256', 87, 'EXECUTED', '9:68c49363f0cf1f86e73ce8d32b975321', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:52.017303', 88, 'EXECUTED', '9:d26e94936c25c1602bbf9b5f1a4ee257', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:52.03694', 89, 'EXECUTED', '9:119f0509d140c723342b28a5056b75ad', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:52.054903', 90, 'EXECUTED', '9:5c06eb501b643f87c63d98d7d1837fcb', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:52.092842', 91, 'EXECUTED', '9:621dbf5116ee6945b0c198ab9b9fd7a7', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-customer-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/2-rbactest/201-rbactest-customer/2013-rbactest-customer-rbac.sql', '2025-01-30 16:35:52.10949', 92, 'EXECUTED', '9:74a006c77ba4c72c8513860a8215a816', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-customer-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/2-rbactest/201-rbactest-customer/2018-rbactest-customer-test-data.sql', '2025-01-30 16:35:52.128069', 93, 'EXECUTED', '9:b86dd5b1bbdd5e74f3ce5badbe58ff4b', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-customer-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/2-rbactest/201-rbactest-customer/2018-rbactest-customer-test-data.sql', '2025-01-30 16:35:52.181613', 94, 'EXECUTED', '9:6a1f3542ff30373925a4588f75915fe0', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-package-MAIN-TABLE', 'michael.hoennig', 'db/changelog/2-rbactest/202-rbactest-package/2020-rbactest-package.sql', '2025-01-30 16:35:52.193817', 95, 'EXECUTED', '9:b1207c3cbeec15b17583a560d497db8e', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.203239', 96, 'EXECUTED', '9:fe2229e14382e520e6b059929696d807', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.21293', 97, 'EXECUTED', '9:ecd086a55811cec0ed3661c041542fa1', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.228335', 98, 'EXECUTED', '9:77738b7734868c70dad1ff4e4413b4bc', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.255285', 99, 'EXECUTED', '9:9fe9d3fdb0a100a95317e751b6f331ac', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.275929', 100, 'EXECUTED', '9:2e1b24f4168dbf50608f012f0864a043', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.289938', 101, 'EXECUTED', '9:9c3bedfb1f3994c89bfb4b11c2add36b', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.309847', 102, 'EXECUTED', '9:fa6b1290dcfcd0dd889a77b5e474d684', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.339435', 103, 'EXECUTED', '9:3ea749e8c2b32cf54b8a2d24c5e78ba6', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-package-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/2-rbactest/202-rbactest-package/2023-rbactest-package-rbac.sql', '2025-01-30 16:35:52.369331', 104, 'EXECUTED', '9:2b9cc64914d8b21a4457a5a2b33427ec', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-package-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/2-rbactest/202-rbactest-package/2028-rbactest-package-test-data.sql', '2025-01-30 16:35:52.392091', 105, 'EXECUTED', '9:7e55635cc0c5d735b9305780b604ad09', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-package-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/2-rbactest/202-rbactest-package/2028-rbactest-package-test-data.sql', '2025-01-30 16:35:52.533303', 106, 'EXECUTED', '9:bdd9ef02d8105d1636c33f47885a8e51', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('test-domain-MAIN-TABLE', 'michael.hoennig', 'db/changelog/2-rbactest/203-rbactest-domain/2030-rbactest-domain.sql', '2025-01-30 16:35:52.561072', 107, 'EXECUTED', '9:53f4d2582458bb388217e7b5ab0e9664', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.588086', 108, 'EXECUTED', '9:d204bab1152a2efaed1e5dc05e7369c8', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.614669', 109, 'EXECUTED', '9:2a0a0dc7c11bfd5974cf5d446a39a51a', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.64179', 110, 'EXECUTED', '9:87af80188676c50bf296dc67528a2364', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.680521', 111, 'EXECUTED', '9:01d80772c124a78c5a1288bc704b9977', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.714471', 112, 'EXECUTED', '9:06a1011f8b783fef17e9fd48a1a9ca49', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.726662', 113, 'EXECUTED', '9:b6e2a6fa8c27365969393661debb4101', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.738945', 114, 'EXECUTED', '9:5e0146fd8331675fbbb81e7e2826016b', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.770847', 115, 'EXECUTED', '9:698ebc486e2704e875e4aaea85a2c144', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('rbactest-domain-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/2-rbactest/203-rbactest-domain/2033-rbactest-domain-rbac.sql', '2025-01-30 16:35:52.785751', 116, 'EXECUTED', '9:102757b00137fae714c516caad4e52ff', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-domain-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/2-rbactest/203-rbactest-domain/2038-rbactest-domain-test-data.sql', '2025-01-30 16:35:52.819916', 117, 'EXECUTED', '9:7ff9deffb24493195e5cfee796492a7a', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-domain-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/2-rbactest/203-rbactest-domain/2038-rbactest-domain-test-data.sql', '2025-01-30 16:35:52.998514', 118, 'EXECUTED', '9:02a0d097decd631c52f3504252a8e25f', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-SCHEMA', 'michael.hoennig', 'db/changelog/5-hs-office/500-hs-office-schema.sql', '2025-01-30 16:35:53.012059', 119, 'EXECUTED', '9:95af3304188550e45b497aacc9552a0e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5010-hs-office-contact.sql', '2025-01-30 16:35:53.028073', 120, 'EXECUTED', '9:bd3868a9d6417d250c8fa5eaf06cdda1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5010-hs-office-contact.sql', '2025-01-30 16:35:53.036963', 121, 'EXECUTED', '9:53c099cb757a95e71a86f8f5211c9c2f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.04859', 122, 'EXECUTED', '9:e8a20b6295686c71c125d77f579194f2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.065843', 123, 'EXECUTED', '9:87dae05d3dfb3030a7c56927a4da7f45', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.079835', 124, 'EXECUTED', '9:0bcfe1779f0ffbacab92db389872e096', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.089925', 125, 'EXECUTED', '9:97aa885eefed9ed6a62a9b9888838431', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.115237', 126, 'EXECUTED', '9:093e1b9419923dc0055110229adaee14', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/501-contact/5013-hs-office-contact-rbac.sql', '2025-01-30 16:35:53.128438', 127, 'EXECUTED', '9:eb2ad24e9d7090e2a8f876a597beeff8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.13962', 128, 'EXECUTED', '9:e9e8e9301086e3790ad67fe484a4043c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.148568', 129, 'EXECUTED', '9:a8afcc443b88cdbd828e26b058ed36db', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.157126', 130, 'EXECUTED', '9:a101121181b4470b757a4cdacc14659e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.170045', 131, 'EXECUTED', '9:8e1511d5bc132902db31485841bd1a48', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.195146', 132, 'EXECUTED', '9:bd39d996cabd921232ebec69b749985e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5016-hs-office-contact-migration.sql', '2025-01-30 16:35:53.213928', 133, 'EXECUTED', '9:114fb1ab2b30bca25d060fa574c45c41', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5018-hs-office-contact-test-data.sql', '2025-01-30 16:35:53.234426', 134, 'EXECUTED', '9:f95a0ee739481fc948d751336d3a53ce', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-contact-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/501-contact/5018-hs-office-contact-test-data.sql', '2025-01-30 16:35:53.381073', 135, 'EXECUTED', '9:aefb1653864621419bbc33d21a80623a', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5020-hs-office-person.sql', '2025-01-30 16:35:53.395597', 136, 'EXECUTED', '9:b21ba5a82adefc2bab915f5abcc1a54d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5020-hs-office-person.sql', '2025-01-30 16:35:53.40733', 137, 'EXECUTED', '9:06b9a35487c7405e08d13753df1818c4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.415847', 138, 'EXECUTED', '9:7271b4a8bee2993867280c01973b1038', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.428768', 139, 'EXECUTED', '9:febbde4cf2b9ae6b0492bc0f8683878d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.44894', 140, 'EXECUTED', '9:a2b9fcf71c677f27b8336373a43769f3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.465367', 141, 'EXECUTED', '9:996ec48861e791fcc446495368290e4d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.495557', 142, 'EXECUTED', '9:46d217d0f46a225e463b77ee32320efe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/502-person/5023-hs-office-person-rbac.sql', '2025-01-30 16:35:53.523838', 143, 'EXECUTED', '9:204efdb868707ac9a7f358ca84e64d7b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5028-hs-office-person-test-data.sql', '2025-01-30 16:35:53.543763', 144, 'EXECUTED', '9:560570c48ec48107b3b0f896933e4e9c', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-person-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/502-person/5028-hs-office-person-test-data.sql', '2025-01-30 16:35:53.688962', 145, 'EXECUTED', '9:975c5d6793e83a2c876753d6cceff8d9', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-01-30 16:35:53.701285', 146, 'EXECUTED', '9:86cdab39361d2c0d41ec13c3007cdeee', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-unique-constraints', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-01-30 16:35:53.714662', 147, 'EXECUTED', '9:4a455dac69cc17c9a21bde5bb1d72123', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5030-hs-office-relation.sql', '2025-01-30 16:35:53.72458', 148, 'EXECUTED', '9:13f528e4b745751dfcf6e0aa8b31a86e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.733054', 149, 'EXECUTED', '9:62d3835be0ca79ae9a5c397ba36ccf18', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.741999', 150, 'EXECUTED', '9:8f604a50201fcc189ef4ad6465b0f87d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.768735', 151, 'EXECUTED', '9:8d3b3682fd4f331d560f9609e9df3611', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.790859', 152, 'EXECUTED', '9:843a2d517a737612f679b586b22dfa1f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.815683', 153, 'EXECUTED', '9:16a25331076d4fe2529906937e513eb0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.826696', 154, 'EXECUTED', '9:6b8fb2185819dac7871c748fec67c19c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.836762', 155, 'EXECUTED', '9:837d545cc3a79d543491e2d76ae76918', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.856212', 156, 'EXECUTED', '9:5350c22ca984311f09a102000551a06a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/503-relation/5033-hs-office-relation-rbac.sql', '2025-01-30 16:35:53.869776', 157, 'EXECUTED', '9:aef36d49fbfd9e9e6b44408a56e0dc4e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5038-hs-office-relation-test-data.sql', '2025-01-30 16:35:53.889871', 158, 'EXECUTED', '9:a606bdf3b74daaf68e89b771ab5a5f83', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-relation-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/503-relation/5038-hs-office-relation-test-data.sql', '2025-01-30 16:35:54.178985', 159, 'EXECUTED', '9:444d28cfb2fa8234930dc9912f7dbf97', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DETAILS-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-01-30 16:35:54.188929', 160, 'EXECUTED', '9:07885059d4d27b328da5cb98518640fe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DETAILS-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-01-30 16:35:54.196025', 161, 'EXECUTED', '9:37bd59be01e36bef353fedf2ab699098', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-01-30 16:35:54.208783', 162, 'EXECUTED', '9:0201fea673d545f158bb5910fc9d0d17', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-DELETE-DEPENDENTS-TRIGGER', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-01-30 16:35:54.220898', 163, 'EXECUTED', '9:4b849a6a05772609a448564e839445e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5040-hs-office-partner.sql', '2025-01-30 16:35:54.228367', 164, 'EXECUTED', '9:5d9a0eab674f574b199594f056bd0b32', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.235883', 165, 'EXECUTED', '9:99fb95a8e62697841e58a1bb4b10c949', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.244952', 166, 'EXECUTED', '9:133005f2f871355ae47a9f648fe9c12f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.268493', 167, 'EXECUTED', '9:fae9a12e3dc592bb62711b8d1770ce46', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.298118', 168, 'EXECUTED', '9:5f673c674692de67315c230c74de1cbf', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.317863', 169, 'EXECUTED', '9:7828179bad8fd8a82a54075753da17a7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.329602', 170, 'EXECUTED', '9:3efc4e4a17da6e225c808c6fcc159603', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.342114', 171, 'EXECUTED', '9:97c7a6e0462732c51130e1b3fb8bdb81', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.359789', 172, 'EXECUTED', '9:2cf5ed77894e41337859cfb8d5d6232c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/504-partner/5043-hs-office-partner-rbac.sql', '2025-01-30 16:35:54.37219', 173, 'EXECUTED', '9:e7ac0d2761e29703e7d6da089962ac89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.383438', 174, 'EXECUTED', '9:100aa26a8e93898e56c1779a7453fb67', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.392662', 175, 'EXECUTED', '9:9529764d7ae47527e87aac4b5ad58c7d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.403912', 176, 'EXECUTED', '9:96cf3d4a24ca5d100282c7f788d43b3b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.420931', 177, 'EXECUTED', '9:8f57444b7ba0dce36772c994af77e49f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.432754', 178, 'EXECUTED', '9:e690b91d50d17b6bb41cfb27766066b0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.44664', 179, 'EXECUTED', '9:79e0da7d5107ed61f17ea4e165dc8945', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.477827', 180, 'EXECUTED', '9:9eb01d87b429f2c138b7d5176bf5db26', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-details-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/504-partner/5044-hs-office-partner-details-rbac.sql', '2025-01-30 16:35:54.49124', 181, 'EXECUTED', '9:967f05730d37d71cdfb18e2382937a57', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.502027', 182, 'EXECUTED', '9:00f12db8bec33a1276b8f597decae0a6', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.511549', 183, 'EXECUTED', '9:78db6dfb3b1778869277a8e42cc063ba', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.523583', 184, 'EXECUTED', '9:97805e89d388a278a1071618e26e2f91', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.535984', 185, 'EXECUTED', '9:06826ce261f4ead46c2ffe68f79f520c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.547777', 186, 'EXECUTED', '9:801e5870315de722dd90b1ae212eb3c9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5046-hs-office-partner-migration.sql', '2025-01-30 16:35:54.558795', 187, 'EXECUTED', '9:d18c1da68e3e6d51cb4f5338eb59c40d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5048-hs-office-partner-test-data.sql', '2025-01-30 16:35:54.577261', 188, 'EXECUTED', '9:5784e97b2806466ed4eba66bcfd49767', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-partner-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/504-partner/5048-hs-office-partner-test-data.sql', '2025-01-30 16:35:54.638584', 189, 'EXECUTED', '9:68954862172fa707bfa0893ba1f991c7', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('raw', 'includeAll', 'db/changelog/5-hs-office/505-bankaccount/5050-hs-office-bankaccount.sql', '2025-01-30 16:35:54.655374', 190, 'EXECUTED', '9:00022f725212f8ae1909262841948bb1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.665161', 191, 'EXECUTED', '9:7b14c584ffa7061a57ff5142dbc851f4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.677493', 192, 'EXECUTED', '9:26e78f0ccb9239d8ba1be81f48293fcd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.694486', 193, 'EXECUTED', '9:f09c1aa5e54888fe71cc6f38d6e6d1dc', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.703942', 194, 'EXECUTED', '9:b1409959b111083b3cf0e3c669f5024b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.724254', 195, 'EXECUTED', '9:6915edcb6fda80537e3876ce890b021a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/505-bankaccount/5053-hs-office-bankaccount-rbac.sql', '2025-01-30 16:35:54.73739', 196, 'EXECUTED', '9:912589683b5a8710bd01c70f3ae91e7b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/505-bankaccount/5058-hs-office-bankaccount-test-data.sql', '2025-01-30 16:35:54.74712', 197, 'EXECUTED', '9:6c8c2360466515f1d5404d8446222ac4', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-bankaccount-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/505-bankaccount/5058-hs-office-bankaccount-test-data.sql', '2025-01-30 16:35:54.809968', 198, 'EXECUTED', '9:df706b6d445dabec00fbfb90d13aebc9', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-01-30 16:35:54.827604', 199, 'EXECUTED', '9:e35607826fc17ead65711ac55a63d62e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-DELETE-DEPENDENTS-TRIGGER', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-01-30 16:35:54.83874', 200, 'EXECUTED', '9:c2f4ce2f8fa13549a8566edd29ac25f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5060-hs-office-debitor.sql', '2025-01-30 16:35:54.845727', 201, 'EXECUTED', '9:942a0ffeb44c31900d60a854c8e21529', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.854105', 202, 'EXECUTED', '9:097db1b8d04268c1c8e472b318d6198f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.862437', 203, 'EXECUTED', '9:4ff230a43a56670eb11167f26095fd00', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.884524', 204, 'EXECUTED', '9:5833902da14fd902bdd61f962ddc4d89', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-update-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.900037', 205, 'EXECUTED', '9:0417bc8650f40e08ff8325c211d6a4db', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.916098', 206, 'EXECUTED', '9:0bbd61a430bd2857a0aa8b8efbc811f3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.926816', 207, 'EXECUTED', '9:4f767b3b03c431b83259c199b2d4214b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.942518', 208, 'EXECUTED', '9:e7a4ecf70b9d0427ba4aea1f1cc3f5f0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.958972', 209, 'EXECUTED', '9:759a74535fd82b597a4e407f7c0031e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/506-debitor/5063-hs-office-debitor-rbac.sql', '2025-01-30 16:35:54.973382', 210, 'EXECUTED', '9:f7511c63df1fc5fada3aaf29732576b8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5068-hs-office-debitor-test-data.sql', '2025-01-30 16:35:54.98627', 211, 'EXECUTED', '9:5814acc278280e3626fdba84ff8305e6', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-debitor-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/506-debitor/5068-hs-office-debitor-test-data.sql', '2025-01-30 16:35:55.057428', 212, 'EXECUTED', '9:0e8e69092abdd93ae7bff89f45495ac2', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5070-hs-office-sepamandate.sql', '2025-01-30 16:35:55.072636', 213, 'EXECUTED', '9:7094f5fd111cb53c5cfe3d352744fd36', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5070-hs-office-sepamandate.sql', '2025-01-30 16:35:55.081129', 214, 'EXECUTED', '9:7b387b6dbaeac43b2c33445a6709b2c7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.091225', 215, 'EXECUTED', '9:be4e6cdfc4ad11a7e025bf38651f34d1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.099651', 216, 'EXECUTED', '9:44b3251af2898fde9813eb7398b906a3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.114884', 217, 'EXECUTED', '9:17cb0a4439da270ab15600fed60b257d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.132829', 218, 'EXECUTED', '9:83f68f08d1b37c3bd228a8d322ab3fe7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.144481', 219, 'EXECUTED', '9:3cb7b97d9ac43a2fc1a46873af943d78', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.154192', 220, 'EXECUTED', '9:77bc5f87dd7cc5757e2e3eccd9e8ba90', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.174818', 221, 'EXECUTED', '9:56cb083ac90933d246be79b750bfe6c9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/507-sepamandate/5073-hs-office-sepamandate-rbac.sql', '2025-01-30 16:35:55.201317', 222, 'EXECUTED', '9:0c9130f70f86c9512e57c035375b4081', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.220551', 223, 'EXECUTED', '9:85c63a4e5f2880f9cc27cba3f513a693', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.242552', 224, 'EXECUTED', '9:e4a182f0eea5ab0db7eb7c115f3aba90', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.258286', 225, 'EXECUTED', '9:5341a47b4c52b16b5493eb2b6fe8e391', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.279889', 226, 'EXECUTED', '9:0cac585727746de1df9bd85e43c3253f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.299508', 227, 'EXECUTED', '9:4e13d6ba612be4d16ac470eff321ac55', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepamandate-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5076-hs-office-sepamandate-migration.sql', '2025-01-30 16:35:55.308592', 228, 'EXECUTED', '9:6a438bb2441c476f19c8adecfc0ada7e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepaMandate-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5078-hs-office-sepamandate-test-data.sql', '2025-01-30 16:35:55.324084', 229, 'EXECUTED', '9:da502a02cd3b95f897fbaa82d5d2711e', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-sepaMandate-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/507-sepamandate/5078-hs-office-sepamandate-test-data.sql', '2025-01-30 16:35:55.424733', 230, 'EXECUTED', '9:d0dfa2ba5d05e930884952d5c833f27b', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5100-hs-office-membership.sql', '2025-01-30 16:35:55.442306', 231, 'EXECUTED', '9:5cb327f0ee0e6dad2ff7b2add1046b31', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5100-hs-office-membership.sql', '2025-01-30 16:35:55.451835', 232, 'EXECUTED', '9:ebca1dd23c9ebcd49f948628a04eab96', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.461096', 233, 'EXECUTED', '9:38e75a8432730f0abb7eb57bcac7d15d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.470803', 234, 'EXECUTED', '9:9f9dc3a42a2c807edb65d9c8e689c227', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.48822', 235, 'EXECUTED', '9:d35b18a0737ac5278f837ebcc96f0083', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.508002', 236, 'EXECUTED', '9:31da52dd1bb16e3c6fcbb843c0b9806b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.520183', 237, 'EXECUTED', '9:fefecd0ba599565d22076b6841661401', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.532733', 238, 'EXECUTED', '9:5f2dd8c715fdf8e9ef499ee80fcea24b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.54932', 239, 'EXECUTED', '9:79db5ea41b711b2607b92ac0ea1d569a', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/510-membership/5103-hs-office-membership-rbac.sql', '2025-01-30 16:35:55.582087', 240, 'EXECUTED', '9:8baae4dbdd21b162cd3ca7c8a939223d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5108-hs-office-membership-test-data.sql', '2025-01-30 16:35:55.591488', 241, 'EXECUTED', '9:37c578f9a81df435f496dc7e7e5c6200', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-membership-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/510-membership/5108-hs-office-membership-test-data.sql', '2025-01-30 16:35:55.662757', 242, 'EXECUTED', '9:d1d9cb1a678983f3860e4865362fcffc', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-01-30 16:35:55.679669', 243, 'EXECUTED', '9:dd5642d53c66a58f6b90d5e8f0b2eefd', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-BUSINESS-RULES', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-01-30 16:35:55.689921', 244, 'EXECUTED', '9:be3db6ea2b92031072765cdcc1c0ad38', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-SHARE-COUNT-CONSTRAINT', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-01-30 16:35:55.702202', 245, 'EXECUTED', '9:d8433344adbc9d103f77a152bfe150c0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5110-hs-office-coopshares.sql', '2025-01-30 16:35:55.711809', 246, 'EXECUTED', '9:5e302243d9bfabf507630b5e074ac4ec', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.72191', 247, 'EXECUTED', '9:d3421993f41f43c4b99cb1afbb614d39', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.73353', 248, 'EXECUTED', '9:48097391a78abef6b3b3bfec2a92b338', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.750221', 249, 'EXECUTED', '9:dca08c5d3d8f82e02438878022b1f81d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.77195', 250, 'EXECUTED', '9:50469fbd535cd90ae0eacb79083067e3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.787179', 251, 'EXECUTED', '9:dff51f901834806905f0a032960b3da3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.801551', 252, 'EXECUTED', '9:324a03d0c8858aff81b457aff02feeb4', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.821001', 253, 'EXECUTED', '9:1ea81886c6351b59f1408645c17b8dbe', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopsharetx-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/511-coopshares/5113-hs-office-coopshares-rbac.sql', '2025-01-30 16:35:55.834715', 254, 'EXECUTED', '9:952da62b0a67d7d1e9f951d14d37889f', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.846525', 255, 'EXECUTED', '9:361f46900a3867db4cdea155550a9694', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.858677', 256, 'EXECUTED', '9:dfa74018490986a7aa2d28c890fa8b1d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.866964', 257, 'EXECUTED', '9:3e3d01d4d5416ce58b51e2823153a934', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopshares-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.876658', 258, 'EXECUTED', '9:8b5ed8e4e8376ba793aaa55219e0d0f9', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopShares-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.88681', 259, 'EXECUTED', '9:465888aa1bf6053a5a76bcaeda506fa7', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopShares-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5116-hs-office-coopshares-migration.sql', '2025-01-30 16:35:55.897586', 260, 'EXECUTED', '9:ace1b952c692a0f453a2878a5796041c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopSharesTransaction-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5118-hs-office-coopshares-test-data.sql', '2025-01-30 16:35:55.911455', 261, 'EXECUTED', '9:ee804e35a6ef6f17acb96a9dc7630622', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopSharesTransaction-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/511-coopshares/5118-hs-office-coopshares-test-data.sql', '2025-01-30 16:35:55.961931', 262, 'EXECUTED', '9:efc373aebc1de8e6fb9904225e372b8f', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MAIN-TABLE', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-01-30 16:35:55.980647', 263, 'EXECUTED', '9:5157878ebca481817b080219de4ec9d0', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-BUSINESS-RULES', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-01-30 16:35:55.99333', 264, 'EXECUTED', '9:008c73cb2883353bfad0a7b4b91ec16d', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-ASSET-VALUE-CONSTRAINT', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-01-30 16:35:56.003201', 265, 'EXECUTED', '9:cf831a455813de1d54dbaaea5f0588fc', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MAIN-TABLE-JOURNAL', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5120-hs-office-coopassets.sql', '2025-01-30 16:35:56.01028', 266, 'EXECUTED', '9:13ee6812125cb02968ada8a92af47c75', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-OBJECT', 'RbacObjectGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.017627', 267, 'EXECUTED', '9:571ffbd8c6ce5070fa72e25434e2d819', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-ROLE-DESCRIPTORS', 'RbacRoleDescriptorsGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.026042', 268, 'EXECUTED', '9:81ea7ebfba6746f9b82c4dc4b2cd247b', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-insert-trigger', 'RolesGrantsAndPermissionsGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.039202', 269, 'EXECUTED', '9:bc0a4b78b806fbe53c62425612812467', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-GRANTING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.058545', 270, 'EXECUTED', '9:72c95623dd7b39dd7ee9cf8f4557a182', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-CHECKING-INSERT-PERMISSION', 'InsertTriggerGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.068465', 271, 'EXECUTED', '9:d76e9461931e5143dafe96cd88335bb2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-IDENTITY-VIEW', 'RbacIdentityViewGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.078692', 272, 'EXECUTED', '9:2fcdd71e8c918eda052e10fbde75278e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-RESTRICTED-VIEW', 'RbacRestrictedViewGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.093114', 273, 'EXECUTED', '9:83f4252251daaa81aa670520a1a13a06', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassettx-rbac-rebuild', 'RbacRbacSystemRebuildGenerator', 'db/changelog/5-hs-office/512-coopassets/5123-hs-office-coopassets-rbac.sql', '2025-01-30 16:35:56.110089', 274, 'EXECUTED', '9:d607c71372e6059880bc905c817451d8', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-legacy-mapping', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.122734', 275, 'EXECUTED', '9:c5ff3e7587acde442cae7de66fb2001c', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-sequence', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.136155', 276, 'EXECUTED', '9:cf6ab0aefc52d21bae832899f0523d1e', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-default', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.144265', 277, 'EXECUTED', '9:ef2459889790a7d6950d1acddee76a21', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopassets-MIGRATION-insert', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.153227', 278, 'EXECUTED', '9:3c77d48e979b54d2cc3864228fc5d234', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssets-MIGRATION-insert-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.163376', 279, 'EXECUTED', '9:110c20c2c46897bafcf994ddf426d2b3', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssets-MIGRATION-delete-trigger', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5126-hs-office-coopassets-migration.sql', '2025-01-30 16:35:56.175489', 280, 'EXECUTED', '9:51e3f23a1d481d94050287be951a66e2', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssetsTransaction-TEST-DATA-GENERATOR', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5128-hs-office-coopassets-test-data.sql', '2025-01-30 16:35:56.212391', 281, 'EXECUTED', '9:e497c8dd7bf732f16ef2bb604b7cd6b1', 'sql', '', NULL, '4.29.2', '!without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-office-coopAssetsTransaction-TEST-DATA-GENERATION', 'michael.hoennig', 'db/changelog/5-hs-office/512-coopassets/5128-hs-office-coopassets-test-data.sql', '2025-01-30 16:35:56.307614', 282, 'EXECUTED', '9:265f1ceabada82c20fd2ee16cfe6453e', 'sql', '', NULL, '4.29.2', '!without-test-data AND !without-test-data', NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-integration-SCHEMA', 'timotheus.pokorra', 'db/changelog/9-hs-global/9100-hs-integration-schema.sql', '2025-01-30 16:35:56.318693', 283, 'EXECUTED', '9:e6e03e675664bdbad9bb11fc2875e822', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-kimai', 'timotheus.pokorra', 'db/changelog/9-hs-global/9110-integration-kimai.sql', '2025-01-30 16:35:56.331936', 284, 'EXECUTED', '9:56e481a555f86b471b74aaceacc4b520', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-znuny', 'timotheus.pokorra', 'db/changelog/9-hs-global/9120-integration-znuny.sql', '2025-01-30 16:35:56.380155', 285, 'EXECUTED', '9:48685a4882797575f8bb8c83d5fc9380', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); +INSERT INTO public.databasechangelog (id, author, filename, dateexecuted, orderexecuted, exectype, md5sum, description, comments, tag, liquibase, contexts, labels, deployment_id) VALUES ('hs-global-integration-mlmmj', 'timotheus.pokorra', 'db/changelog/9-hs-global/9130-integration-mlmmj.sql', '2025-01-30 16:35:56.391364', 286, 'EXECUTED', '9:df6c8a724cfdd0c0aa013ba996655ed1', 'sql', '', NULL, '4.29.2', NULL, NULL, '8251349802'); -- @@ -11828,3788 +13705,4498 @@ INSERT INTO public.databasechangeloglock (id, locked, lockgranted, lockedby) VAL -- Data for Name: global; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.global (uuid, name) VALUES ('c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'global'); +INSERT INTO rbac.global (uuid, name) VALUES ('33af1d05-a7de-4552-9118-7900fe5fde7d', 'global'); -- -- Data for Name: grant; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('811c86b6-39c9-45e1-b8c8-74ccd6633f85', NULL, NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4cfb2f4-efce-440b-bf8d-e28bebf0442a', NULL, NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'dcb6787c-3652-4ddc-bea1-6e32efab1ab8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c36d683b-1c78-4803-8dfc-9ce04ff239a3', NULL, NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1d26a525-6c01-453a-990b-8208eb077058', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('15b265a7-3c4d-4b21-93fa-6e1fb1c9850b', NULL, NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '8a906922-c5cd-41a8-927e-6506b96a722c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('770d1f9f-ec01-459a-977f-a678c2016802', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0f4ccfd-158f-4448-b0f0-3af785e42027', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, 'b08554be-1c78-441c-87b0-5dbd7378a983', 'f731e75d-f892-4738-976c-576071605327', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc833dc9-ca1d-4394-bac6-87a84cdb6d63', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'b08554be-1c78-441c-87b0-5dbd7378a983', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('381760a3-1649-4f51-a5ba-6a5c97209ffc', NULL, 'b08554be-1c78-441c-87b0-5dbd7378a983', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'b08554be-1c78-441c-87b0-5dbd7378a983', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7746f42f-1040-4d83-8afa-3ccf2c5f3396', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'e2fd67a6-43c3-4402-ad82-5675d15c619d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b6978668-53bb-4bbe-b90a-e702dfadf930', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, 'b08554be-1c78-441c-87b0-5dbd7378a983', '94724e79-a840-4218-a5d6-e669c73ba53d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3de3f09e-a900-43e8-89f5-4e49ee8364b3', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, 'd366868e-1c5f-40d8-90b6-9159123762fb', 'f360669b-74d4-46ca-a651-bbadc07e4d8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dabdb333-2887-4138-8b2a-597c4de28268', '1c52fc2c-6390-425b-993a-788365e85d05', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbdb8890-e044-4fa5-8a75-8535ef2ff69c', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, '966e57d1-3610-4b50-8cfd-033a701ba50f', '73da7922-3956-45fa-9101-2a53a494d5c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c3313f2-101f-44a5-bc2d-f7a96bd570f0', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '966e57d1-3610-4b50-8cfd-033a701ba50f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5d4bf8b-562e-4444-9f14-dcb204a2029e', NULL, '966e57d1-3610-4b50-8cfd-033a701ba50f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '966e57d1-3610-4b50-8cfd-033a701ba50f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('857aacea-82bd-488a-8338-13c4538e783b', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '1e1478e6-737d-4275-9ac2-8b9f1b020efc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a3c80971-6a16-472a-9d0c-c12f87e4160c', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, '966e57d1-3610-4b50-8cfd-033a701ba50f', '5228a4f7-f78c-4841-a40d-52d994d21a29', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59cb40fb-5161-4f37-bf08-3a2a7cbf7553', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, 'a22f7977-6575-4c54-8b20-3ae24ce14df6', 'e8782aa9-f679-4b73-b584-cd6f9bd7e2f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7e6864e8-c943-4a4f-adfc-2c73229f43b6', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d9d3125-adf4-438e-b218-67258e8a1e9f', '441d53f1-af50-4e73-9b53-48468700d257', NULL, '138cbab9-184b-4679-8caa-6d2ee82de3c4', '8eb7208b-33f9-4e80-9071-ba1b76b79f75', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fbc8eecc-eb4a-4e62-9dd8-95d12089ecd8', '441d53f1-af50-4e73-9b53-48468700d257', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '138cbab9-184b-4679-8caa-6d2ee82de3c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bef6c842-70f6-45da-abfb-106a2eccc13b', NULL, '138cbab9-184b-4679-8caa-6d2ee82de3c4', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '138cbab9-184b-4679-8caa-6d2ee82de3c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96ec70b1-0db5-416d-ba35-40231c589013', '441d53f1-af50-4e73-9b53-48468700d257', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', 'bc68123f-b589-48ac-ada5-6ec38993b77e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97f5006a-0e88-4e0b-baa7-d83babcb4479', '441d53f1-af50-4e73-9b53-48468700d257', NULL, '138cbab9-184b-4679-8caa-6d2ee82de3c4', 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66907a6b-8dfe-4989-8980-19f718b8b8f1', '441d53f1-af50-4e73-9b53-48468700d257', NULL, '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', '0bc96a92-5afa-43cf-81f8-63c24e7d82bd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d368bfb-c444-4e08-bed6-42b394c399ae', '441d53f1-af50-4e73-9b53-48468700d257', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ec50284-9577-41c6-9854-5ce78c28ba3e', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, 'ee1f7e4c-6d00-4eee-a778-e936f019b149', '60eb6016-51f5-40d5-965c-697d9ca9b3a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e03ce62-e6b2-448a-93c6-837c914d24ff', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ee1f7e4c-6d00-4eee-a778-e936f019b149', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d27efcd-1547-41fc-852b-2797056eba7f', NULL, 'ee1f7e4c-6d00-4eee-a778-e936f019b149', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ee1f7e4c-6d00-4eee-a778-e936f019b149', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f37e51e7-29e6-40fc-a2aa-fc67f4c5839f', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, 'd98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', 'e200c0d7-cec3-48ca-be23-61fc26739dd3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27309af4-c9c7-43b0-93a8-b574073897cd', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, 'ee1f7e4c-6d00-4eee-a778-e936f019b149', 'd98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66d03e1f-e0e5-42ef-8e1b-e3611268b8e8', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, 'c767e22f-f90f-455b-8733-7e58ca5ffba7', '023e5366-3465-4a4a-ba48-613a72e043c8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f9ccb2e-ad2c-4429-9ce2-14e519e925cd', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', NULL, 'd98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', 'c767e22f-f90f-455b-8733-7e58ca5ffba7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87c7ffba-1059-4efd-ac57-e7268aa7b235', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '71186c13-cea3-4223-9a7b-033ba9412920', '154d1dd7-66e8-43ab-9b81-796758801837', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2c3faef-49b1-437f-81e6-f9f5887dbac1', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '71186c13-cea3-4223-9a7b-033ba9412920', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa653337-1a29-41ac-aa91-3fba4ade193d', NULL, '71186c13-cea3-4223-9a7b-033ba9412920', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '71186c13-cea3-4223-9a7b-033ba9412920', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('108efaa0-ebe9-423c-86d2-3320050b2ed5', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', '66d8af90-61e5-46c0-a425-501a4320d913', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e73d2e8c-d6c0-4c42-a40e-ed220970938f', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '71186c13-cea3-4223-9a7b-033ba9412920', '7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5cb1ef5c-526c-4328-bef0-5dd281c763ed', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '5abd1ae5-da0c-415b-bff7-ef07513e08aa', '6e061f41-d64e-4cec-ab4c-016ffbf16cc0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5a379cf9-f4bc-4304-9fdd-066a8be657ca', 'aa9af033-e564-421c-b235-2dd7d5b96559', NULL, '7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', '5abd1ae5-da0c-415b-bff7-ef07513e08aa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c26cca19-6cb8-4ccd-bfce-1aed60808577', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, 'c3163a16-abd8-428c-95d6-420b806f3291', '45cf6473-ef59-46d7-a313-99d7faa6cba5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e2fc82e7-62b2-4c1b-94eb-05a96d5a3c3b', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c3163a16-abd8-428c-95d6-420b806f3291', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9b7ccb5-5568-435e-af4a-f8984c84b01b', NULL, 'c3163a16-abd8-428c-95d6-420b806f3291', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c3163a16-abd8-428c-95d6-420b806f3291', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8a268f7-7789-4d7c-a213-bdd19b5b80f7', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', '607b321a-2e68-442a-ab4c-c603d2f36491', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ab4c3c1-14fc-4233-bd75-fe17988c486c', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, 'c3163a16-abd8-428c-95d6-420b806f3291', 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac21e4f3-a0ce-465c-9e58-97a87f4bb0b1', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, '2b391e5d-6b69-4999-8ede-1885d700233f', 'd90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea97b1e2-d5fb-4e9f-b85a-308a448e999e', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', '2b391e5d-6b69-4999-8ede-1885d700233f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07ca1167-e063-4607-b6b7-74627c4c2579', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', '3ff75cbf-35a8-4a35-b38e-ef723b8e2b86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc9223f3-0750-44a7-86f8-3de3ce4f0a90', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b21a4879-0978-429f-98f6-bd719d3763f9', NULL, 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce2f224d-e447-4582-b371-6dd772af9f22', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, '4309a7bf-0556-40d0-872d-dcbb13273c62', '98d3874a-b4fe-4355-86d1-d0508adc32b9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('658bfdc1-16c0-4325-a160-41928806e003', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, 'bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', '4309a7bf-0556-40d0-872d-dcbb13273c62', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b1684d87-0c54-4777-ba72-ff6eabd5de59', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, '5034d61c-e9dd-4b48-8dc8-b9279e015494', 'dac07f03-0dc2-4de1-a7f4-13145acd41b1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4c7880cb-0d5f-4fc2-903d-f3c5cac66479', '25083463-3713-4a20-b579-c1e34d542bcd', NULL, '4309a7bf-0556-40d0-872d-dcbb13273c62', '5034d61c-e9dd-4b48-8dc8-b9279e015494', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3aa6a573-df40-44ef-ad7d-26ad4d700fe7', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', '5545c680-274b-476b-98d4-e3fa99c4f4e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42ef5d39-7426-4b82-a6df-b001247ef085', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9016ccfc-bf61-41c2-a936-6739b72f4538', NULL, 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39c64774-a7de-4ab6-b70c-74f7818cfce2', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, '662d0ce7-6216-4366-9691-cb5e6020e36f', 'c0c83cf5-e355-453e-9791-2d850078d07b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c94e2cb-bb96-492e-80a9-24075ca4e545', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, 'acc6f8b6-e950-491a-99d8-432ab5f10b8d', '662d0ce7-6216-4366-9691-cb5e6020e36f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('930febcb-e673-4145-b947-33c4abbe3528', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, 'c16a64f9-5dd6-447b-bf7f-f19d542b981b', '083a28d4-199f-4cd6-9aa0-5cb0b4aac74e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('317064a2-6781-400e-883e-c7c9c0e28d43', 'dbf6038a-0387-400d-b083-411ba014ff6a', NULL, '662d0ce7-6216-4366-9691-cb5e6020e36f', 'c16a64f9-5dd6-447b-bf7f-f19d542b981b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a2d2bcc-4ac3-47c8-a98c-e074eabad3fc', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '60ac113d-c253-482f-b057-c83399cabc22', '7aeacd93-2236-43ff-bbb3-a7ed6ae5becc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a23ca02c-409f-4af1-a74f-ed2aefe5e5be', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '60ac113d-c253-482f-b057-c83399cabc22', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('211b3de6-94e6-48cf-8d85-6f376a99d50a', NULL, '60ac113d-c253-482f-b057-c83399cabc22', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '60ac113d-c253-482f-b057-c83399cabc22', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eec39901-3fca-41b7-b7c1-8762225e9538', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', '205f3e0d-445b-4bfb-a16d-fbde4399c1d1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c8263f4-807d-49e0-bee7-b6dfb9ec7426', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '60ac113d-c253-482f-b057-c83399cabc22', '36cbc041-bb3d-4058-9ccd-2d608992aeef', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b1f18778-b7ba-4471-8734-98f1afd53c75', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', '45350f64-13b8-47e7-ba17-15ba11a61981', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31db3c70-a444-4187-8781-a606e9a770c6', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ed53ef1-06df-463a-aa4b-8a9fc57de7e9', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '03cee890-5e1c-43dc-8489-8ad117941f68', 'c4658a5b-6d9a-4482-830a-754759afa33d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5259095f-7bc9-4536-ac04-4ed4b75fa1b0', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '03cee890-5e1c-43dc-8489-8ad117941f68', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ee4aeba-8c20-411f-a28f-ffd20e38d2a5', NULL, '03cee890-5e1c-43dc-8489-8ad117941f68', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '03cee890-5e1c-43dc-8489-8ad117941f68', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('baedfb45-dcb2-454e-9517-604ff47f631a', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '79cc0827-439d-4357-8749-97d21830f648', '14951d5e-990f-4bba-a3fc-a1a9f8a3d714', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d7aaed7-2400-4ca2-ab30-04f3c5df3b31', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '03cee890-5e1c-43dc-8489-8ad117941f68', '79cc0827-439d-4357-8749-97d21830f648', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95c255af-809a-4792-84e5-76abf2ebb471', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '1cf65eee-3ae3-4c77-9ce0-e156db37da82', '1c6c6416-1de8-4134-893f-c0b3382a4248', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58fc6263-415b-4a12-9076-17f46bf8a2bc', 'c5bd22df-9452-49c1-b369-b98c10a90853', NULL, '79cc0827-439d-4357-8749-97d21830f648', '1cf65eee-3ae3-4c77-9ce0-e156db37da82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ddd5f425-34d6-4c71-9f30-b0c57110ebb7', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', 'ab3678ee-6848-4dd4-a25e-96566a038ef0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('390dc9be-0514-46f0-b234-d141fb475bf8', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('257e7ed8-eafc-4f61-8b0b-7f070761a061', NULL, 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13e2d0d2-49e4-40a0-bc3c-09bbc2e46de2', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', 'b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36395a7d-0861-438e-874b-9b7214bccb33', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, 'd75237c1-598b-4ce4-8e7f-ce5870f464b1', 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6ebef81-c57b-4fce-9e87-4d352b982c55', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, '96bb1170-326f-47f1-a8d5-c6b9451cbc11', 'dcfebc0f-3615-4acb-9117-b060f6946fba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eaeeb537-c4bc-4b49-9dd7-06fbe0e860d4', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14ec6b71-ce1d-4cc2-9274-fd65df3ac5ad', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, 'a14e50c5-8609-4448-8855-5e76818df2e0', '83da6f4c-a933-44a4-a317-b8b02eef997c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('571169e3-7e1c-4599-aec3-e7ee1a998645', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'a14e50c5-8609-4448-8855-5e76818df2e0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c128bc06-0249-4e4b-9b69-bbfa9ac16397', NULL, 'a14e50c5-8609-4448-8855-5e76818df2e0', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'a14e50c5-8609-4448-8855-5e76818df2e0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5afb59e1-10cb-4ead-886f-5571379da4cf', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', '052cda7d-c78a-49cc-8582-b161691afee7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0338d15-8069-43a9-9132-e9bdf481d02c', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, 'a14e50c5-8609-4448-8855-5e76818df2e0', '0818dc0a-1fd2-4a99-901e-0dab13697d85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5cdb3102-a6f8-4261-8c92-789239f65f6f', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, '461bfac0-a91d-41d5-a96c-4987a67f59f4', '45375195-71ed-41e0-a357-f3c0db47e1e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1bbcb179-19ff-4af2-a5e5-5126579b7188', 'a8380163-1e05-41c9-9614-a0af334d49ac', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a468149d-13fa-49c4-baf1-012b2900a83b', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, 'f39f5cb9-bdfa-422c-bc23-2e564025722f', 'cc20b289-5f51-4be7-af41-151a0d8aed8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86e908aa-5907-43a9-adca-153f79d2f834', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f39f5cb9-bdfa-422c-bc23-2e564025722f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('028ff021-1ac5-4950-abaa-d201686c93ce', NULL, 'f39f5cb9-bdfa-422c-bc23-2e564025722f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f39f5cb9-bdfa-422c-bc23-2e564025722f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b958ccc-351a-46d7-be5c-fd28fdeebabf', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'ea3b4e3b-e967-4238-8be5-ef1348aac8d3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37cc0750-c7e9-470a-b368-257eedfad3d1', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, 'f39f5cb9-bdfa-422c-bc23-2e564025722f', 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36f9ef93-284b-4bfc-9f05-0a42ef7e5056', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, '54cac581-c28a-4727-82ac-0f4af93da96d', '5ee1eaa5-dae4-45af-8c9b-af4b44c192c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5bd0723d-d09b-4c1f-9d67-456625bdfb87', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c99f548b-22b3-47ae-80ee-f58c6bf79deb', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, 'a8653567-6c67-484d-9c69-399fd7ca9fe3', 'ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f51d1026-260b-45be-b451-eaeee034ee31', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'a8653567-6c67-484d-9c69-399fd7ca9fe3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e7632db-ed33-43d0-985f-4ba2485156e0', NULL, 'a8653567-6c67-484d-9c69-399fd7ca9fe3', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'a8653567-6c67-484d-9c69-399fd7ca9fe3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0300fbb-1493-4802-ba15-515febea8781', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', 'a8737274-244a-4f6c-8095-6e3e51ad10c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a52e47b1-9e35-485b-b5cd-d1ec661dfc1e', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, 'a8653567-6c67-484d-9c69-399fd7ca9fe3', '8d8536df-c84f-466b-bd46-17e8ff67b43c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5749ae9a-3e24-4711-adc2-198ea08521c9', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, '12f0b062-6115-42d3-b1bd-b82a0e31efd9', '5d73f76c-f609-4650-9575-18c54c52251c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('56dc252f-6276-4704-a5c5-007c18b3e0d1', '7321b71b-7c08-49bf-ae45-12f69644378f', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('12811f0a-b186-496f-a8c6-bc9b112deff0', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '77af2213-1fcf-4ce8-926e-26c15a6e6f31', '1460063c-a1fd-4a4b-a7f3-13aabd41c021', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('56a9a347-0a25-4ce7-9d1e-93e83758a491', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '77af2213-1fcf-4ce8-926e-26c15a6e6f31', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01cd8e35-aa73-468a-adae-13c52e0c3bea', NULL, '77af2213-1fcf-4ce8-926e-26c15a6e6f31', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '77af2213-1fcf-4ce8-926e-26c15a6e6f31', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71dbf477-d021-4cad-a589-281b3c5806e7', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', '3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74502eda-635d-4f0d-80dd-37c82c4dc41f', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '77af2213-1fcf-4ce8-926e-26c15a6e6f31', '76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd9b3c4c-6cbe-49ad-beec-036f89d154d1', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '85d8e49d-9148-4431-a020-053fd4376574', '57cdb6cb-097c-4f08-8daf-ce99536adb9d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('082f105c-0004-4d59-9315-5c70dfd7bfcc', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', NULL, '76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', '85d8e49d-9148-4431-a020-053fd4376574', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9f62ac31-6306-4db2-a0bc-d9cb57fe6caf', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, '801af8b9-6a98-4758-93ee-1cb6ea634bcb', 'b566ded5-a4ab-47a4-9062-460eed731140', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65af456f-b4b7-4db9-a48c-727355bf9920', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '801af8b9-6a98-4758-93ee-1cb6ea634bcb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba8bd472-c018-4950-a1b7-acb36731a17f', NULL, '801af8b9-6a98-4758-93ee-1cb6ea634bcb', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '801af8b9-6a98-4758-93ee-1cb6ea634bcb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87795b29-e1fd-47f9-8c50-3a4b899a7ba5', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'f3818a69-8669-4892-a8cd-e278ce45c518', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('909503c4-71e1-42cf-a0b4-9b771242d0a3', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, '801af8b9-6a98-4758-93ee-1cb6ea634bcb', 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8f5e497-188e-4e6e-a9ba-51f882f11a4b', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', 'cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('89173a47-c421-4e35-b5ac-112ba5c8a6fa', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f5f39b4-27f8-487b-b1fd-8d040e08126f', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, '4ca46ce7-a371-45f8-aafc-b7803b821eb6', 'fd496f22-22ba-4d27-a87f-c8bf1cb1fda1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e769a36-1b28-410c-a0cd-45d85bdf4fa0', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '4ca46ce7-a371-45f8-aafc-b7803b821eb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7fed4c21-36e0-4784-b6f8-e0d5f7ffa687', NULL, '4ca46ce7-a371-45f8-aafc-b7803b821eb6', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '4ca46ce7-a371-45f8-aafc-b7803b821eb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9d40a6d-fc7e-464c-9ce1-725256314472', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', 'a344984d-6c4e-458f-8efe-7bd7459a3d8a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('44b9c7c9-43b0-460c-80e4-614d74d16d23', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, '4ca46ce7-a371-45f8-aafc-b7803b821eb6', '3b95dee8-1138-434c-91e4-5e28d537fa0e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fb77b01-4fd0-4dd5-bfe5-c8c6dbdf5de9', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', '1a3671c5-dab1-437f-8487-a53c54cc6146', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6551b429-adab-4b03-892c-92c05102e86f', '31eb8927-f7e7-45db-a350-bece46fd2300', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2aef6d9-ab64-4662-8380-5c3082aba082', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '407bfcdf-1273-4569-8483-5cea353c546d', '903acdfc-150f-40d1-9f89-819bfc1711da', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60ede24a-23b2-44bf-9c7e-4fea0ee6b238', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '407bfcdf-1273-4569-8483-5cea353c546d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('932d8083-020f-4635-aaf1-4b98517a6243', NULL, '407bfcdf-1273-4569-8483-5cea353c546d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '407bfcdf-1273-4569-8483-5cea353c546d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98a923e1-3a6c-4bb4-befe-2deac7add62a', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '5c33226f-3c03-4147-93b7-d41d378cf0f5', '46461eaa-21f8-418f-9c6f-7fcf8e86513f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aef1d673-8578-4921-bbad-91cdb9a0d854', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '407bfcdf-1273-4569-8483-5cea353c546d', '5c33226f-3c03-4147-93b7-d41d378cf0f5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('69aaa372-8815-429b-ac6a-71a01692e21d', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '198cac03-a83b-4a24-8559-29ef72cd24b0', '836684cb-c167-4dfd-b8fc-35424558fb5f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae5b436f-c8a7-414c-beac-1878adac55dc', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', NULL, '5c33226f-3c03-4147-93b7-d41d378cf0f5', '198cac03-a83b-4a24-8559-29ef72cd24b0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bcb72b08-8725-4345-8040-4c74ebd008c5', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, 'e1624410-b367-4523-bbf5-59f33582b16f', '6ac59ed3-6976-463b-a7b9-60a6dd27b46c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('56e6366c-1aa5-41cb-8878-845bc57e20cf', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e1624410-b367-4523-bbf5-59f33582b16f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7bed90d6-2638-44de-a631-b754d2dee120', NULL, 'e1624410-b367-4523-bbf5-59f33582b16f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e1624410-b367-4523-bbf5-59f33582b16f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a6cf60d7-7e11-4f3a-93e4-d28bc9c4163c', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, 'cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', '22c7cae4-b6f1-4398-beae-fe0d3616e062', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c9684553-46bc-4d94-afa0-8d00d18edbc1', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, 'e1624410-b367-4523-bbf5-59f33582b16f', 'cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('02893021-cbdb-4c2b-b07b-164c83abc7a4', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, '9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', '47b14246-134d-4543-b287-c52e6af5b78e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('30ba3349-e10d-4800-9de7-a15126903cac', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', NULL, 'cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', '9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d3ce340-0183-4d6c-81e9-9567831382b0', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, '3e114ba1-65d5-40a2-9539-3413cdc28798', 'd7179a9f-6981-4794-a295-ecfe89d3a10b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a586e4eb-ab01-4385-92d4-cdee2767daad', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '3e114ba1-65d5-40a2-9539-3413cdc28798', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81f416e9-a562-4666-a066-99efa46acf51', NULL, '3e114ba1-65d5-40a2-9539-3413cdc28798', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '3e114ba1-65d5-40a2-9539-3413cdc28798', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13bc4ab9-9b46-41c4-af5e-1cdda2b6bf6f', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '7225b959-f7bb-4530-a7f8-2f64811dd98d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fdb2257e-f5ac-49aa-834c-50e3e1d9d136', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, '3e114ba1-65d5-40a2-9539-3413cdc28798', '31909570-3577-492f-a7a8-c7345f213bc8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df2f2b1c-613d-45a0-89ce-2aec7901406f', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', 'bfef72bc-1d20-442e-8e7c-1feac7e3f1fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ece87f24-a602-449d-b804-db220715053f', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21dcde69-07e0-4545-a965-7d60d1dd4ba9', NULL, NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '32d71457-5a04-4edf-87ed-850f2c354718', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca8148a9-1a4e-41e4-936c-85f7a3325b01', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, '062ce171-efc3-4f07-8aa1-3486948ade81', 'a7c2d342-0472-49c6-933d-6674ad52588e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42f68d24-a5eb-415e-b022-acfce7a13c4f', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '062ce171-efc3-4f07-8aa1-3486948ade81', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bee70d80-e2d5-4471-91b7-41ad1e4cca9b', NULL, '062ce171-efc3-4f07-8aa1-3486948ade81', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '062ce171-efc3-4f07-8aa1-3486948ade81', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60b38fb8-d01c-4d31-8aad-5a1867f31dfd', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d685a10-b6de-4f4c-a00f-0bcc38102bdd', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, '062ce171-efc3-4f07-8aa1-3486948ade81', '611c71bc-4ce5-4a20-b819-95d274f73227', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60479e68-4c55-425b-96c1-f039877df327', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, 'febfbe7e-4bf7-4385-834f-017201aa8756', '4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a1a4cef-ee26-48a7-b8d7-a8fa9063643e', '89f83a40-5d7b-4f33-ba0b-29207f263f15', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39c200e1-d028-4e84-8c1d-c585c5cc4d22', NULL, NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94a82552-df7c-44e0-a9e3-e3adf60fe8b8', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', 'bcd721f1-4e79-41a6-9019-b9c3ed63a4a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('257a3ff4-cb1c-4efc-8069-032253c0fb87', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70ad67a1-20b2-41d9-a067-df59ed89b9d7', NULL, '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6a7627c6-d178-4f67-ab39-cee1a171baba', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '39eb942e-dcef-4f04-8b50-ff269434e769', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e543942-d848-41a4-af4d-0d727cf116cb', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', '29338455-e154-4447-9c36-9eb49cd398bd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4e08c68-c3c2-414a-a4fb-640a2194e255', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '1ab576b5-1092-44bc-81f2-5f21f24810ee', '5d5d557b-2893-4a40-9dc1-c160b7281437', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f066eee6-15a8-4c08-ad6d-b0fb61b4811f', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4ff006e-1e33-416d-9a65-58b7a8b7a392', NULL, NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'd6fae1c1-a7a5-4daa-8ae2-389172131648', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('466c5736-f2de-493b-9347-e9f73306b58e', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, 'ef043b77-f00c-42a5-b628-fa257cbe98fb', '94d61a3c-08b9-46bb-bb3a-c4dab0521df5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9a67987-327a-49b9-aba7-ec0a1294a95f', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ef043b77-f00c-42a5-b628-fa257cbe98fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55eb6aad-b9c3-449d-8dae-3375a0427362', NULL, 'ef043b77-f00c-42a5-b628-fa257cbe98fb', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ef043b77-f00c-42a5-b628-fa257cbe98fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('985f5388-53b2-48e9-834c-39cfde7cf3cb', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, '568bfaa3-d857-432d-accf-ff32377587c9', 'a2948c08-e5c9-4be7-a8fd-ec429e86bdf3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0d12974-d009-4ba9-bb03-305f2411c422', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, 'ef043b77-f00c-42a5-b628-fa257cbe98fb', '568bfaa3-d857-432d-accf-ff32377587c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41c34cc7-2a50-4f52-830e-f09900675fc9', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, '6cc9abee-77f2-4e9b-ac65-f9cc57f00825', 'f89d32df-b3fd-40a3-bbf1-cf8220dfb43b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0c7f001-a8e5-419c-93c7-e79036be6073', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', NULL, '568bfaa3-d857-432d-accf-ff32377587c9', '6cc9abee-77f2-4e9b-ac65-f9cc57f00825', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a57890c3-e565-451b-a35a-36d5dbe706ae', NULL, NULL, '568bfaa3-d857-432d-accf-ff32377587c9', 'c594394e-fad6-42c5-90f7-a3dda0b8e028', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3126c921-41db-4640-87aa-3f81a65dd37c', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', 'f3455019-460b-4a40-ab4a-246190901887', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa8fc728-f8de-4e8c-8367-088f3c97f7cf', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('919dd417-0e45-464e-a5df-3c5850d9ccd6', NULL, 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e03bb3b-28c0-42ad-a89e-d6f7e87e45ae', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', 'f1e50651-1a66-469b-8a7e-5063a7d1852d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca8842ea-dde4-4119-a939-0004ad084c01', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, 'e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b14f5a1-3373-4cde-b99a-924ab429cb31', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, 'c2d87277-0280-41c8-b0c1-3c431e7fc33d', 'f8c7ecd7-7ec9-46fa-bd96-aac315e96771', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea60a75c-6b2c-40a6-8d4e-3c7591016bce', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', NULL, 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', 'c2d87277-0280-41c8-b0c1-3c431e7fc33d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41180bcc-8501-4162-a7a3-c14531e54571', NULL, NULL, 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', '97c9bdab-30ba-4ea5-acc2-6777123f2ce5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('486cf470-646d-4332-a372-db68d01b0618', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, '450185ef-185f-46b5-8842-8e4009576183', '64aa40b9-9dc6-4254-994a-04a2198a606c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bff397be-824f-4fba-98d5-7e3a7877683e', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '450185ef-185f-46b5-8842-8e4009576183', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80edf720-0449-4434-99e5-31157a045498', NULL, '450185ef-185f-46b5-8842-8e4009576183', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '450185ef-185f-46b5-8842-8e4009576183', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2f6b1e4-7d45-4d33-a39b-bca9fb786e4e', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '27b4fff1-44c3-46a5-8fae-c72a49d4bcb3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77fcebf2-4191-43d9-a452-49594d007d17', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, '450185ef-185f-46b5-8842-8e4009576183', 'b5c771dd-5b62-4631-85d8-5702e34266c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70f42766-12aa-4547-9927-522bfc6048c3', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', '73ecfc31-bde5-46cd-9a59-37e65c7db8fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fdb18a17-cfd0-4655-ab7d-0d7cce1d15fe', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9399aa3e-6cf8-4231-af16-702db2c009fb', NULL, NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '24ea1e85-129a-4d56-aa69-1e9ac58d0104', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58de68e5-e08d-4d8f-967d-c1c227316354', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, 'fc14ee74-f82a-4d8a-8db6-5b9627563922', 'd009618e-5194-4703-8008-54da927c3bd2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d059766-c0e4-435d-a251-1b827134bd52', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'fc14ee74-f82a-4d8a-8db6-5b9627563922', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc647b09-d006-4c52-b2d7-b64467c8bae8', NULL, 'fc14ee74-f82a-4d8a-8db6-5b9627563922', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'fc14ee74-f82a-4d8a-8db6-5b9627563922', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eec720f5-90b0-43bb-8f79-1062af93abc8', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'e8400d5e-ab6d-41d3-86a9-a6df2113adbc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c98e26d6-687b-4505-b1a9-eb4db50bcd13', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, 'fc14ee74-f82a-4d8a-8db6-5b9627563922', 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b77756c-20bd-462a-a7d7-998655ef2f92', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, '8dca2daf-408f-4e45-a777-a3f61b543450', 'f7e8a61e-ef07-4720-ab46-63ce8570ffdf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7ffb164-484c-40e7-8141-886a24f8934b', 'f50adac4-8248-4179-bfaf-26f03d96d13b', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c4bb132-9dff-4763-8803-899ad709bf11', NULL, NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'f28aa0d4-1a57-4301-870f-fb7c78869cd6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e36605dd-d609-4d4f-b448-841341739401', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, 'b31f0400-18ec-4b70-9578-0f887d35021c', '61147c69-ed43-4813-978e-5aa7576dd2bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0305f95d-b8ed-40ac-99ce-68b9c67974ee', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'b31f0400-18ec-4b70-9578-0f887d35021c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b2f709c-9a55-4efc-8056-1ad83ab94a88', NULL, 'b31f0400-18ec-4b70-9578-0f887d35021c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'b31f0400-18ec-4b70-9578-0f887d35021c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d5b28a9-ea0c-4d53-bc57-d9f8184052a7', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', '2215d918-b008-4253-a36e-b23e33191470', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('886f8887-bde5-41ff-983f-3fb04fbacbcd', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, 'b31f0400-18ec-4b70-9578-0f887d35021c', 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7cc03961-b7e0-4913-b712-f83cb894cceb', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, '81b01454-08e4-48ab-9879-4b7ea82a0531', '5e496a56-e275-4ba7-8c07-c171a6b44e72', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe3b7213-46a1-47ae-9d41-9db63392278f', 'f4e3fd05-43f8-49cb-a167-91a91640a117', NULL, 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', '81b01454-08e4-48ab-9879-4b7ea82a0531', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e3ba24e-6f43-438a-8f31-0db39a755cf2', NULL, NULL, 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', '797d0a10-4bec-4f32-b746-671b6a46bbef', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f22d38d3-b1a1-4fef-a62f-cbf643453b00', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, '6954b103-16e1-44f0-9aec-cf5cad98ff6c', '0ff11824-6467-46b8-8f52-45dd6fa89041', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0ed567a-9493-4589-b1f5-cd17e66242c3', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '6954b103-16e1-44f0-9aec-cf5cad98ff6c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e8d580e-5622-42b4-91e2-8b4799a7a740', NULL, '6954b103-16e1-44f0-9aec-cf5cad98ff6c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '6954b103-16e1-44f0-9aec-cf5cad98ff6c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13d21634-24ab-435c-8b65-ef24a3a9f2e7', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', '32698556-c076-47c6-8d84-d311090cabc0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04b59327-7fd1-4fb3-b601-658bf9292073', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, '6954b103-16e1-44f0-9aec-cf5cad98ff6c', 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('437b7d87-f236-498e-83ee-3d367f75a843', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, 'df81248e-911b-4793-9913-0538a12ea820', '481c04fb-38e2-49a5-a9a8-065ac59cd53c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f5c78cb-615b-45ff-82b3-2bfd574ef6d9', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'df81248e-911b-4793-9913-0538a12ea820', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('330b339c-6d05-48d8-b8ef-068b4d85ee66', NULL, NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d9f58ea-308a-4d00-9b6e-469dbb40f6fe', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', '15a81a95-9ddc-497b-8835-6a2b5b74fd89', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94892f5c-8a9e-4d17-a611-0a27ec035a7d', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d87d9909-a42e-4d27-ba62-024d3b050c49', NULL, '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45915ead-d4ba-4099-925d-12ef6bba6075', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, '408c77c7-1c50-46c2-a0e3-27046473e0a5', 'e2b730f8-2419-4709-ac41-2965913182e6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce3524e6-45e6-48bc-8333-216d410a43fe', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, '32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', '408c77c7-1c50-46c2-a0e3-27046473e0a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70730176-5f3c-44be-bcec-bc9154ac3ea8', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, 'c25516ad-8358-49e5-ae55-ccecc2fc9b3b', '62bd04a2-1f7d-4b0f-b060-93a972f0b7d8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('217ded01-7d2a-48a2-8044-3cecec6fd8de', '7e11b785-e756-49de-a3b3-2f001ea79993', NULL, '408c77c7-1c50-46c2-a0e3-27046473e0a5', 'c25516ad-8358-49e5-ae55-ccecc2fc9b3b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7875270a-3185-4840-9339-70ecd2d6140f', NULL, NULL, '408c77c7-1c50-46c2-a0e3-27046473e0a5', '8aa7fbed-7490-4f2e-b22e-5adfe5d98304', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b7bb42e-cbe3-4e85-a8a0-231f88bbee15', 'd616957a-e628-498e-b230-be25244d4e30', NULL, 'e8750395-3b20-426a-ba1a-e46eaf62ef86', '14a306eb-e654-4717-a540-f25462a9f980', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20c13b70-d523-4321-a4a8-be65d577e1fb', 'd616957a-e628-498e-b230-be25244d4e30', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e8750395-3b20-426a-ba1a-e46eaf62ef86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d30485b-e6b9-4939-a682-cf83279aacce', NULL, 'e8750395-3b20-426a-ba1a-e46eaf62ef86', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e8750395-3b20-426a-ba1a-e46eaf62ef86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c5aa860-94c2-45c5-b8c8-787a44dfeff3', 'd616957a-e628-498e-b230-be25244d4e30', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '1be781cd-2fa0-43a3-a2a1-76b2cf867603', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55bb7c6a-3753-4ea3-a180-65999952750a', 'd616957a-e628-498e-b230-be25244d4e30', NULL, 'e8750395-3b20-426a-ba1a-e46eaf62ef86', 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('83576613-9469-49c5-9ad0-b13783a80d16', 'd616957a-e628-498e-b230-be25244d4e30', NULL, '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', '0d61a1e6-778f-4c91-85aa-b5b26373d810', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b57fb184-4f51-471b-ac16-962d40714b46', 'd616957a-e628-498e-b230-be25244d4e30', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca9a0077-4fc4-46bc-acf2-80b13ba230a3', NULL, NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3105eff1-9b11-4aaf-9ef8-6ec6b8449700', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', '064424c2-9d11-4949-a987-e2696fcda1a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c62bd9d-d245-4fd4-89c0-08939fbb6fb5', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51b9cae6-4f17-4f7f-aa2b-0c4630b2f812', NULL, 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('11e4ddc8-2c3a-4451-a1d4-3a3f86707ffe', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '7fa6cc60-4bb9-418b-be4f-4aa72524e214', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3766300-84da-47ab-8dad-39d57ddb4366', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, 'c0534e7d-6f73-42e5-aff8-ff9d47e3186d', 'a48c6e6e-77e8-481a-bca0-916150b6fd20', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a21e5b82-b77b-4938-bc5b-706b1d51e52c', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, '5b97fea3-07be-443f-87f4-9a0764e31215', 'dae319d6-1e84-43c2-ac4f-a2baa73ecfe8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0e05bb0-dea6-4507-9904-7b5e113947f2', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a750ca0-408d-4d56-9e7d-41a5879c3c12', NULL, NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', 'dcbaa9d7-ccab-4d93-b93b-47495769872b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eff962c3-0044-4774-b344-c597586d727d', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '6a826b99-66d3-4bca-8462-e0957149d607', 'b58e78f4-cae9-410a-b5b2-6d38e4e1b483', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e0ae133-ebe6-4eb2-86fc-e07792388b0c', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '6a826b99-66d3-4bca-8462-e0957149d607', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9148e225-1879-4cea-97be-319592b174cd', NULL, '6a826b99-66d3-4bca-8462-e0957149d607', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '6a826b99-66d3-4bca-8462-e0957149d607', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a3de3b2-dc0c-4918-b104-443a6bd87410', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'e0c07495-5fd0-4d25-9713-4b11b1f31557', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('30756632-a08f-4902-a11c-4abcfbbf0b70', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '6a826b99-66d3-4bca-8462-e0957149d607', '3f0dc306-e3b9-4324-a05d-1de298db1039', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd41ea29-7a72-4aa0-a3f5-e25bd276281d', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', '294cebc1-7d37-43de-a2c3-ae529676dfd6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c75a4a06-45ba-4278-9abc-a7fa4a9dce0b', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c91086fe-3d8b-4cb8-8a60-845bfb2672f0', NULL, NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '5906a152-7e12-43de-b12c-223ad1cdbdbe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0c3e70f-2db3-47cf-8c9d-03876c6d33aa', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, '494974f4-1809-4ffa-82a8-96b26a88b483', '5c468a9b-01c0-4847-987d-5f5469d505fe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('baf94aae-4e81-44e6-945c-7578ea06788b', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '494974f4-1809-4ffa-82a8-96b26a88b483', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b6531f4-f962-4594-a80f-5430fcac1f4c', NULL, '494974f4-1809-4ffa-82a8-96b26a88b483', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '494974f4-1809-4ffa-82a8-96b26a88b483', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('975eef42-9d17-4fe0-9f6f-859b93ca0376', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', '65fa26a2-e501-442b-9efe-30c756b4eae9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79148879-4d14-419a-bd2b-f27a3773d6bb', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, '494974f4-1809-4ffa-82a8-96b26a88b483', 'b0fbb802-35bf-4971-92a3-225bd6433052', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81137d9f-996a-4adc-8611-28895cf59a06', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, '64b677c5-c58c-4a84-95d4-69d005c4a682', '75c391b5-1092-4689-839d-ace89825807f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0faa404-ab5a-4d15-bb51-989bd8e2126b', '55dd7d96-751e-43b2-afd8-4803a55b422a', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', '64b677c5-c58c-4a84-95d4-69d005c4a682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d5cba60-bf13-434c-8991-9e811ae44c33', NULL, NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', 'dd986aa4-5f80-47e8-8346-a5b24cf6f91a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5437c86-9388-4bc7-b1d9-777ec5b35ba8', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, 'e34d142d-dacb-495b-a937-87ee4e1c09fa', '773e4625-4c58-4a10-affe-9ecdb6582a51', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42967cc7-25ff-4986-98f8-f3932663036a', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e34d142d-dacb-495b-a937-87ee4e1c09fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ef219e2-c751-4791-a1c6-1266285be3b9', NULL, 'e34d142d-dacb-495b-a937-87ee4e1c09fa', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e34d142d-dacb-495b-a937-87ee4e1c09fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('63c67bc5-c31d-4dd4-86a9-4aa7177b0e2c', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', 'bd1892c4-625d-4282-966e-c852b72bf84b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5da3adab-5ca8-4885-a0d2-fbfd08d272e0', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, 'e34d142d-dacb-495b-a937-87ee4e1c09fa', 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1fd70324-7dce-4278-bbb3-f922f451cf04', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, '6b61b520-c228-407a-9b99-47031cd7352d', '1774b4f2-0887-4a09-bf87-ada95aa91f0e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67e302a7-d43c-4c4c-97e4-2e8042df5062', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', NULL, 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', '6b61b520-c228-407a-9b99-47031cd7352d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33a33fa7-997a-4367-98e1-31143ab8ffaa', NULL, NULL, 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', '8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8df90d21-52f4-4b30-be4c-abd4ca0b2634', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, '96df783e-4e02-430d-bfc2-ec05e51c17fa', 'feed202d-52de-4e5a-a607-3eb9bf2003d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('887ac9b7-2225-4833-800e-a99b1ab0f8b5', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '96df783e-4e02-430d-bfc2-ec05e51c17fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d300e44-9da8-400a-9ed5-9ee76f5f8b2a', NULL, '96df783e-4e02-430d-bfc2-ec05e51c17fa', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '96df783e-4e02-430d-bfc2-ec05e51c17fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b2c6c94-6ed2-4f60-b67d-44f5744f58a6', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', 'e92adbd8-4e34-4953-81f9-ddbc53c01718', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1d155530-23a2-40a9-b3b3-d160adb0eb5e', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, '96df783e-4e02-430d-bfc2-ec05e51c17fa', '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7366c2a-93a6-441a-9c99-5781f0bcff95', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, 'd0d6036a-4fe9-4823-943d-bc784037a589', '438b8588-ce9f-4d79-9596-886a7563dbb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91470581-d848-44bb-b90f-b7638f0160a0', '351d423b-c277-4300-afcd-7cdc9942f48b', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', 'd0d6036a-4fe9-4823-943d-bc784037a589', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0cdecfa-88d9-4739-baa1-bb8b696c5623', NULL, NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '530d8d03-1827-434d-ae3a-2569d140fcf4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c4a047d-78dc-4742-a049-1f71eca1f87f', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', '3c754d92-32d8-489f-b18d-ddc6795b8178', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('43257fab-cc3f-4ed9-a776-3cbe69e16c67', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8da160d1-6f03-45d1-8a42-510f5a5612d1', NULL, 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('63e2f0f2-4098-4e67-9b7d-4c38fbd590d6', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', 'a5f0f6a9-187f-4b93-b8d6-e536a8494be7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea267276-d4ab-49b8-ac1a-f83297526e5e', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, 'ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0380a4ec-af04-47f1-87e4-d00a2ef72669', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, '9f4f63b2-6439-4c9c-ae86-305aca317339', 'ba846e43-deb5-4d37-83f2-e783ea17de2d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d6d0378-3c68-4ddb-9493-97f1445c6748', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '9f4f63b2-6439-4c9c-ae86-305aca317339', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7247c7cf-397d-414b-afc0-b708749f6838', NULL, NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '80b1933f-300a-43d7-8e3f-5ada1fb7c9be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('abfd6792-173a-4e6c-9f86-23fa7e4cc3de', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, '1dcac355-585b-439f-ac9b-52566674c34d', 'c0a43132-204a-4905-8d81-e172188b51cf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26eba482-d646-42f2-90f4-1733611cbe57', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1dcac355-585b-439f-ac9b-52566674c34d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f9a3864-cea8-4557-9ac4-e2d80c4ac1ba', NULL, '1dcac355-585b-439f-ac9b-52566674c34d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1dcac355-585b-439f-ac9b-52566674c34d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c233012-6330-4359-bc0f-8bf779d314d6', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', 'fba0b7cb-bafe-4308-b95b-467050031247', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57fe5952-8e7f-4e3e-9847-11b66165700c', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, '1dcac355-585b-439f-ac9b-52566674c34d', 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cef0b088-0682-42fe-a144-e28e3f7cb01e', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', 'eba62494-ced5-47fd-b8be-2ca0eea0c71f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1be01c8c-401a-4c00-ad85-612aa14f0af9', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b982b0f-712c-43ca-9be3-e0d11c00144b', NULL, NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', '8239420e-41f1-40b0-b344-aa94a71aa03c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb934fb0-d2d3-44b7-ac3c-eb3a531165f9', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '2e4968dd-1b34-4509-ae49-26525a1b61e1', '2dce17a3-19c6-4199-97ce-7be6c2b8ae77', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7932fdf-70ae-473e-85ce-b18453d800c0', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '2e4968dd-1b34-4509-ae49-26525a1b61e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5aab8c2b-f947-4f95-87c5-e4c6ea7dc3c4', NULL, '2e4968dd-1b34-4509-ae49-26525a1b61e1', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '2e4968dd-1b34-4509-ae49-26525a1b61e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2bbaa1c-ea36-43f5-b277-256513852de8', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '79f6ac07-1368-42f4-a1ae-a9a357a8426e', '53cabb17-6406-415c-9d81-299a473e6241', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ce3e2b8-6d03-490e-84c1-79bca8042951', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '2e4968dd-1b34-4509-ae49-26525a1b61e1', '79f6ac07-1368-42f4-a1ae-a9a357a8426e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('11a413f0-9307-4883-96a8-3bc158632b4f', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '79f6ac07-1368-42f4-a1ae-a9a357a8426e', '9e239542-d709-4bd3-9286-29c94c37908a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07c0183e-b11e-41f9-b718-850a5e11fdb6', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, 'c0087469-c932-4639-9f7c-577e275791df', '4c5423db-72ec-4af8-9f2c-4763304185d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('083de981-37b7-4634-aaec-03446481dcb5', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'c0087469-c932-4639-9f7c-577e275791df', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('544964ed-e703-42a7-9b62-2649535c881a', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '9e239542-d709-4bd3-9286-29c94c37908a', 'c0087469-c932-4639-9f7c-577e275791df', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2ff4159-328a-4daf-ac3a-35b60a9f7dd1', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, 'c0087469-c932-4639-9f7c-577e275791df', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5df0aef-0c2d-4ed2-b5d1-9e5cf98ba7b9', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, 'c0087469-c932-4639-9f7c-577e275791df', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36cffe93-13e4-45bd-8f54-efbbd32ee3c2', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, 'c0087469-c932-4639-9f7c-577e275791df', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('06b37d46-5c1b-4144-a7e8-2f861d97d192', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '9e239542-d709-4bd3-9286-29c94c37908a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cbf8d2e6-20e2-431d-80d9-ad4d6b646394', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '2e4968dd-1b34-4509-ae49-26525a1b61e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb40fac7-b5a9-44e9-910a-40fe2463df1b', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', '807e60d2-e206-4fcb-8411-e9c13a305095', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('441ff3c8-1325-4a7f-a0a1-8fccb3d7cf6e', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4159e5f4-c6cc-44a9-8262-7ded90da767b', NULL, '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f6317ec-42dd-4404-91ce-6565c55f8f33', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, 'b488d259-9ffa-47ea-9494-722a4f97a8c9', '98c7cb10-8b2d-4478-8f7d-4376d5d603b6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('30d0c401-ecc4-43f5-8e95-33e9cf2d8715', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', 'b488d259-9ffa-47ea-9494-722a4f97a8c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e14b1fe-ad2d-4db3-9c55-9e61cebc7cce', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, 'b488d259-9ffa-47ea-9494-722a4f97a8c9', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c914c852-ea4f-4d2c-9c78-05d11a65caf3', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', '85269400-918a-46d9-870e-289da89b0bb2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0f5cd3c-00e6-475c-86c2-ad89ab12209e', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5049dc2d-b231-4d60-8040-36d77df87a9c', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b91b09b-8052-4893-94b1-62a8552b8543', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b349e0c7-af72-462a-8672-993d498db00a', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('786d5157-4a90-473e-bdd9-a98dd11f4a05', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac1219be-2da7-4645-b57c-2d3080548e66', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc29ced5-cfb7-4ef4-a9ca-b2eab5ded8fa', NULL, NULL, 'b488d259-9ffa-47ea-9494-722a4f97a8c9', '6a5d3ea6-f442-445e-8680-d4c9525bf56f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f39a4112-b7d2-4fe9-8f78-b3f890d81026', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '07e54dc9-9b64-464c-9894-08d88a01cfb6', 'b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6b62aa0-0c82-4c81-950d-b64d185f7478', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '07e54dc9-9b64-464c-9894-08d88a01cfb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e651f22-f055-4545-b102-d38c1f448d4e', NULL, '07e54dc9-9b64-464c-9894-08d88a01cfb6', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '07e54dc9-9b64-464c-9894-08d88a01cfb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0353fff-c263-4286-ae9b-412059f31ab1', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '63952462-0544-485e-8e6f-a344be47cc97', '81e46ebd-311d-47b1-9c7d-135922dc0511', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b48a6315-c31e-4749-8f5c-26143a4abe5c', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '07e54dc9-9b64-464c-9894-08d88a01cfb6', '63952462-0544-485e-8e6f-a344be47cc97', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ad1165a-4ed0-4e7e-b800-6655548a7df3', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '63952462-0544-485e-8e6f-a344be47cc97', '03613dc7-4ec1-430b-a213-291b587700d5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('824b3cdd-a54d-48c8-812a-07147cf5ae10', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '06736882-96b1-4e48-bcb0-b897a5929f8d', 'af8d1591-065a-4707-ae5e-b0703df69be9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13da6718-75bb-4b06-be4b-276f535781e6', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '06736882-96b1-4e48-bcb0-b897a5929f8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4af87644-e213-44f4-bcbb-9587571f2892', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '03613dc7-4ec1-430b-a213-291b587700d5', '06736882-96b1-4e48-bcb0-b897a5929f8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd355002-53f7-4f97-bc4c-6574fc13b9d0', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '06736882-96b1-4e48-bcb0-b897a5929f8d', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da757da2-36ef-49c3-ae20-0c7981f5f87f', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '06736882-96b1-4e48-bcb0-b897a5929f8d', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c10ae518-157e-4079-9484-ee9163afefbc', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '06736882-96b1-4e48-bcb0-b897a5929f8d', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8bfcad6a-1b29-48dc-a3bd-4ca9bb584262', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '03613dc7-4ec1-430b-a213-291b587700d5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d177eb0f-a6a9-4856-8a00-77b68b3e63a5', 'ef085ca0-2cc6-4497-b739-1668e6acb687', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '07e54dc9-9b64-464c-9894-08d88a01cfb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cde087cb-f190-435a-a1fb-587f90c3bb8d', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '7a2bfdae-7219-4781-9da1-ed34a2b61868', '4d646f0b-f068-4fd3-b1b1-561c70ab7503', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46187d9d-84b2-4989-b337-40dbb67d0715', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '7a2bfdae-7219-4781-9da1-ed34a2b61868', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d7183c5-d888-48e7-828e-419935ee2e66', NULL, '7a2bfdae-7219-4781-9da1-ed34a2b61868', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '7a2bfdae-7219-4781-9da1-ed34a2b61868', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a3a8d620-02fd-4813-a076-e9a99c1b376e', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '788ffc41-ac92-4dfe-b5ac-0e18e2249262', '5e4fcb21-3239-4060-87c1-c0a31eaf98ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9869761-9909-4169-acc3-21192fa968fd', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '7a2bfdae-7219-4781-9da1-ed34a2b61868', '788ffc41-ac92-4dfe-b5ac-0e18e2249262', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e69e99c-d8b7-44f8-9e74-2f89f736e0fa', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '788ffc41-ac92-4dfe-b5ac-0e18e2249262', '27f136ee-b3fa-4aa7-8806-45e856c2c56c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d617dcb5-c2db-4606-8766-a0a075511890', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'd465dfbe-dfda-49e6-9c32-b2624e20d4a3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd1a0b6f-bb58-4503-ad5d-c5639589ebc0', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0bc107ea-53b5-4d55-88d1-4dacdddb8f1e', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '27f136ee-b3fa-4aa7-8806-45e856c2c56c', '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2dda6f26-5768-4780-8c43-6d4316fb875f', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49a8fbe8-2197-454f-a0cb-33d738da6ced', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a28c0d3a-a654-41d5-9df8-bec81a27f1bf', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '27f136ee-b3fa-4aa7-8806-45e856c2c56c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf4d3d0e-c154-4f07-85a0-e4a909257267', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '7a2bfdae-7219-4781-9da1-ed34a2b61868', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e14dc85-cd8f-4d34-9df1-8aeb109830da', NULL, NULL, '788ffc41-ac92-4dfe-b5ac-0e18e2249262', '7151fd4d-3caa-4aed-af0c-ecb089b128fa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d8009033-4966-4bd2-9cc4-0695b5661079', '9702bd74-e7d9-440a-a210-64905274c259', NULL, 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', '68780154-c302-414c-8608-a0c7e59fb2be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f388454c-3d90-4736-a71d-d656ec52fc00', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38ce269f-21e9-4e4e-bab3-e1cc70f3a9b5', NULL, 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7df3e83d-3d3f-4ac5-9e53-fa3e86f8e7b4', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '59461651-6e8b-4e92-a992-c6361933f78a', '0e8a6c6e-b802-41be-a668-ab192714f9f2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c78a66d5-ee28-48bd-a2ae-f99978fd9f95', '9702bd74-e7d9-440a-a210-64905274c259', NULL, 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', '59461651-6e8b-4e92-a992-c6361933f78a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d3fcdf7-1caa-4e99-8b39-bc07051a7c9e', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '59461651-6e8b-4e92-a992-c6361933f78a', '00922fe9-7f32-4a66-9e9e-959719b12c5a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60538a96-6f8c-492a-a5cd-5bd8df07661b', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', '30d3a5ab-6588-4c16-93cc-1fd96894b613', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d3324791-6356-49d1-9eb2-bb67ca2bbc2e', '9702bd74-e7d9-440a-a210-64905274c259', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1f7ff91-8dec-4ac4-bd15-59e603bc9367', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '00922fe9-7f32-4a66-9e9e-959719b12c5a', '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e2f2a88-56bc-4ce8-ba48-2bdfadae3268', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b4c9b93-fa97-41ad-92c2-8ab821409d1e', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95083a82-a2b5-406e-8447-0c4c6d53de84', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '00922fe9-7f32-4a66-9e9e-959719b12c5a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a7a975ac-f181-4d01-90c9-a09293b8fa9d', '9702bd74-e7d9-440a-a210-64905274c259', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c2f6fd9-27fa-431c-a50c-24fae5fbd6fc', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'cee3b153-5528-4547-abf6-0abfb951c3e5', 'cce1f971-2aad-4e93-9ed3-811170c655a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96be4765-12d7-4721-b854-fb5f051f187f', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'cee3b153-5528-4547-abf6-0abfb951c3e5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0100a93d-e052-4d71-921f-2bccbec0562f', NULL, 'cee3b153-5528-4547-abf6-0abfb951c3e5', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'cee3b153-5528-4547-abf6-0abfb951c3e5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('289af8f5-c413-4606-95ef-a3966c46262e', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'c7155b13-a749-4856-9832-3b2c3f652e08', 'c34bc0e5-fc79-4895-bab7-638b2f405bbd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('279890a3-6336-4018-9201-7a4296e4a465', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'cee3b153-5528-4547-abf6-0abfb951c3e5', 'c7155b13-a749-4856-9832-3b2c3f652e08', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2600ae32-b183-435a-9df4-c44acc8722c8', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'c7155b13-a749-4856-9832-3b2c3f652e08', '647db241-3be3-4ba7-b34b-d971ad566a37', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b4b3d4b8-c834-4f10-8313-7c082dae819f', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', 'be036f84-17aa-45d2-bc17-b58a8db1f33a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4940f785-e138-4f93-90e4-a63a6187cf25', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5b38e06-31a9-4e8a-ac1c-157a258d2025', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, '647db241-3be3-4ba7-b34b-d971ad566a37', 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c16f19b-15a5-49d1-93c9-af328b7dfb50', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ddd83fe-14ba-4e94-a57c-76ab6d3c1920', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('145df43c-bd23-4dd6-859f-8adb578375e5', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '647db241-3be3-4ba7-b34b-d971ad566a37', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('352a06a8-b6b8-4664-a907-210d48f0dfd1', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'cee3b153-5528-4547-abf6-0abfb951c3e5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65e7b617-3b6f-47ba-a3d5-f66d96f4d98b', NULL, NULL, 'c7155b13-a749-4856-9832-3b2c3f652e08', '9eb6492e-6946-4868-be5c-aec6d3ba92cf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea521367-4b36-4623-9e3b-6faf768751b6', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '1f222590-d082-4b39-baf4-883dc9a46409', '50163cb7-d90a-4c8f-9373-18ac3d6c4768', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b3389841-2fec-4e79-9f45-aca623474bfb', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1f222590-d082-4b39-baf4-883dc9a46409', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('656987d6-c727-41cc-bcb8-ea92426cddf4', NULL, '1f222590-d082-4b39-baf4-883dc9a46409', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1f222590-d082-4b39-baf4-883dc9a46409', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('131adfd0-123b-44f3-9d71-4ccd5549419a', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', 'ffa29a16-42e7-4ebe-b9f5-f167330d9140', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6123fbfc-77ba-4255-a3f0-6fce0ff9cf6b', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '1f222590-d082-4b39-baf4-883dc9a46409', 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99422be9-86a4-4d42-8c6a-ba42135ecf57', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', '3edbc6f6-bd84-4390-970d-5e344664f86e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9adc3d62-7165-46af-a2f2-5c80f8866ee5', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', '49150712-ea8a-4b30-b22e-e9641363e264', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9fd7f667-770a-4348-a628-61640a5ccd56', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b85488a-abd5-49da-8ce0-87bbe52773bb', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '3edbc6f6-bd84-4390-970d-5e344664f86e', 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('00672b57-05bd-45e2-ab65-523f72ba77e4', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('187da55b-2fac-48fc-8e7b-06c96dc51b36', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('47c4ea06-d112-4bc9-addf-4b4a7b3ec197', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26877494-33c2-4a90-8119-bbad662b297b', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '3edbc6f6-bd84-4390-970d-5e344664f86e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d47c44c5-62d6-4f60-bd35-6ea9fe11f3f5', '262a75f6-0c99-4101-8301-0cb95f7cb81e', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '1f222590-d082-4b39-baf4-883dc9a46409', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d9b6859-7477-4bbc-8f11-a9ad0878f6d4', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '0458c878-07f7-48cc-8cde-866110a379b2', 'cbbab505-7a2e-4cf4-9f53-607d9bb5eee9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7915bb74-3597-426e-9a05-bb8f945ad7d1', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0458c878-07f7-48cc-8cde-866110a379b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b97b693-b525-49ad-bc06-e562e13573d7', NULL, '0458c878-07f7-48cc-8cde-866110a379b2', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0458c878-07f7-48cc-8cde-866110a379b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e39c3a7a-3b62-455c-9a96-024c736f93eb', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '9843689f-18c7-472f-833c-262d2348ae61', '49bc5185-6d3b-469c-a604-88bbda2e4322', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e11c56ec-856a-46b2-ac1d-0746d6f511ea', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '0458c878-07f7-48cc-8cde-866110a379b2', '9843689f-18c7-472f-833c-262d2348ae61', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('32c40d56-59a2-45fd-b647-950e939389ff', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '9843689f-18c7-472f-833c-262d2348ae61', '133d043e-f9e7-462d-9519-1ae05a47a1be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04824e07-5d0a-44df-af3b-8a25802fe288', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, 'ac14c959-2f96-4fbd-9970-87a2b07dff95', '7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4498be00-5303-4607-9ce7-87b1df6ae8d0', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', 'ac14c959-2f96-4fbd-9970-87a2b07dff95', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ab9311e-ca75-444f-b282-e744267f6cd3', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, '133d043e-f9e7-462d-9519-1ae05a47a1be', 'ac14c959-2f96-4fbd-9970-87a2b07dff95', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e462082-d972-4b96-8c31-33d07c3355b1', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, 'ac14c959-2f96-4fbd-9970-87a2b07dff95', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36fca910-37a9-4cb5-9287-80cba7fed641', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, 'ac14c959-2f96-4fbd-9970-87a2b07dff95', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e39a3cf3-8560-4231-9b88-7e260eb07ecf', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '133d043e-f9e7-462d-9519-1ae05a47a1be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65dfa65b-ea63-42b7-aa4c-e77148284235', '6263942d-84d3-40de-b460-04c52e2a7f36', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '0458c878-07f7-48cc-8cde-866110a379b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9aeb47a4-88f9-4c25-a4bd-19f21e09c98e', NULL, NULL, '9843689f-18c7-472f-833c-262d2348ae61', 'b74a805f-9138-4dbd-abe3-5641fd1ea9e8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40442094-1a61-4be5-8888-7f1a70ee5087', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '3fee107a-c77b-45f0-bb75-b8c48980dd8a', '75e9b840-5f72-4e2b-9698-80b49512e6dd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5beca2c2-dfdf-42c6-86bb-91b2391d6799', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '3fee107a-c77b-45f0-bb75-b8c48980dd8a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a6f82830-aa20-49ca-88b5-3025a9bd8f46', NULL, '3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '3fee107a-c77b-45f0-bb75-b8c48980dd8a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3561015-e031-49ee-ab18-6af24bec5543', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '5743e552-306b-4aa1-acf3-23d6d1ff26c2', '90044e14-3a87-4791-b11d-e4ae2f6d845c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d81ff8ac-d109-4df2-b3f2-4cdcaec71a4c', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '3fee107a-c77b-45f0-bb75-b8c48980dd8a', '5743e552-306b-4aa1-acf3-23d6d1ff26c2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4cd81cdf-6151-47df-bd24-047550147e5c', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '5743e552-306b-4aa1-acf3-23d6d1ff26c2', '003086d1-689f-41da-9ea2-e61c50dc6c10', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbe3d343-f2a1-41f4-b670-3736a19fc580', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, 'face87b5-b7b2-4525-b615-9c917e6f11c9', 'b6a24ed9-c3ab-436f-b2e7-17af91dc29d2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bce4e726-f2d5-4e64-b5ca-8c1c90963d0c', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'face87b5-b7b2-4525-b615-9c917e6f11c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9fea06a-dc05-4989-ba33-752444800718', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '003086d1-689f-41da-9ea2-e61c50dc6c10', 'face87b5-b7b2-4525-b615-9c917e6f11c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('61720382-f46a-422c-b7da-ae4d46941f4b', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, 'face87b5-b7b2-4525-b615-9c917e6f11c9', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dec7c9b0-4202-4f6b-bd8a-34aa947e8348', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, 'face87b5-b7b2-4525-b615-9c917e6f11c9', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dac8ac41-1636-4037-adff-d59766365d24', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, 'face87b5-b7b2-4525-b615-9c917e6f11c9', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2db2c87d-abcd-45e4-b1ef-75c0e8545fe6', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '003086d1-689f-41da-9ea2-e61c50dc6c10', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6b144c4-26cd-4438-83d4-14d9f00e1e29', 'f1d2c18d-4cb0-481e-a948-934324a74f61', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '3fee107a-c77b-45f0-bb75-b8c48980dd8a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('156b6f2a-77ab-4bdb-bde5-0d043f38e69d', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'cff56822-3173-4489-ba4e-eeb10924cefd', '50d5489c-914e-4432-9a0a-bb3607a0f4b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e24d8317-fef8-42ff-86fe-ab9ffc46d96a', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'cff56822-3173-4489-ba4e-eeb10924cefd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93b617bf-c75a-4655-914f-23ab0367d9f7', NULL, 'cff56822-3173-4489-ba4e-eeb10924cefd', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'cff56822-3173-4489-ba4e-eeb10924cefd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f17bd23-c283-43e5-86c7-0a30466ccb85', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', 'f0661cbd-56bc-4130-8b44-528cf5e693e2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1ab2132-46c5-429d-aefd-2517a77d5c49', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'cff56822-3173-4489-ba4e-eeb10924cefd', 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5f07530f-8d79-4a6b-b08a-47dd98c0cb67', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', 'ece49845-4b04-434a-a12e-2e5ea1d2c241', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a9cc803-22c2-4661-a417-1f0fa7b6a063', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '3412d5e9-9e1e-470b-af39-015652349d4f', '8f5d8cbe-1763-492f-b918-7e8f197ae3d8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b3b358e5-53e4-471f-8c66-b779be21fc25', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', '3412d5e9-9e1e-470b-af39-015652349d4f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ecd32703-f1c0-49ee-8b80-e0020731ca03', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'ece49845-4b04-434a-a12e-2e5ea1d2c241', '3412d5e9-9e1e-470b-af39-015652349d4f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('346012c6-67b0-4c51-9203-e5347640741e', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '3412d5e9-9e1e-470b-af39-015652349d4f', '85d8e49d-9148-4431-a020-053fd4376574', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9dcc184-4464-4937-b596-2e2b1d025912', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '3412d5e9-9e1e-470b-af39-015652349d4f', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9f26cd9-51ab-4b27-b41f-bd6c5e4822d4', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '3412d5e9-9e1e-470b-af39-015652349d4f', '6b61b520-c228-407a-9b99-47031cd7352d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('48d02cf0-5ea6-464f-b751-17fa64a5a54f', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, 'ad60bd89-f1c5-4ca2-b880-5bbe60da3969', 'ece49845-4b04-434a-a12e-2e5ea1d2c241', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('90df33ed-fbe6-41b0-8adb-8eca368270c8', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'cff56822-3173-4489-ba4e-eeb10924cefd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('47897f33-fa65-46ff-9b84-fab8b9ca6140', NULL, NULL, 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', '5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8b83a92-de14-4824-9e56-a2f75e26175a', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '692d194a-ce6c-4932-9a16-08fc5b853bbe', '7b4e7960-7014-4a64-a845-19cbb2ca301a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb32de3b-5e91-4453-ac95-6c5ad3a5fefc', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '692d194a-ce6c-4932-9a16-08fc5b853bbe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0925302c-cfb9-49e9-811a-9f80088135b8', NULL, '692d194a-ce6c-4932-9a16-08fc5b853bbe', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '692d194a-ce6c-4932-9a16-08fc5b853bbe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b02eb9f-9775-4d12-9f26-aad736120c75', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', '89664515-a29d-4f80-8446-47aaf8cf22fc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0331a228-efcb-47aa-9f91-6f1c0e08ba94', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '692d194a-ce6c-4932-9a16-08fc5b853bbe', 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a25fc1af-0430-4f26-aa15-df82c54dd5ed', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49c8a64b-4fe9-408c-b352-f61954142ef0', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', 'c1ee5c53-b7a0-4e76-9d44-d32b96333bb2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('685955b5-30c0-4edf-b495-5e3b179f9391', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '4309a7bf-0556-40d0-872d-dcbb13273c62', '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d37f2149-f0d7-403c-9409-86dc2245a49b', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5ba2ae3-4c1c-4834-97a5-aa04f6291d7d', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', '5034d61c-e9dd-4b48-8dc8-b9279e015494', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f2183b1e-0b22-49bf-9ab4-10b51c82518e', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5716eb6b-c3f2-4098-a223-cbf4f19285f8', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8466e839-ab3f-4fa0-950a-554baf9e5bf2', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54339656-ecfd-44e8-b518-6fcf6b50b324', '510f22fa-273b-4c27-a99c-0ced2c8ac722', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '692d194a-ce6c-4932-9a16-08fc5b853bbe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcfd39fd-2f6b-443f-93e8-ab6aa6670a44', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '25aea726-1671-41d0-9264-5bb7c4972697', 'df00b91d-921f-4479-b9e4-e1732444508a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('326c8e62-f6e1-429f-9fad-eff95064a322', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '25aea726-1671-41d0-9264-5bb7c4972697', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51a9b8eb-0f5a-4e29-882e-48075d3e4c12', NULL, '25aea726-1671-41d0-9264-5bb7c4972697', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '25aea726-1671-41d0-9264-5bb7c4972697', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be409892-35e7-467a-89b3-90f719b8380d', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', '5645f188-49da-4e4f-a826-6e71239446a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('939a2967-48b8-4b98-820c-41d264ddb1a0', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '25aea726-1671-41d0-9264-5bb7c4972697', '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bda1352e-6a31-498c-b6e2-c671ec9431ce', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99990e8e-6ec6-4bc1-ab91-b7feac5d7a11', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'c15e0b81-002e-480e-93f8-93b06f87bbff', '89111db0-bdec-4e14-b05a-a4b92b65299a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e4e435d-b2f2-4ea6-843b-dfc4503e744e', '92b842af-05fc-405d-b0db-7a667228c221', NULL, '7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', 'c15e0b81-002e-480e-93f8-93b06f87bbff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cb7391d1-af88-441d-8a24-df26ccb5525d', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', 'c15e0b81-002e-480e-93f8-93b06f87bbff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6dac2c4-1fdb-43e7-9ef8-b09940bf893e', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'c15e0b81-002e-480e-93f8-93b06f87bbff', '5abd1ae5-da0c-415b-bff7-ef07513e08aa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f4beef7-f7ef-411b-bc25-502ef9e0c80d', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'c15e0b81-002e-480e-93f8-93b06f87bbff', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('02f5a272-7a29-4c27-901b-2200a929b659', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'c15e0b81-002e-480e-93f8-93b06f87bbff', 'c2d87277-0280-41c8-b0c1-3c431e7fc33d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa916da0-ddb9-467f-9d41-f48c204d693d', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'b20cc2e5-2836-47cf-913d-d5cb7aec6356', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('081c149f-d44d-4e8d-9ee8-c1814b4f1eab', '92b842af-05fc-405d-b0db-7a667228c221', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '25aea726-1671-41d0-9264-5bb7c4972697', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c0aa2d8-da32-4ad0-943b-43fdb39772c9', NULL, NULL, '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', '369f633f-ae6f-46de-b383-a4fb05f1656d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a485e64a-93a9-4c8d-8e2d-d168a6b369de', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', '3c30d78b-cca1-46a4-92b0-141a5a49d2bb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c303235-eded-4247-be4b-48022beac96b', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27e8f08e-02f0-4d2f-8887-e9eea815518a', NULL, 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a2b9080-0a66-4986-b2b2-eaf72be6aa46', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'a115bf5c-94f4-46b0-8506-e41ead116a8d', 'a12fea75-a5c5-4b6b-b54a-dbffb84d4d96', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('095d2930-38c0-4a02-97ec-84e052f1ff3a', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', 'a115bf5c-94f4-46b0-8506-e41ead116a8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6796598f-b003-47b7-aa29-0c69004823df', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'a115bf5c-94f4-46b0-8506-e41ead116a8d', 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c07debc4-37e0-40cd-a666-258b23e3cf3f', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', 'e89f8e4b-7387-45e3-8241-86cd24d48fe2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6bcd62a1-e4e0-4dea-ae28-08d9bac75862', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('912246a6-c7ba-4413-9b4d-723217ecd5e1', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('28e5a0a3-2291-4e03-b62a-bfb8713a827b', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3761b240-449c-4cda-98de-bd20b2e6ad4f', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7209163-b630-444e-9835-2281456e5909', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', 'df81248e-911b-4793-9913-0538a12ea820', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('942718de-df0f-4b81-bec8-96a0a3db8be4', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('320cb7ed-0442-41d3-b54e-96728496f1d0', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('058c79b5-ec57-4eee-bcdf-bc3c1048da1a', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', 'a17cbf35-8afe-4032-a911-3347a0e952a3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2eb62461-46f3-4dc6-ac89-f9eef6c3edc2', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59bd1b2f-c7bd-4fcc-b32b-4704521c7950', NULL, 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b852c762-5f60-4dfc-93d7-ef28ebe44425', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, '50593216-70ed-4099-8e53-51f5f95fb14e', '03cdd47d-7cd0-4724-a9d8-68b593171031', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a3932edb-bf29-4912-86d0-620493a2623d', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', '50593216-70ed-4099-8e53-51f5f95fb14e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d3132964-b648-4ec6-bd13-d60f75e066db', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, '50593216-70ed-4099-8e53-51f5f95fb14e', '6c5bd6d0-2679-4b89-a125-57e510f4027d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77eddc5d-bade-415c-baf3-7519397beb09', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'be395dff-ff4b-40ae-a537-5c84a2d3a783', '474dabcd-176b-4283-ad5e-6d7f89e3068c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d438845-8048-4622-9364-79a1bbd92e75', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', 'be395dff-ff4b-40ae-a537-5c84a2d3a783', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a5cf1d8a-8995-46e3-bca0-9b526cfbac7d', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, '6c5bd6d0-2679-4b89-a125-57e510f4027d', 'be395dff-ff4b-40ae-a537-5c84a2d3a783', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68adb82f-b21a-4c65-b131-92834b1b22b5', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'be395dff-ff4b-40ae-a537-5c84a2d3a783', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed0ad884-ea57-4ed3-90e3-b5ec8d4a4a92', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'be395dff-ff4b-40ae-a537-5c84a2d3a783', 'df81248e-911b-4793-9913-0538a12ea820', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f71935e4-dc55-4722-89ef-cbbfc827dcf4', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', '6c5bd6d0-2679-4b89-a125-57e510f4027d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8bea7cc9-d0f6-4741-9f34-e91ed13631f0', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1b4783e-0bd9-4b4d-90f8-f54374c6370d', NULL, NULL, '50593216-70ed-4099-8e53-51f5f95fb14e', '8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97e50808-e62a-47cc-a366-4fd3cccc51fb', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, 'c753ef5d-0c69-4807-b43a-4d3e1d500389', 'f8324be2-d4c6-411d-8589-889fa46d8ef8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f143ed6-6a74-40dd-9f9a-2c00e40403ed', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c753ef5d-0c69-4807-b43a-4d3e1d500389', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aecff356-9ac7-4b19-9469-c2167c20ed48', NULL, 'c753ef5d-0c69-4807-b43a-4d3e1d500389', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c753ef5d-0c69-4807-b43a-4d3e1d500389', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a541d1c-2075-4322-a5d5-9a4750e8bd99', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'c754a646-c6c7-4ebc-be45-2edcbd6ba501', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27ac92dd-00bf-4f48-b055-2427e813102b', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, 'c753ef5d-0c69-4807-b43a-4d3e1d500389', '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de68e708-ee2c-483a-8198-de0414d2bfb2', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'c7434ab2-1e19-4777-a38e-14330f4a02a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3094c056-2182-45ad-b328-513a50f7862c', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', '2a12b073-dec8-4414-8f79-90d2e54bd7c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60e9d6f3-66bd-4b22-b754-900fe064cc36', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2531a3f6-7533-4a0b-90a9-921c0ed21450', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, 'c7434ab2-1e19-4777-a38e-14330f4a02a7', '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42a54d68-d2e2-4d67-aa21-4bbc81a24d28', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ef7a46d-14e8-404f-a193-b7a66fb179f0', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd4189ae-0145-45a3-ac6b-f77cd5706133', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33affd96-d666-4e75-ba4c-42b8d53df32f', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'c7434ab2-1e19-4777-a38e-14330f4a02a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('12306ffe-1082-4c7e-b676-50e03bdcf37f', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'c753ef5d-0c69-4807-b43a-4d3e1d500389', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('808fdc60-c60d-488e-9620-184d7c88644a', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '6a17b24d-e8b3-4659-b391-b1f72ef80029', '87a9fc9a-d148-4558-92d6-4e48a7293edb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb1e07d1-19fd-423b-a2a2-5dd2521f49d1', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '6a17b24d-e8b3-4659-b391-b1f72ef80029', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cfdbe2ed-bb0e-4d23-b3de-6cb87d3e9ec5', NULL, '6a17b24d-e8b3-4659-b391-b1f72ef80029', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '6a17b24d-e8b3-4659-b391-b1f72ef80029', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2aefb134-064d-4777-86cb-62484d761b00', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '79bfede0-cffe-46c4-b27c-0e40846e2447', 'b088226d-f831-4b99-8345-2983c0de543f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0250109-f027-4463-a6a5-f79e509d0605', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '6a17b24d-e8b3-4659-b391-b1f72ef80029', '79bfede0-cffe-46c4-b27c-0e40846e2447', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2fbb7a91-bbe4-4e5a-b520-e59afd970a0e', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '79bfede0-cffe-46c4-b27c-0e40846e2447', '2243d1b8-20ff-4556-8185-69dedd3fce8f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d358addc-b949-4682-9633-4ca72f739662', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '4f843b40-95b0-4bfe-af06-2fc65df2ee56', '2e344e61-46bb-4578-be4f-b8906472ebfd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f950684-27c8-40bb-a377-7f74a6b9a5c5', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', '4f843b40-95b0-4bfe-af06-2fc65df2ee56', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('69b779d7-72e8-48cd-96e9-d959db8ceb1f', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '2243d1b8-20ff-4556-8185-69dedd3fce8f', '4f843b40-95b0-4bfe-af06-2fc65df2ee56', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc048e2a-fe92-48e7-8668-e7589ad42cdb', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '4f843b40-95b0-4bfe-af06-2fc65df2ee56', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0c00580-04e7-4e9a-8c3e-fce24265d137', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, '4f843b40-95b0-4bfe-af06-2fc65df2ee56', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('152d0258-ec5f-4fbf-affc-432a3ea85d2a', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '2243d1b8-20ff-4556-8185-69dedd3fce8f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9bfa9381-5952-4044-8b3a-868eb99ca992', '3c0abfbb-0006-426a-903f-6f435e03276e', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '6a17b24d-e8b3-4659-b391-b1f72ef80029', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70451390-a550-4b5f-8b9e-8a04005de165', NULL, NULL, '79bfede0-cffe-46c4-b27c-0e40846e2447', 'e1a47825-87b7-4108-9f38-ab5f0238f3f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f9539e6-842f-47f2-8910-27cb4867f5bd', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, 'f2ab3bc0-b751-4564-8161-779ed29b1777', 'd7b02d95-b66d-4ccd-87aa-9fafd3a1971f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2011a4b5-5ba5-47b9-a98d-ce96ed7cd794', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f2ab3bc0-b751-4564-8161-779ed29b1777', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1ba61fd-a8ea-4f37-9397-ca57484c0056', NULL, 'f2ab3bc0-b751-4564-8161-779ed29b1777', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f2ab3bc0-b751-4564-8161-779ed29b1777', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5bb4ea0b-d680-49f3-aefe-6111aad5c7a1', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '93f2adce-e4f2-4f16-ae97-3763f6384d3d', 'b17548d7-be60-485c-8a6c-be5f30151f86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13f25f35-812a-4e30-9d3d-61e708da4626', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, 'f2ab3bc0-b751-4564-8161-779ed29b1777', '93f2adce-e4f2-4f16-ae97-3763f6384d3d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('912fcb9d-10d5-497b-8191-43ad7a188f13', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '93f2adce-e4f2-4f16-ae97-3763f6384d3d', '63240dc7-30b8-4562-8648-d84689be5460', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('041979b3-ccce-4f35-88fe-c09ea8d50223', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '2a7ce36c-2e39-4286-ade4-d3df16838700', 'a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4bb86e32-5bb9-4673-a1db-b5615de35e79', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', '2a7ce36c-2e39-4286-ade4-d3df16838700', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14f8082c-8b69-4620-a903-93c02446d3dc', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '63240dc7-30b8-4562-8648-d84689be5460', '2a7ce36c-2e39-4286-ade4-d3df16838700', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94fa702e-0fad-4e34-b0c6-d81193c61daf', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '2a7ce36c-2e39-4286-ade4-d3df16838700', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c245bbef-554b-42d9-a92f-8f9943a4b461', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '2a7ce36c-2e39-4286-ade4-d3df16838700', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1120eef-6792-4d43-9f06-231435312ddd', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '63240dc7-30b8-4562-8648-d84689be5460', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('62b7ea8c-17af-4fb1-8189-652f42334a6b', '76c70bb8-38cc-404e-ae2b-710f94e708a2', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'f2ab3bc0-b751-4564-8161-779ed29b1777', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9692a213-62d4-42b7-b261-05cb280cf6e8', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', 'e51decc2-efdb-4e87-b33d-d8a5f640d8a2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1663122-76d5-46bf-9324-9b08fd2ad118', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f8e553bb-5f07-422b-85a4-a7c40084dafc', NULL, 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42bae39b-cfb1-490f-a2b4-61a50339f970', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'fd65d7c5-416f-46f9-b01e-218f58575f54', 'c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b0dc299-17f0-4cf3-a946-57823f3bc7d8', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', 'fd65d7c5-416f-46f9-b01e-218f58575f54', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e941524-44fb-419f-97ac-2861c7a90ae0', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'fd65d7c5-416f-46f9-b01e-218f58575f54', '39643e22-f10f-43c4-b6a2-dff5e6fce870', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d7dfccb-6c5e-4a5f-86f3-b5737bfdb923', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', '7573789d-0551-4e43-9909-b8f9687bfc96', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9befabee-ca2c-4bef-81c2-6dc02ef4609c', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'd3f6b0be-2fc2-4b3b-98d8-e72db656be65', 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94514e33-07f2-4c10-ad5a-c2e871b6740c', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, '39643e22-f10f-43c4-b6a2-dff5e6fce870', 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9dc1e39-858e-4409-899e-0525ee426fd4', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', '644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71fc6250-04c0-4b56-97ed-36961fb97c92', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, 'ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', '1ab576b5-1092-44bc-81f2-5f21f24810ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e5d851a7-29a5-44de-a2b7-d377be56a1c0', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', '39643e22-f10f-43c4-b6a2-dff5e6fce870', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1d690d97-6057-4667-8949-3dd43407e2f4', '6ff8b863-15dd-4646-96bc-fdec9d271aba', NULL, '29338455-e154-4447-9c36-9eb49cd398bd', 'eafdf04b-58f7-46a4-aca7-4beba0fd977a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1039372-cd01-4698-b533-c4acee5678bb', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '520a7251-6e8c-4344-9103-3dcd1445235d', '5098f6b2-1557-447c-bb45-ca0f6f191a82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('85dd0fb8-b18d-4601-bc2c-122e192468af', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '520a7251-6e8c-4344-9103-3dcd1445235d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4cba2ae4-c499-4503-8145-fb2b480cb8a7', NULL, '520a7251-6e8c-4344-9103-3dcd1445235d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '520a7251-6e8c-4344-9103-3dcd1445235d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60bf5ce5-39c5-4b53-9cad-7ed65460e0c2', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '63aa3fef-05bb-4217-9c0c-3b71d2567a8e', '927e1abe-a622-4cc7-838f-2b36281e2bab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('533fe4cb-bf34-43f3-bc02-64022cd4ee96', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '520a7251-6e8c-4344-9103-3dcd1445235d', '63aa3fef-05bb-4217-9c0c-3b71d2567a8e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1ae0232e-055e-4833-ba10-8b0a3eaf3596', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '63aa3fef-05bb-4217-9c0c-3b71d2567a8e', '861927b0-a03c-4d7d-9dfc-e5248240e9ef', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d22f0873-cff9-449b-9ffe-a38182a69e7d', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', '6533454f-8b7d-4bcd-a7f2-5f9173220dc4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0cdf1b50-d0aa-47b3-ad6e-331e0955fad7', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d8be7ae7-e432-4f71-a418-8af953e69cea', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '861927b0-a03c-4d7d-9dfc-e5248240e9ef', 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c3840ef-c378-42fd-ba39-55c8c50a6172', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd3ec818-fd2e-4766-8acb-13b05ae673f2', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, 'c76214e6-d6c0-4fec-a919-3f0f579e65d1', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b0839b4-514c-4253-b536-967ca8e7aec9', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '861927b0-a03c-4d7d-9dfc-e5248240e9ef', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82c7c4ed-de70-422c-9a0d-dbd482c0a31f', '8c9e386f-d331-4e54-8d7d-ab768a575c77', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '520a7251-6e8c-4344-9103-3dcd1445235d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e2eb38ae-7861-4727-b15e-7b6ae2e5688a', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, 'b392990f-d44f-4754-8059-f5fa9114b643', '2cb19228-dfd0-42b2-bf8d-1ce2ccf77067', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b455908-ff2b-4cb4-abc2-710fb94b4fb5', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'b392990f-d44f-4754-8059-f5fa9114b643', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0aabd4e0-b7e6-4d91-9292-eef1b8504884', NULL, 'b392990f-d44f-4754-8059-f5fa9114b643', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'b392990f-d44f-4754-8059-f5fa9114b643', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba5e97ab-02fe-4870-92d2-34398cecabe6', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '6eba0739-280d-448d-9837-a68d57138524', 'fea082ef-9069-4c01-adb7-073fc1f46bbc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7951ff94-759f-4987-9169-d4b2d6d96c23', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, 'b392990f-d44f-4754-8059-f5fa9114b643', '6eba0739-280d-448d-9837-a68d57138524', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e953c2d5-40a7-4606-af51-3a4b89618fab', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '6eba0739-280d-448d-9837-a68d57138524', '14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a97a156d-55a7-448b-aa68-8b2073321136', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, 'db577236-d0d2-4c2f-bbd6-246a46c70278', 'e9c0574f-f838-48d5-a332-4085895be3c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('90a1cdb2-e90b-48f6-9ec9-011512e6d275', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'db577236-d0d2-4c2f-bbd6-246a46c70278', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f25ad03b-ddf9-4df6-85fa-07bea8b48345', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', 'db577236-d0d2-4c2f-bbd6-246a46c70278', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c1792b1-22ee-455b-83cd-af455b1253bb', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, 'db577236-d0d2-4c2f-bbd6-246a46c70278', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5813e3b-50b4-4e8c-9be3-190ba23148e6', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, 'db577236-d0d2-4c2f-bbd6-246a46c70278', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('865022bc-58ec-4992-8cdb-04e3c63cffde', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d1f820e-e1c9-41e1-8cb6-bb1b36c3bad6', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'b392990f-d44f-4754-8059-f5fa9114b643', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c6fd094-8811-4ce7-93f2-676706bc9fc9', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', '56a257dc-7f7f-4a89-85be-fee322b1f32b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a60b7f7-86ab-44aa-8ed1-93a740d981cd', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f0caf10-a671-48ea-ade1-bfd5bb25e859', NULL, 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4e2f4a1-9df2-4fdf-aba3-82dccbbd43c3', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '07d6b629-0619-408f-92e4-dc57b25e341e', '6c7dbe37-0ade-4739-851b-1413efc4010f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de5b6c29-a88b-4aeb-ba26-2dcf39c872b4', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', '07d6b629-0619-408f-92e4-dc57b25e341e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e5abb5c-c136-47f2-8d46-02191c73a521', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '07d6b629-0619-408f-92e4-dc57b25e341e', '33960cd8-c35e-4e12-93d4-a03f9ee56f11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b1fb5c4-1915-4603-83b3-47f276bb872a', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '11cb2800-b7bd-4b53-8f6b-9a3398de8834', 'df9dad24-c7f5-4429-88fe-4ece8d9865be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a1495de-75d9-48ff-9fe0-500c0ba0c02e', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', '11cb2800-b7bd-4b53-8f6b-9a3398de8834', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b7d6c36-552d-4fca-a1be-98d9216b377f', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '33960cd8-c35e-4e12-93d4-a03f9ee56f11', '11cb2800-b7bd-4b53-8f6b-9a3398de8834', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a99c625-5c14-4e43-810c-c7ab8d8ee240', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '11cb2800-b7bd-4b53-8f6b-9a3398de8834', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e655b28a-3a03-435f-a073-98cbf50c2afd', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '11cb2800-b7bd-4b53-8f6b-9a3398de8834', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe62389f-ac27-4a7e-b858-12fec3f19107', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '33960cd8-c35e-4e12-93d4-a03f9ee56f11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60eb88d0-fc57-4b39-954a-51fdeca95abc', '14ca6db0-b2db-403a-98f7-09a4aece479e', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'e88ba159-11c9-42fa-899a-e58cf9acb9b7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aecfdfd7-7bcd-44f0-a497-aacafb8968b8', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '98cab550-aa9b-423f-8687-063fdafe09b2', 'fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0934fc6-6e85-4262-9532-ac464190d708', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '98cab550-aa9b-423f-8687-063fdafe09b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f6140cc1-5790-40a9-bbee-7a2b51c04ca1', NULL, '98cab550-aa9b-423f-8687-063fdafe09b2', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '98cab550-aa9b-423f-8687-063fdafe09b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('726b40d0-f45c-4b62-a847-819afa8bcd5d', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', '2ab5ae81-f05a-4105-923f-97229e5f1c75', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8897b33a-f2d7-460f-aa59-7d810fb27ebc', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '98cab550-aa9b-423f-8687-063fdafe09b2', '6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac90874b-6cf2-4af8-80af-de18692fe557', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', '2af247be-533e-4e76-841e-46f8758be2a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4b24d9a-1ce9-4574-b3e5-5e1ba21129d3', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'dbe4bafd-5930-48c1-934b-dc9859824a00', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('630cf81b-ab66-456c-b7af-9eabd1c3d766', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a66951cd-8403-486b-b068-72baa266304b', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '2af247be-533e-4e76-841e-46f8758be2a1', 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4aa0a25f-07fa-4d7a-bf8c-e88175500837', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b25328d-7b89-404d-b5f7-d4dcebf65688', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, 'c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d92aa656-2b90-4668-a168-acbefad6c8bb', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '2af247be-533e-4e76-841e-46f8758be2a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d14e83f-35d6-47f8-a0df-13cc164439f8', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '98cab550-aa9b-423f-8687-063fdafe09b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31d938c5-5ba5-4411-b120-83317018c51f', '82771891-737c-4c22-8321-c2542f973dbe', NULL, 'c0721ca2-ebb9-4efb-9170-85983c08c7be', '15067268-30b0-477a-8357-2156707e3e0e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2558d0de-9a64-4649-9341-a51eb093d7de', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c0721ca2-ebb9-4efb-9170-85983c08c7be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('707d876e-0973-4c09-b085-7a78c22638a5', NULL, 'c0721ca2-ebb9-4efb-9170-85983c08c7be', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c0721ca2-ebb9-4efb-9170-85983c08c7be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('193e4bcc-54e3-4390-995a-8e91f4a71e02', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '3e7064c2-0b1d-4978-b8c8-df23f1342163', 'b832f921-ab33-46b5-a634-489e62adfe19', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75952978-bf0a-4cf3-a958-8ed5bc878303', '82771891-737c-4c22-8321-c2542f973dbe', NULL, 'c0721ca2-ebb9-4efb-9170-85983c08c7be', '3e7064c2-0b1d-4978-b8c8-df23f1342163', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4803cb03-076c-4ee2-8278-8a19d5cc0a00', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '3e7064c2-0b1d-4978-b8c8-df23f1342163', 'ca5cbee3-107f-4ffa-b2de-777efffc27c5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5d97771-f65b-44bb-b440-5e16bc74df36', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', 'efd9fee1-14a2-45c0-9af7-69572a229421', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1dcd10d4-fbda-4654-9e91-43930d682d1d', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86d7eb0f-68ee-49c7-81e0-4941bdc8c176', '82771891-737c-4c22-8321-c2542f973dbe', NULL, 'ca5cbee3-107f-4ffa-b2de-777efffc27c5', '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b6d6f752-f980-4307-92a4-5e9d571fc3c6', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b722f16e-9901-4c6a-9bd9-66f934517aff', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4090a1b-f22d-4bc6-9515-899ebf5fb503', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'ca5cbee3-107f-4ffa-b2de-777efffc27c5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6852e44-50cd-4bb5-be4a-69cf3616b4f8', '82771891-737c-4c22-8321-c2542f973dbe', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'c0721ca2-ebb9-4efb-9170-85983c08c7be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cfec3767-e862-4c8a-8c42-87c28ffe2467', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, 'fb497976-84ec-4688-bbbf-cb7b788cf927', '5c3b96b4-e376-4600-8361-1bb7946966f1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b46c19c-ad58-40c1-83d3-6900944ccdea', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'fb497976-84ec-4688-bbbf-cb7b788cf927', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95481264-572a-4f4a-893f-88e9bc8f2002', NULL, 'fb497976-84ec-4688-bbbf-cb7b788cf927', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'fb497976-84ec-4688-bbbf-cb7b788cf927', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('008ba08a-bf40-4464-aa03-2bc479801c68', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '3299ec7e-0a6e-45ca-a6af-2f253dae41a0', '099c8bf4-bb2f-4bec-ba3d-10f2de503dbc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e23ce22-64e0-43ea-a59f-7ccac4946a23', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, 'fb497976-84ec-4688-bbbf-cb7b788cf927', '3299ec7e-0a6e-45ca-a6af-2f253dae41a0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39039b3c-1f7a-4307-869e-56b0a6f5bcf2', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '3299ec7e-0a6e-45ca-a6af-2f253dae41a0', '1c07acdc-fdbe-4439-8e64-739b970501b9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf7ae017-a16a-47cb-b362-2eea11224663', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '9c5c0e45-2026-46b8-8f49-1b665aa804a4', 'de2757da-bcaf-419c-a5ed-ee1f2159eda1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d91f120-5a3c-4ef4-adc0-19e841c67000', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', '9c5c0e45-2026-46b8-8f49-1b665aa804a4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e4689854-27a8-4374-b3c6-80339c3cd056', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '1c07acdc-fdbe-4439-8e64-739b970501b9', '9c5c0e45-2026-46b8-8f49-1b665aa804a4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('758608f1-8b5e-4afe-8ea3-1cc418b9c51e', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '9c5c0e45-2026-46b8-8f49-1b665aa804a4', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71afc3d0-bb5e-4b48-9b34-09001330aaa7', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '9c5c0e45-2026-46b8-8f49-1b665aa804a4', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a6bfc5e-7bd8-4300-afd8-52aebf898748', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '1c07acdc-fdbe-4439-8e64-739b970501b9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0ad978dc-39a3-4bf4-a27d-da4689d5fc7a', '5460e6bc-ff8c-4137-b262-9587833fd26e', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'fb497976-84ec-4688-bbbf-cb7b788cf927', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('15ce8db3-c2df-4df2-82b0-485bc10f2d78', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, 'db639259-14d3-4037-a775-0aecc5b28e49', '81368b61-8a6d-4da0-8d4a-bbdace102d16', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5f4335bf-1fca-42d6-9e45-a741f8250945', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'db639259-14d3-4037-a775-0aecc5b28e49', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bde83596-76b0-4c0b-aba7-4ac40bccd746', NULL, 'db639259-14d3-4037-a775-0aecc5b28e49', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'db639259-14d3-4037-a775-0aecc5b28e49', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9d0976c-eedb-4916-b78c-7577161c1aac', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '2009013f-80e4-4f14-9d59-9f5027ac0307', '0fe977bb-8402-49a4-ad22-1fc63ebefeb7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('edf0593e-a2ef-4b68-84cb-4d8a98a8e254', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, 'db639259-14d3-4037-a775-0aecc5b28e49', '2009013f-80e4-4f14-9d59-9f5027ac0307', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77cb9705-7219-426f-a6ea-5a11d66c1178', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '2009013f-80e4-4f14-9d59-9f5027ac0307', '0fe07503-4b4b-4eb6-9080-081671416888', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0a49188-dff4-40e9-8033-f4177bc2e361', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, 'db545d05-0872-4c73-b09a-c9bec5f63bf8', '5f91f0c6-6f77-4d31-85d0-2d2601965f4a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33a855e6-aea3-4af9-96ab-b241e00f74a5', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '94724e79-a840-4218-a5d6-e669c73ba53d', 'db545d05-0872-4c73-b09a-c9bec5f63bf8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a5153a95-ba4a-4de7-b5eb-b9dbb88337f7', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '0fe07503-4b4b-4eb6-9080-081671416888', 'db545d05-0872-4c73-b09a-c9bec5f63bf8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('376fb9c8-e353-46b1-ad78-178f13c1f81c', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, 'db545d05-0872-4c73-b09a-c9bec5f63bf8', 'd366868e-1c5f-40d8-90b6-9159123762fb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20350b29-679f-4d09-b361-41a1015c0994', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, 'db545d05-0872-4c73-b09a-c9bec5f63bf8', 'c6f4fd85-d5b4-444b-99ac-3133eabf4534', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f5cd2357-3802-409b-b349-56e3e28e860b', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', '0fe07503-4b4b-4eb6-9080-081671416888', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('11a5176e-ebd0-49fe-875e-ae0bc8694935', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', NULL, '31909570-3577-492f-a7a8-c7345f213bc8', 'db639259-14d3-4037-a775-0aecc5b28e49', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09255768-27ec-4895-8f8a-9007e7df5e2b', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '71e27e16-50cc-459b-96fb-4b8c1201082b', '3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0ca241ab-c58b-4b43-8062-8e071b9a1a95', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '71e27e16-50cc-459b-96fb-4b8c1201082b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f964a42-def8-4885-8175-2aa0ca8bfebd', NULL, '71e27e16-50cc-459b-96fb-4b8c1201082b', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '71e27e16-50cc-459b-96fb-4b8c1201082b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35ae10fc-6ccf-45a0-856b-73d7009ad1b4', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, 'da7719db-1c60-48df-b3cc-ffe7ca5df0f5', '90c8d2a1-5736-4ad1-a296-aef671392523', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51ad17a9-ae7a-421d-97bd-ec8cabba61f9', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '71e27e16-50cc-459b-96fb-4b8c1201082b', 'da7719db-1c60-48df-b3cc-ffe7ca5df0f5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('060673fd-9f24-4060-937f-ee18c0ecee1f', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, 'da7719db-1c60-48df-b3cc-ffe7ca5df0f5', '8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8bdb3fad-bbb9-4f73-86dc-747f678d822d', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', '9d4f8cd8-7565-4eb4-a20e-b2b439946662', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed1111b6-605f-42af-9b21-ea532170785d', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d31d08a4-b0c3-41ac-ba78-ec766fd4baf5', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0c6f0b75-b6bd-48f1-aba4-5e4a027a115d', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27aa2e3f-2ccf-42dc-b55d-fcc7a9947c0e', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, 'd9d12b27-ae58-4ae5-b109-9a873ca8fea7', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce9956e3-f5db-4e44-870b-49d7b5a0da7d', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de3da58f-905c-4215-b1e5-1168232f0ef8', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '71e27e16-50cc-459b-96fb-4b8c1201082b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b65cce5a-5190-4ce8-998e-ac5a9c86c0de', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', 'bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1aa35c5a-0679-49d0-85dc-1a4fd1fc6324', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d69f895c-ca81-404d-a1be-f576d582cd2a', NULL, 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd7f6a8f-2962-433a-a4fb-b372ed475123', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '84596d4a-c803-408d-87e0-2edccbf46866', '2616db57-66e1-4592-bc4d-d00f359cb35f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22be8999-7121-4f0a-9238-967efcf7cfc1', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', '84596d4a-c803-408d-87e0-2edccbf46866', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b829812-2f65-4364-8375-1bad199bf262', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '84596d4a-c803-408d-87e0-2edccbf46866', '22f39ffa-2f6b-499a-ad1e-6392e380f4e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('774e179c-0350-4c95-9973-9f31ad19d6d5', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '6b6b95c2-45c2-4803-b595-e1d4e62912d4', '0c317278-ff35-4c8c-b488-37bd55814b2a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a61dfb8-792e-4c0f-afa7-fa08333e7da7', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '6b6b95c2-45c2-4803-b595-e1d4e62912d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aafad911-362c-42eb-88c2-b24f1a0772e9', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '22f39ffa-2f6b-499a-ad1e-6392e380f4e9', '6b6b95c2-45c2-4803-b595-e1d4e62912d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6606fa4b-07a6-4c7e-b91c-d3204a57e555', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '6b6b95c2-45c2-4803-b595-e1d4e62912d4', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4783fc76-b0a5-464e-b2b4-a3aaa2f38aec', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '6b6b95c2-45c2-4803-b595-e1d4e62912d4', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c09ec4ad-618c-48b3-9647-ff0b419b25c0', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '22f39ffa-2f6b-499a-ad1e-6392e380f4e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d40a477f-8ee6-47c7-a105-12d27cd84fc6', '1586854a-cd2a-4378-ba84-fd371c8d06c7', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'ec5fd55f-6c3c-48f9-bf25-d6937f731633', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('050a8500-3ed1-4171-9f00-c1bb306dea63', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', 'ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('098773e4-54a1-4e38-801f-05db39de3aac', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f164a7bc-c945-4299-9156-0cecbeb694af', NULL, 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98a05de3-f48e-455f-9da7-50886ad2234c', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, 'a028c0ce-a639-4431-bd4b-7f4339986e12', 'c64b5ede-af6e-4878-b23f-606b87a02cdc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8edd07d1-06c0-4912-b028-4e8d330959b1', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', 'a028c0ce-a639-4431-bd4b-7f4339986e12', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5deb90a9-e292-4193-8dc6-573d623fa6bb', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, 'a028c0ce-a639-4431-bd4b-7f4339986e12', '2f620914-54a4-404f-8297-c209a1b666bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27402a0e-6d04-43bc-894d-2f30d655e49e', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '31037a84-6031-4aea-8702-9ae134616972', 'e42af770-6fe9-492e-a97e-745d3fc6d532', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7791169-ea15-44f8-9904-aabdc7765307', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '31037a84-6031-4aea-8702-9ae134616972', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1608b49d-d482-49f4-811c-eff035b36c02', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '2f620914-54a4-404f-8297-c209a1b666bc', '31037a84-6031-4aea-8702-9ae134616972', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b083847-7443-420f-91d6-7e255f76f646', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '31037a84-6031-4aea-8702-9ae134616972', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fa19e40-2242-4830-9fa9-8dae43121d38', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '31037a84-6031-4aea-8702-9ae134616972', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d5988ae-f9ca-4389-af8f-bf6fcb14ad95', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '2f620914-54a4-404f-8297-c209a1b666bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('187320b2-8ffd-4d4d-959e-216df40ad113', '29759ed5-a529-4555-b0f8-77b722d5cf48', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb0e2400-a008-44b3-b234-3fb621c65fe7', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, 'fc26785f-19fa-476c-93a1-d751511c8cc6', '3903d9ce-0bec-4991-86ca-38b17ec769ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8ba2163-2f95-43c4-b349-003b03bf3039', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'fc26785f-19fa-476c-93a1-d751511c8cc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97daa636-de2d-49fa-be4d-0cd3e57a6917', NULL, 'fc26785f-19fa-476c-93a1-d751511c8cc6', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'fc26785f-19fa-476c-93a1-d751511c8cc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('61941e43-935f-4bcb-8ae8-0ff799b1c329', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '645901d5-e40f-4c62-aefb-a465db8e329c', 'ac3fdf8a-f87b-4cff-8146-272273b0830e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fffa7228-7b59-4100-b0c3-5c4688bb47b0', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, 'fc26785f-19fa-476c-93a1-d751511c8cc6', '645901d5-e40f-4c62-aefb-a465db8e329c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b6906a3-2fc5-4e82-b7a9-d082b6b8866f', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '645901d5-e40f-4c62-aefb-a465db8e329c', '5fe85149-78e6-4735-960e-353a088d355b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac1250ba-e659-43a3-bb8f-dc64e907a3ca', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '14db4fed-0e39-4912-8616-cd4bb2335a4c', '3e146f1f-790c-425e-bac5-1e215599ee33', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c38088ef-0945-4b29-923a-630a743fca9e', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '5228a4f7-f78c-4841-a40d-52d994d21a29', '14db4fed-0e39-4912-8616-cd4bb2335a4c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a023b3e1-0aa8-4b7f-9e8d-6fd44fdffff4', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '5fe85149-78e6-4735-960e-353a088d355b', '14db4fed-0e39-4912-8616-cd4bb2335a4c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7623266f-75e6-40a3-8a43-f0d188d0ed02', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '14db4fed-0e39-4912-8616-cd4bb2335a4c', 'a22f7977-6575-4c54-8b20-3ae24ce14df6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9dbbd0d7-fcf2-4b61-b5bd-28e756b801fc', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '14db4fed-0e39-4912-8616-cd4bb2335a4c', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('821c6eb1-b40f-4129-8499-2da2b6a7a734', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '5fe85149-78e6-4735-960e-353a088d355b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42f9ef96-37d3-496a-b5fd-62acd359184f', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'fc26785f-19fa-476c-93a1-d751511c8cc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('19b1bcea-f1e3-448f-810d-972d94d77221', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '102e1ab3-76f6-4812-b627-9becd51c2657', '54ea8431-71a0-4eb7-97ed-8a8801df59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91dfebe2-8531-461c-8157-15abad68dfee', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '102e1ab3-76f6-4812-b627-9becd51c2657', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce8b4651-5e9a-4e27-9004-2bc09011c7d3', NULL, '102e1ab3-76f6-4812-b627-9becd51c2657', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '102e1ab3-76f6-4812-b627-9becd51c2657', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01b65471-6423-4e2a-bf6c-8cf082be6709', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '5a4982c6-bec1-4cbe-958b-89dbc24e013b', '1fe5cc8f-0891-4359-9d7f-d45cf5d82108', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7735fa8b-c34f-4184-bdad-119ebdffdf2a', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '102e1ab3-76f6-4812-b627-9becd51c2657', '5a4982c6-bec1-4cbe-958b-89dbc24e013b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d4c18059-db2e-43ed-992e-b22d02bfa8ef', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '5a4982c6-bec1-4cbe-958b-89dbc24e013b', '37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1369fe69-93b7-4083-995d-96ad5849f739', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', 'a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f74bc0c-dff4-4297-a22f-00f5ac0f830d', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'd98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa0ece53-26fe-4c48-9acc-39018b189a91', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b219db13-2204-4bca-a8ea-b69945155165', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', 'c767e22f-f90f-455b-8733-7e58ca5ffba7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('648b445f-9ef1-41d9-a26c-f890b4685ffb', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3f6d631-9ca8-4837-b4df-6311b24be4ca', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'cdd5c1ec-2338-4784-b430-01dffcdcd53a', '6cc9abee-77f2-4e9b-ac65-f9cc57f00825', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7287e731-282a-473d-886b-185ff8becbf3', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, '568bfaa3-d857-432d-accf-ff32377587c9', '37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af9b31f1-9c7a-4f0d-8863-14680f2423f5', '68821d28-1f12-40fb-93cd-c979ab75c04e', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '102e1ab3-76f6-4812-b627-9becd51c2657', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2987f6f-b263-4f03-be4b-b7271f0ad6e3', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '903ede93-27b9-4273-8ec6-2af94a38cd60', '5f0ce84a-beaf-4824-938b-16b1a746dbc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ceda29c5-a454-408a-b960-680d56000384', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '903ede93-27b9-4273-8ec6-2af94a38cd60', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5dc51995-a916-44b2-aee4-34cb94bc0c10', NULL, '903ede93-27b9-4273-8ec6-2af94a38cd60', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '903ede93-27b9-4273-8ec6-2af94a38cd60', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d464825-0aef-4840-9e2c-3d352903da91', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, 'a4bff7bc-e032-4606-8e6f-cb48b8dc5846', '985cf74a-9707-4819-a118-dfc415527515', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31b7747d-efef-4594-b5cc-43bbd17b9bfd', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '903ede93-27b9-4273-8ec6-2af94a38cd60', 'a4bff7bc-e032-4606-8e6f-cb48b8dc5846', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('406fc753-d3ea-42db-a28f-9bda1d0dea3d', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, 'a4bff7bc-e032-4606-8e6f-cb48b8dc5846', '435b9cdc-5cfe-4d35-89d4-85bc68ee6967', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('899b26c2-a982-46b1-9f78-54509efe2aca', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '1ca60104-96c2-46f7-bf36-e5acc579f3e9', '57537970-872a-40b4-8ca4-2fdfbf1e391c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e07fe55-469b-4958-9bc1-93a3f6fa4c55', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', '1ca60104-96c2-46f7-bf36-e5acc579f3e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d86f973-d0e3-49d2-9c2b-9b22613768c3', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '435b9cdc-5cfe-4d35-89d4-85bc68ee6967', '1ca60104-96c2-46f7-bf36-e5acc579f3e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45b98512-e5aa-451a-9af2-749510177ba8', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '1ca60104-96c2-46f7-bf36-e5acc579f3e9', '2b391e5d-6b69-4999-8ede-1885d700233f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21bbeb68-29ab-4733-9e86-d82cde3f5308', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '1ca60104-96c2-46f7-bf36-e5acc579f3e9', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57bb4bf1-b64e-43e0-9760-0cb397ccf85b', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, '1ca60104-96c2-46f7-bf36-e5acc579f3e9', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7323cd05-224a-47be-9b2f-3f37c6044804', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '435b9cdc-5cfe-4d35-89d4-85bc68ee6967', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fffb32a4-ce06-4adb-ae86-df290f307e78', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '903ede93-27b9-4273-8ec6-2af94a38cd60', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('691e7189-1ff0-458e-981b-35de85986d6e', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'eb429a65-504e-43c1-a194-a58f3aa21da8', 'a864fe09-bd67-409d-a4b9-da2384846ee1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5dc62c41-9196-4373-958c-8f7e12198915', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'eb429a65-504e-43c1-a194-a58f3aa21da8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eabba1d9-45e2-46fa-af3b-a2d4a78a153f', NULL, 'eb429a65-504e-43c1-a194-a58f3aa21da8', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'eb429a65-504e-43c1-a194-a58f3aa21da8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6af99cb2-45cd-4b3f-9b83-bb9e31b84100', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'f5596859-966a-4d5f-9e34-cd255fa2452e', 'e3b21d04-931b-455f-948c-5cc9c0ae03a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ae54b29-d3f9-416f-bb26-f1a528535a86', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'eb429a65-504e-43c1-a194-a58f3aa21da8', 'f5596859-966a-4d5f-9e34-cd255fa2452e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9ebf31d0-2d2e-47fa-ba1b-ecb8142cf938', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'f5596859-966a-4d5f-9e34-cd255fa2452e', '12901c4c-0376-47a9-a9f3-f73acba2905d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99a9a037-8df7-496d-b9d5-7900d2d2b0b7', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'e8c89c01-b7b4-4c3f-949b-b91f84498439', '674a6bf5-d0b3-4650-8ee5-6eda522c57f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('acf17164-990f-4837-a30b-93bf83f1756d', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', 'e8c89c01-b7b4-4c3f-949b-b91f84498439', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1d368fbf-3db7-43d8-be38-50a73e945275', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, '12901c4c-0376-47a9-a9f3-f73acba2905d', 'e8c89c01-b7b4-4c3f-949b-b91f84498439', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e41ef92c-285d-481d-bd62-83f27fe1b38e', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'e8c89c01-b7b4-4c3f-949b-b91f84498439', '2b391e5d-6b69-4999-8ede-1885d700233f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66d0e5de-8cf1-4c8b-81ad-d69c73831dcc', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'e8c89c01-b7b4-4c3f-949b-b91f84498439', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08f26dcd-df71-4f01-90dd-08731e2a7f25', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'e8c89c01-b7b4-4c3f-949b-b91f84498439', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca7275c4-c105-4ff5-87c6-0ef457263b2c', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '12901c4c-0376-47a9-a9f3-f73acba2905d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('05fd376e-7035-478a-a463-01d83070990d', 'ef673d13-b575-4c2a-84e7-849432e0213c', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'eb429a65-504e-43c1-a194-a58f3aa21da8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25827d42-bfd3-40ef-b2fa-74aaa24eeff5', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '21f928f2-d60e-4885-9d16-ac56767416bb', '84df22b7-389e-48ef-9060-0ac4ddd74577', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c98eb80b-190a-458a-9372-caf4ecb9d47a', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '21f928f2-d60e-4885-9d16-ac56767416bb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b94c1e43-f6f4-41d2-8d59-b25f055b1555', NULL, '21f928f2-d60e-4885-9d16-ac56767416bb', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '21f928f2-d60e-4885-9d16-ac56767416bb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87a699c7-88d1-430e-b78f-7243f267c0af', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '0b32e53f-fafa-44d4-93b3-c544d2ea99e1', 'bbe03bc9-329b-4813-9a56-e092813ec25f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('599da484-c665-4ee1-809b-423a947eb182', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '21f928f2-d60e-4885-9d16-ac56767416bb', '0b32e53f-fafa-44d4-93b3-c544d2ea99e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fecb7b6b-c5cd-4064-9495-2e5db03fe41a', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '0b32e53f-fafa-44d4-93b3-c544d2ea99e1', '882da02d-8e85-40e9-9740-d20d6ef5c0a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f2a2011-ba77-4ea9-932a-d0e9695f0c93', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', '31cf4782-37ba-4296-a200-bf2c44493a97', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1571810-c9b3-4820-ac09-0b2156b65052', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db434f74-1259-46a6-97ca-2b3013c8ef39', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, '882da02d-8e85-40e9-9740-d20d6ef5c0a6', 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2216aac-925c-4bf0-9db8-226f7238bcd5', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', '2b391e5d-6b69-4999-8ede-1885d700233f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c130368b-1bf7-462b-b9f4-2ad8dfc6ad1e', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a27c1539-308a-40e2-8492-6a30b7720849', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'f3e16f5c-42c6-4f75-af34-76a92aaf4a06', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b4d618b-b6e0-414f-9c54-2f20090605fa', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '882da02d-8e85-40e9-9740-d20d6ef5c0a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7844391-b33e-41ff-be80-9c32d94c19a2', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '21f928f2-d60e-4885-9d16-ac56767416bb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f4b9c49-9ff6-40dc-86a5-a7f60b9642a1', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '65434844-1290-47a9-8a2f-e8b7430a3798', '5e9cea08-d822-40fe-a936-44d8647a07c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a27b8cb-c308-4e38-bb84-d4bdc0bcecbe', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '65434844-1290-47a9-8a2f-e8b7430a3798', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6a6913c-7159-43ca-ac3a-b498fed1287b', NULL, '65434844-1290-47a9-8a2f-e8b7430a3798', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '65434844-1290-47a9-8a2f-e8b7430a3798', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b957b5c9-9f49-415d-84b5-29608f8744a1', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '08116e94-3a11-4286-be4e-53600b9ece82', '57346784-00e3-4552-9c1c-19d0c3900d80', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6f0f5aa-5bf4-452b-8eb2-24d1d61ba05f', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '65434844-1290-47a9-8a2f-e8b7430a3798', '08116e94-3a11-4286-be4e-53600b9ece82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e9d45cd-cc52-458e-9a10-c783f2a26cf8', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '08116e94-3a11-4286-be4e-53600b9ece82', '7006fb81-7298-464e-af9e-de7899548c10', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c31fe1ed-2221-471c-bdce-bc750968d632', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '7048b10d-c499-45c1-8f04-f675d387d7a1', '013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('19f1e49b-a716-49af-98c8-a88c6dd8d94d', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, 'a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', '7048b10d-c499-45c1-8f04-f675d387d7a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6500e951-528c-4aaf-b92e-35273018bb0f', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '7006fb81-7298-464e-af9e-de7899548c10', '7048b10d-c499-45c1-8f04-f675d387d7a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60eab5b0-ff57-4219-983f-27dec74cbfd1', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '7048b10d-c499-45c1-8f04-f675d387d7a1', '2b391e5d-6b69-4999-8ede-1885d700233f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ddd9282d-c5e6-4e0e-b517-c011687b76f3', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '7048b10d-c499-45c1-8f04-f675d387d7a1', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('32ab2ae1-a03c-4577-b34a-22292673ed3a', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, '7048b10d-c499-45c1-8f04-f675d387d7a1', '3a8a00dd-e39f-4381-81a3-4e4698dcf29e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b29e693-d296-4a98-b069-559bed1c5470', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, 'b5c771dd-5b62-4631-85d8-5702e34266c3', '7006fb81-7298-464e-af9e-de7899548c10', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a0adde6-bf1c-4ef7-8d2d-72de9bc86734', '452aae38-0b88-4771-b632-9d883909bd8c', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '65434844-1290-47a9-8a2f-e8b7430a3798', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d3aa89f-d4e7-426e-a65b-b5db8334c193', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '438ec914-dab7-4fa7-8b85-3b8f89c9defd', '7f506666-739d-430e-a61e-ed80c52eb812', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80a14332-1e9d-4f03-bd2c-088a04bebab2', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '438ec914-dab7-4fa7-8b85-3b8f89c9defd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9188036-8340-4e26-8e5f-89b1dded8bb2', NULL, '438ec914-dab7-4fa7-8b85-3b8f89c9defd', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '438ec914-dab7-4fa7-8b85-3b8f89c9defd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad33c798-c733-4cf2-943f-372fd0758c48', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, 'be73c28b-c17d-4afa-a2ea-ade468bcd885', 'dbbdc763-bbea-42b3-b1b9-81ed8337ced3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5183397-7ac1-4de2-8166-d92c91a4b8ae', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '438ec914-dab7-4fa7-8b85-3b8f89c9defd', 'be73c28b-c17d-4afa-a2ea-ade468bcd885', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91c210ed-38bb-44d4-a663-232e81c012a6', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, 'be73c28b-c17d-4afa-a2ea-ade468bcd885', '68c8e437-f0fe-4bc9-8143-79f96032568f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('893abaee-f798-4879-a589-085f7797d7f5', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '0b976d62-6eab-48da-84ad-8a52025ce66f', 'e83f5771-2a12-4f43-a099-b4874c8cb4d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0e078f7-3df1-49d2-86b1-6a6d26097530', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '4309a7bf-0556-40d0-872d-dcbb13273c62', '0b976d62-6eab-48da-84ad-8a52025ce66f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68cb2c5e-5ea0-43ea-a573-2d46139c39c8', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '68c8e437-f0fe-4bc9-8143-79f96032568f', '0b976d62-6eab-48da-84ad-8a52025ce66f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d29d23e6-1a22-4410-8c4b-d43cc1864d24', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '0b976d62-6eab-48da-84ad-8a52025ce66f', '5034d61c-e9dd-4b48-8dc8-b9279e015494', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7bf32bf-3a53-497e-a2a0-b90f75acc6f7', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, '0b976d62-6eab-48da-84ad-8a52025ce66f', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74a61898-72ca-4aba-b262-378ea4c34765', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '68c8e437-f0fe-4bc9-8143-79f96032568f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f91e516-b6b1-48a9-b0ea-b9dbd945203c', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '438ec914-dab7-4fa7-8b85-3b8f89c9defd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0bcef0e-6f5c-47a8-aac2-d0a38b3d9470', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', '1f415168-d244-4fd9-957f-542058489735', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b8caaf8-1c8c-4cad-b335-fb30456da5fc', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1591803c-6a02-4e99-ac33-f7540c82af88', NULL, '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66e09307-381f-4c73-95b9-3bf8c6d913ea', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, 'b85e909e-c4aa-4f8a-add6-0852179c69ba', 'b0a7c854-4abc-4da7-af60-a5066e280ac0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7fabf4c5-7ebb-423f-8df9-ddc4b2b27f71', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', 'b85e909e-c4aa-4f8a-add6-0852179c69ba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08fb99ed-97ef-4caf-a756-54cf4e9b3280', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, 'b85e909e-c4aa-4f8a-add6-0852179c69ba', '8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86ca1da4-f4b7-4f27-9874-bb2d26df4868', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '9a8681ff-f4a6-4ba2-85fc-1623725c9029', '23cd8020-fb71-4093-8bce-99ddf9badbcc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e38c9d3-3da3-4353-a3ae-26a70af4d812', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '4309a7bf-0556-40d0-872d-dcbb13273c62', '9a8681ff-f4a6-4ba2-85fc-1623725c9029', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec54e382-26f2-4be7-9134-34c2f9785b37', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', '9a8681ff-f4a6-4ba2-85fc-1623725c9029', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('675d0627-cf95-4cd9-869a-fecb6c20b9b5', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '9a8681ff-f4a6-4ba2-85fc-1623725c9029', '5034d61c-e9dd-4b48-8dc8-b9279e015494', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('83ffdbaa-95b4-4d44-85d9-b6533dcbca7c', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, '9a8681ff-f4a6-4ba2-85fc-1623725c9029', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7fa7256-b2fb-437b-941f-a9e30c48ef43', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0187072a-9ec4-4ac9-8d3a-81c4f6c287bb', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', '0629fcb7-03b8-46af-b60e-3f2e3f371f1e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3cb68917-6424-4ec2-9e5a-68c4088e7874', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', '2903b125-6d88-4867-8227-08c6236a6fb0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('efb8bbf0-a01e-4453-97e4-ecf13aeea7f6', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fad2db88-0b9e-4408-82d2-fd0a7d9f2ccb', NULL, 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('091bd945-8d6f-473b-9a62-5397c8994050', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, '0af56a45-20b6-4818-b7e9-90e4ee9373c9', 'bc4a61d0-4c92-4a3f-890b-3b24080be036', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc5709ea-7d85-4035-8969-5954fc6a7223', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', '0af56a45-20b6-4818-b7e9-90e4ee9373c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66d0280a-c282-45bc-9045-5d226223fd05', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, '0af56a45-20b6-4818-b7e9-90e4ee9373c9', 'ca0eede4-a9b8-4988-9da4-47830d8fe5c8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('17820603-13a9-4886-9931-2d1ea68668df', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'b043e81d-9fba-47cf-a98e-f80dce34346f', '9a776bf3-1034-4dc0-a68f-fbdfb58ab625', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('057ad94f-92b2-487e-9c01-b635b05ec248', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, '662d0ce7-6216-4366-9691-cb5e6020e36f', 'b043e81d-9fba-47cf-a98e-f80dce34346f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2984f108-bab8-45c9-a7dd-c4c0ab0cc3ac', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'ca0eede4-a9b8-4988-9da4-47830d8fe5c8', 'b043e81d-9fba-47cf-a98e-f80dce34346f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d560d5cb-c359-4e83-909c-2da1ef50fb2a', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'b043e81d-9fba-47cf-a98e-f80dce34346f', 'c16a64f9-5dd6-447b-bf7f-f19d542b981b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('130cd5ad-395a-4fd2-89f2-703ee6380464', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'b043e81d-9fba-47cf-a98e-f80dce34346f', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95f970a2-f4d6-49cb-a0bf-a0c2d1f34cc7', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'b043e81d-9fba-47cf-a98e-f80dce34346f', '81b01454-08e4-48ab-9879-4b7ea82a0531', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f41a14d1-65c8-41b6-93f6-051a362b3210', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'a9238907-5ce4-40c3-81a7-3822d6bc7c5c', 'ca0eede4-a9b8-4988-9da4-47830d8fe5c8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f127ce9-414b-47c8-ac3c-82c7ccc9709d', '68dea4fd-58cf-47bd-91af-745dcf8aa697', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'dedbb861-5c9b-4ecd-8573-70e7e2d226fd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2388e5dc-f026-4cf5-9e7c-8e0a6cdab462', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'd1ec7d97-2494-4220-bd5c-81e709cd3926', '19a24fa5-63a3-4c56-ba6a-650024cbdd64', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2063cfc6-995f-43b4-8825-678f8acc202f', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'd1ec7d97-2494-4220-bd5c-81e709cd3926', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec9b656e-0bbb-4885-92ab-242a83694079', NULL, 'd1ec7d97-2494-4220-bd5c-81e709cd3926', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'd1ec7d97-2494-4220-bd5c-81e709cd3926', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c05ab4f7-d09a-489a-b144-20c000609b61', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', 'd0c476d4-546c-49c9-ae12-794cfa3942c6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41dc91a5-c6f3-49bf-ae19-0576655a0a3e', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'd1ec7d97-2494-4220-bd5c-81e709cd3926', 'c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6e9a87c-8841-405e-a092-ef381d71eada', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', '32418973-8381-4c36-99b4-f26750994819', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('489a1b7e-4410-496d-b35a-6d78f277f673', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '3c443fbc-dffe-4c72-8522-96ef96276f82', '975a934a-0ec0-4b14-a513-bd4dd42b8245', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9df07658-0e9a-46e9-9e18-7d36d61a25a1', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', '3c443fbc-dffe-4c72-8522-96ef96276f82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74f8dd22-4489-430e-884f-a70e2ff6ee5e', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '32418973-8381-4c36-99b4-f26750994819', '3c443fbc-dffe-4c72-8522-96ef96276f82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c7199f2-ed89-4806-afa1-fbb3caf0a113', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '3c443fbc-dffe-4c72-8522-96ef96276f82', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b201ddfc-19c4-4f62-b7ac-4450464e5130', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, '3c443fbc-dffe-4c72-8522-96ef96276f82', 'df81248e-911b-4793-9913-0538a12ea820', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c873c6ce-5a58-4e16-8bb8-06d8eccfe9d3', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', '32418973-8381-4c36-99b4-f26750994819', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1cf7debe-b0cf-44c5-8172-6c8b21c71c55', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', 'd1ec7d97-2494-4220-bd5c-81e709cd3926', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67be211b-e625-40e6-a0fa-1d48cfd0cc78', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '720ad69e-cb68-4653-8d31-6df8bb93d3f9', 'e227c024-38a4-4544-be9e-3cefdeaf7a89', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b1e0362b-b3ba-41e4-b1ef-94df086ed8e4', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '720ad69e-cb68-4653-8d31-6df8bb93d3f9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16f955da-120a-46d4-b87b-b4621b1a3e29', NULL, '720ad69e-cb68-4653-8d31-6df8bb93d3f9', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '720ad69e-cb68-4653-8d31-6df8bb93d3f9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9ef2bfba-1c10-439d-8d55-5567dba9c4a1', '171aa70c-1909-417e-9daf-b17c36857995', NULL, 'a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', '177b8109-10d1-4f88-ba89-b04d92d9bab0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aba07fda-44b5-4ca0-b11f-1896f8d8949c', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '720ad69e-cb68-4653-8d31-6df8bb93d3f9', 'a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a67817b8-155b-4d8e-b4aa-3029f1cfbc91', '171aa70c-1909-417e-9daf-b17c36857995', NULL, 'a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', '57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b36e7e59-ccd4-4d21-9326-24274f8c8ab6', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '41403571-c524-4355-882b-b30af5000849', '3e158ad0-d757-434a-a50c-6973cf0e0ebe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25cbb45c-69f6-4266-8527-8281d4fa45c0', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '36cbc041-bb3d-4058-9ccd-2d608992aeef', '41403571-c524-4355-882b-b30af5000849', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5eb6d882-c7f2-42e5-8231-47c97c57cc10', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', '41403571-c524-4355-882b-b30af5000849', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3ae1e79-b7a1-4037-a09e-9190e43d7c43', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '41403571-c524-4355-882b-b30af5000849', '8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fda077e3-7650-40c1-a5f8-ef0e4cb53cba', '171aa70c-1909-417e-9daf-b17c36857995', NULL, '41403571-c524-4355-882b-b30af5000849', 'df81248e-911b-4793-9913-0538a12ea820', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1678db5d-92e1-4a62-98e6-54dbb5cc1c7a', '171aa70c-1909-417e-9daf-b17c36857995', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', '57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc9cc6d3-2e80-4cfa-8240-186a3624f29a', '171aa70c-1909-417e-9daf-b17c36857995', NULL, 'd7925313-949f-4b4e-95c4-23e82e5b2f7c', '720ad69e-cb68-4653-8d31-6df8bb93d3f9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a8c942cf-ac13-417d-9c73-5426467bb6e3', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', '865d8af9-ff16-4388-beb8-420fb0e0c64b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b6a4dfd-55f2-4711-86b3-1dcf2933ef34', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09cdbb90-9435-472e-91a0-0b8cc7082fff', NULL, 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e56bf686-3c6c-485e-9240-a8fd8fe67b29', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '962281d2-0226-4e95-a682-a99c3a437f88', '62cd8ee8-96a5-4a38-b5f2-65a41ac34c72', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f373e05c-54af-424c-937c-a4ae657dd7c5', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', '962281d2-0226-4e95-a682-a99c3a437f88', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f85209c-6b56-4ac1-90d6-afbd1d0b9d19', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '962281d2-0226-4e95-a682-a99c3a437f88', '861ce7c1-cd92-40cd-963a-0c0e5caadc08', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae019915-93e0-4ae3-8e38-c4b1f5745c37', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '485b7c84-8089-47f4-8111-f6533cb8b959', '1d7dba81-1bb8-4e28-a1b3-0e5376b5646f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9a9bf81-3dfc-4e71-b847-916862598d89', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '79cc0827-439d-4357-8749-97d21830f648', '485b7c84-8089-47f4-8111-f6533cb8b959', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('50e6c6de-a3b5-4976-a2ae-a9f441950e21', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '861ce7c1-cd92-40cd-963a-0c0e5caadc08', '485b7c84-8089-47f4-8111-f6533cb8b959', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d901cdd6-ce9a-4630-b518-cfbd6ec88e08', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '485b7c84-8089-47f4-8111-f6533cb8b959', '1cf65eee-3ae3-4c77-9ce0-e156db37da82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d37a4b84-6990-4f7a-b546-06adb3b39d62', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '485b7c84-8089-47f4-8111-f6533cb8b959', '8dca2daf-408f-4e45-a777-a3f61b543450', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('900061f4-11a6-42cc-aead-c4f314850c66', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '485b7c84-8089-47f4-8111-f6533cb8b959', 'c25516ad-8358-49e5-ae55-ccecc2fc9b3b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38d425b4-6e8d-43d2-a6eb-393b5c79fd1c', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, '408c77c7-1c50-46c2-a0e3-27046473e0a5', '861ce7c1-cd92-40cd-963a-0c0e5caadc08', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('592c5e12-ee95-43ac-a592-7f2bdcde63f8', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', NULL, 'dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7ab4197-e81f-45ee-b5f0-7f518f5c842d', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'ddb6560c-5ec6-4eeb-a43f-9194035ae988', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6f470e75-8ad1-46e7-aed2-414e101f9d77', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '9815ea68-519b-4aa0-9f9b-f0667a3c9467', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d7ec8cf-f323-4cc3-a138-12de90652dc1', NULL, '9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '9815ea68-519b-4aa0-9f9b-f0667a3c9467', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cdf1a128-4f1f-4073-8720-5f63bf6f6eb0', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, 'aed54bde-3462-48f9-8845-b2917efd4a52', '36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aaf1f9ec-78fe-4abc-ab7c-9f9d213cba32', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'aed54bde-3462-48f9-8845-b2917efd4a52', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93af6e03-ea35-445e-8481-30404326d0f3', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, 'aed54bde-3462-48f9-8845-b2917efd4a52', '1c67671f-349a-489d-98f2-7a6e6fc84746', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8db9fcd9-ccbb-4b4b-96b2-f166abae4011', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '2679288a-5661-4387-be6d-808e13e2f1d1', '8b746056-f66e-4de2-9899-1c19df064764', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a6f1758-e7e2-4528-8604-7becdc876d20', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', '2679288a-5661-4387-be6d-808e13e2f1d1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d1f21c4a-cafa-44a5-a383-53c677e9e6b0', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '1c67671f-349a-489d-98f2-7a6e6fc84746', '2679288a-5661-4387-be6d-808e13e2f1d1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1568402-7a7c-4599-b791-9e5ab5bf27e7', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '2679288a-5661-4387-be6d-808e13e2f1d1', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('807dad87-d52b-437a-9ba7-d5d6e76fd9f0', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, '2679288a-5661-4387-be6d-808e13e2f1d1', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('882967f8-21c7-4856-8799-623b638ea88a', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '1c67671f-349a-489d-98f2-7a6e6fc84746', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81eeb652-5d64-4aab-a1ce-8f53e3820775', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '9815ea68-519b-4aa0-9f9b-f0667a3c9467', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('834572bb-e7be-4765-95f9-e94f0935dd9b', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'a9515288-170d-4817-852c-43403863ec9a', '00f7119a-b78a-414f-8760-2689d85e8e01', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c721a25-a1aa-485a-89f3-531911b7ce9b', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'a9515288-170d-4817-852c-43403863ec9a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1619a61-9896-44e3-9898-ca393f1fbee2', NULL, 'a9515288-170d-4817-852c-43403863ec9a', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'a9515288-170d-4817-852c-43403863ec9a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5cf299fa-6261-46e6-9974-6f062373a48a', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, '41040940-a56e-431d-b876-43c26ee04cca', '1294da14-f1c6-49e8-9c42-70c91489e867', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1b7de17-b301-433c-8d10-8fe3e874cce7', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'a9515288-170d-4817-852c-43403863ec9a', '41040940-a56e-431d-b876-43c26ee04cca', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6cb3328f-4831-435c-aa91-4cdd7bd68807', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, '41040940-a56e-431d-b876-43c26ee04cca', '73f146ee-548d-4429-9146-5b75c6d9f457', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1de8975d-fe4e-4758-a641-0ad13da8b29b', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', '39276e87-f1cb-40bf-b0b2-5d9d6308ec41', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9bf6ddc8-2993-4ea6-b91b-3ec9bf011f64', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71351773-c809-49c6-9378-2d4721838844', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, '73f146ee-548d-4429-9146-5b75c6d9f457', 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3392bbf-5b85-4f92-9beb-c0c797ab22f0', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', '96bb1170-326f-47f1-a8d5-c6b9451cbc11', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c15fe39b-5820-44cf-956d-3f375ae1a3a2', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'e5bcf7c1-ea1f-4c6d-b073-751380d13765', '0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae443b50-160c-4d74-90db-545039da22cd', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', '73f146ee-548d-4429-9146-5b75c6d9f457', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16598295-8a75-47bb-b99a-1d660f1725ac', '2267ef17-1092-4799-b042-8b06389bd4a9', NULL, 'c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'a9515288-170d-4817-852c-43403863ec9a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e55edbe7-871a-4e3a-a145-9546b1a4c969', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', '2a074a2d-95cf-4e3e-bb86-0b574f1eb725', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d1e2a054-9831-4b9f-9d06-02d705b021fa', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79901c0d-bcbb-4e0b-9cfa-1a44796c200d', NULL, 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ff7ea66-98b1-4a17-8b4a-4321e44bd2c0', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'fb83effe-60ab-419e-9ad7-d0ca116888c8', 'f8764363-b3fa-4008-9686-98403ecc66ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4c7c8ac0-7a0e-43e7-a791-3ec53d7ed391', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', 'fb83effe-60ab-419e-9ad7-d0ca116888c8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a1797c24-2e12-4563-975c-9e30751877b5', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'fb83effe-60ab-419e-9ad7-d0ca116888c8', 'a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5ddb2f3-0b52-4478-bf41-22fc6701513a', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'b57a71fc-19af-43e2-976c-5572d455f343', '7585e5c2-0759-4aa9-ae5d-680620e29838', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d4c6bf8-70ee-4dad-8af1-b2546cdde3de', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', 'b57a71fc-19af-43e2-976c-5572d455f343', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1443f60d-caf0-408a-b9aa-fa50142d4c18', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', 'b57a71fc-19af-43e2-976c-5572d455f343', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('caa0c381-b269-4e38-9a6b-1f37960cb372', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'b57a71fc-19af-43e2-976c-5572d455f343', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cdf43173-6c05-4b7c-95ea-70dc668743d9', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'b57a71fc-19af-43e2-976c-5572d455f343', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21c8da71-c2ee-46a7-a3c0-b54525372c5f', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', 'a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e913e5d-6fb0-4726-9cda-3cf20c75ac31', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', 'd660a6f5-b185-4fd2-af58-fd3e9a69b8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8127af6-5500-4763-b65b-7e6d2d380637', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '2953305f-c465-4345-b16f-68ed28de5249', 'f2c74d1f-ef48-4642-9cc8-d88e5683267a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10738bae-3535-4224-a8ae-6dfb4cbeb1ec', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '2953305f-c465-4345-b16f-68ed28de5249', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b27c36e-6c31-4828-acf9-1302a3479780', NULL, '2953305f-c465-4345-b16f-68ed28de5249', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '2953305f-c465-4345-b16f-68ed28de5249', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4321c9d0-0dff-4f0f-9aaf-109f09155691', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '762cefda-0cb3-41e5-995a-b87f654b4b8c', '5bece03d-348c-4af5-a42b-784c02b74cdd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bed1e8ee-1074-41fd-9177-a19a6321f8e7', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '2953305f-c465-4345-b16f-68ed28de5249', '762cefda-0cb3-41e5-995a-b87f654b4b8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f885ed0-7110-4813-b4ef-4bd3a2452a18', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '762cefda-0cb3-41e5-995a-b87f654b4b8c', '9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de39150e-4159-4613-911a-f3ef18defdd6', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, 'c42097a3-922d-4e0b-9b47-00a804174f48', 'd3e3df00-d5ed-43e6-b416-995715f69a57', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dea3d23a-d723-4f8c-9f1d-23e11c6d70eb', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', 'c42097a3-922d-4e0b-9b47-00a804174f48', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a700816-56a0-46dd-917f-6095670283df', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, '9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', 'c42097a3-922d-4e0b-9b47-00a804174f48', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f8335be7-2b24-45b2-943e-83e896543235', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, 'c42097a3-922d-4e0b-9b47-00a804174f48', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad7e91d4-e795-4878-ad92-3aaf70abd5be', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, 'c42097a3-922d-4e0b-9b47-00a804174f48', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('731c1667-656a-45fc-aef5-91cf3c7dab74', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ce9e91a-2ac9-4fa7-a552-2eb3b57e6e26', '05f9829a-f505-4758-891e-5f38b5242d75', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '2953305f-c465-4345-b16f-68ed28de5249', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a608656e-f32c-4dc6-b48a-64bc946247e3', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '48c51969-edf6-475e-a24f-f55430f7af85', '8e6c324d-d5e6-4028-851b-d72b367a6ab8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14976d86-fbfd-47d0-aa7c-8ae184b6e0c8', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '48c51969-edf6-475e-a24f-f55430f7af85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8e0df8c2-3fd7-441e-8361-51d68a25a2ed', NULL, '48c51969-edf6-475e-a24f-f55430f7af85', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '48c51969-edf6-475e-a24f-f55430f7af85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5515c432-d681-46c9-b278-b7aab2bedee4', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '589e092b-bb46-48c1-b6ed-bfd8aa18c037', '2afe5f37-d88c-49f6-ad20-556c27d7148e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91582bd5-07a2-46c3-91ed-cf07ba1cbf85', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '48c51969-edf6-475e-a24f-f55430f7af85', '589e092b-bb46-48c1-b6ed-bfd8aa18c037', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('11d3c9a6-bd05-4bc8-b3b7-98ad9d4700d4', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '589e092b-bb46-48c1-b6ed-bfd8aa18c037', '482facc0-a3f1-474e-8f3c-7a92d54dd5a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e7fc126-1ad4-4fb3-a383-fcb8114361b6', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', 'be0ee1f3-37cb-4d1c-914e-8f2a34480f28', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1fd6f453-4374-443c-905c-dcf569726f51', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '0818dc0a-1fd2-4a99-901e-0dab13697d85', '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1124c3a5-e3b0-48bd-87c5-f2efd12b4fc6', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '482facc0-a3f1-474e-8f3c-7a92d54dd5a6', '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('064a3216-0dd8-4df4-a7ad-1254c72848b8', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', '461bfac0-a91d-41d5-a96c-4987a67f59f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c15d70a2-8bf0-4f5f-bbc4-d1d75bc54d67', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, '9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a26c6958-e0b0-4707-9333-56b02d4f04ad', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '482facc0-a3f1-474e-8f3c-7a92d54dd5a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8bf8b351-b85e-4b95-b83a-6d88e8dadb7c', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '48c51969-edf6-475e-a24f-f55430f7af85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9f23448-fbb9-4b81-bd89-30ba1b5e70d6', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'e83be41f-07c7-408a-9d45-504f7897e2d4', '1c2f2009-dc94-4b39-b3ae-5cfca518767d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fefae46f-f4e2-4467-9135-bcb88995ab00', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'e83be41f-07c7-408a-9d45-504f7897e2d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d11c4aee-3e66-45cd-84a2-e001aa8a8083', NULL, 'e83be41f-07c7-408a-9d45-504f7897e2d4', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e83be41f-07c7-408a-9d45-504f7897e2d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e7edfc4-7520-4b7e-9867-ebd8e3b4c1a5', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '1e3b494a-859e-40b2-84d2-ce25081f04b1', '2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc5b3f5d-e3bf-4392-875a-8f30340659d7', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'e83be41f-07c7-408a-9d45-504f7897e2d4', '1e3b494a-859e-40b2-84d2-ce25081f04b1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cae858ba-27b4-4c38-95df-5fee0006dac3', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '1e3b494a-859e-40b2-84d2-ce25081f04b1', '40d1a082-2612-4b10-92ad-970d6d9ff4ac', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0ae9774f-0206-4995-88bc-b25e2193a64c', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', 'd56a809a-d37f-4423-b3c6-4a401af7dcaa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbcab82d-a66f-4191-aa2b-027d5835c68e', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6202c5d5-2701-43ed-95e2-23216f4e5b76', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '40d1a082-2612-4b10-92ad-970d6d9ff4ac', 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e32d373-bbed-4876-b545-7dc19ac97bbf', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c49455ee-809a-4823-aeb9-affa173ed8ef', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, 'bb129bdb-1b70-4c35-97cc-ff6396197e0c', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fc90f7e-1ee1-453b-90cb-fa463a6d74c5', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '40d1a082-2612-4b10-92ad-970d6d9ff4ac', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6db0db5f-b278-473a-a75d-aa95d356cd1b', 'ede0d030-8e66-469a-a11f-43f818863809', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'e83be41f-07c7-408a-9d45-504f7897e2d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5285d42-68a7-4ab9-9263-e22dabc1aa6b', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'c759b6c3-65c1-4c2f-b440-3070b36677d9', '0628ac11-f65f-496f-a0b5-83bed9d9d74c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0db403ba-195f-4d36-8b6c-f2e2fe60b873', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c759b6c3-65c1-4c2f-b440-3070b36677d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad82f9a7-547f-4357-b331-e01923d203d3', NULL, 'c759b6c3-65c1-4c2f-b440-3070b36677d9', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c759b6c3-65c1-4c2f-b440-3070b36677d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7dcfc300-f892-428a-ba4c-22a89e3f7ab1', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '65f3a917-8510-43ed-b64a-9fb875dcef14', '4f3efcac-830c-4de6-b108-42bb8d0c07f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac4d3a05-5598-423b-b9c5-c49694ee749f', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'c759b6c3-65c1-4c2f-b440-3070b36677d9', '65f3a917-8510-43ed-b64a-9fb875dcef14', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fd76805-ef27-4823-80c4-f33598a67db7', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '65f3a917-8510-43ed-b64a-9fb875dcef14', '00712e6b-e706-4e0f-b551-c7dc4614857d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6086f835-a0c5-4bbe-ac0d-557eeeff1280', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'bc411acd-2a6e-4386-a537-2d98708ff312', '34e55b26-e390-45f4-a397-3027cc7541aa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6a17e597-9dd3-4797-a898-6894b1bba68c', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'bc411acd-2a6e-4386-a537-2d98708ff312', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f2bb266-82be-48a0-bccd-e86bd34345a8', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '00712e6b-e706-4e0f-b551-c7dc4614857d', 'bc411acd-2a6e-4386-a537-2d98708ff312', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('24fc2faa-4977-4c08-84d3-2d712034991a', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'bc411acd-2a6e-4386-a537-2d98708ff312', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9dba518b-a1ff-4a66-b77d-5c10793741ed', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, 'bc411acd-2a6e-4386-a537-2d98708ff312', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6a24c26-f935-4518-975c-eb63dd1d669b', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '00712e6b-e706-4e0f-b551-c7dc4614857d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('766e2e1c-5454-495b-a8c5-38cfb14ce770', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'c759b6c3-65c1-4c2f-b440-3070b36677d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7bc3a52b-04c1-449e-8b53-d168447179a1', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', '4d491bcf-e24b-432a-a01e-231f920f0d85', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a999b297-6590-494f-b2f9-56d70115562c', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1392f901-b8c4-4c02-8fe9-4c6e2ead3249', NULL, 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0553ddc1-1fae-48f0-8970-78cf034a1d38', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '3886e13c-4802-49c6-8c94-7439d5f609d0', 'e2894082-0f26-4e3f-a1d4-ee1d0d769b0a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f427272e-c63c-46c5-8949-ecf06106223d', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', '3886e13c-4802-49c6-8c94-7439d5f609d0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd1b9ca8-c67f-405f-a50f-149a5ca514c6', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '3886e13c-4802-49c6-8c94-7439d5f609d0', '3df71fa7-354e-487e-b007-81c01e03fcc5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41ee9e5c-0a2f-49c3-9346-59628c20073d', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', '3659ec5a-b205-4278-a4e9-dff7fe00b9ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b979e83-f11e-4c89-a9da-118a934ac671', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bddc0b3a-7de2-42c8-8892-29bb2c015db7', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '3df71fa7-354e-487e-b007-81c01e03fcc5', '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96aa8b92-8e7a-42c0-abc8-0716ad2d4eb6', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bba36964-60d5-4fc6-8737-7a3ec405ab0e', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '5aa5b42e-b148-4681-8188-5e4ae09c2a1c', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('097d24ca-c280-4054-9f00-f7ce13fd2226', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '3df71fa7-354e-487e-b007-81c01e03fcc5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a68ee886-dfe4-4894-80f9-b14b46540a40', '505337e7-2099-4d83-a2f5-7447bc63a387', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'dc086b9e-22f3-4f9f-9c37-eeef9edbed06', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4686a55-a1ca-4e72-967f-902a7d85525c', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, 'cb308667-ef0e-4af4-96b7-67bafa383953', 'c5a7163d-7bb5-4b47-8505-26f154c30e66', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('315b15d3-63df-4207-926c-365b7312faad', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'cb308667-ef0e-4af4-96b7-67bafa383953', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e6125e3-c155-46dd-af26-c7824f530b9d', NULL, 'cb308667-ef0e-4af4-96b7-67bafa383953', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'cb308667-ef0e-4af4-96b7-67bafa383953', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0fb32bc-ee73-45b3-8997-044f09e75436', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '42589adb-5faf-46f4-88bd-53baa315c72c', 'd2f26da2-0726-4c1f-819f-a1c7267964b3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cdc3eb33-e3b4-4d02-a5e9-d9c7f61fcb0e', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, 'cb308667-ef0e-4af4-96b7-67bafa383953', '42589adb-5faf-46f4-88bd-53baa315c72c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92dcaede-9c88-40f0-9624-b96cb12de14b', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '42589adb-5faf-46f4-88bd-53baa315c72c', '37947345-1e74-45a2-bb5a-964534106fe4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8dc17fa2-d450-4f84-8814-01e25dac54dd', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '8c474a1f-2ec2-40c2-81c7-da3178b41434', 'af2eb413-09ad-4542-b6b5-28b71749e727', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a927d01c-f88d-4205-a0ef-8e54f5c6548d', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', '8c474a1f-2ec2-40c2-81c7-da3178b41434', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d2877ff9-93bf-4b26-9547-7704048b39db', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '37947345-1e74-45a2-bb5a-964534106fe4', '8c474a1f-2ec2-40c2-81c7-da3178b41434', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79c6ecac-aaaf-4251-9ad1-bcef2c126331', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '8c474a1f-2ec2-40c2-81c7-da3178b41434', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3fc43974-a7f2-4a60-945f-0d69ad8d0f38', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '8c474a1f-2ec2-40c2-81c7-da3178b41434', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd83ba63-d1b1-47bf-a824-0599b194ce90', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '37947345-1e74-45a2-bb5a-964534106fe4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c14b9df9-2ab4-419f-9027-f731473cda07', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'cb308667-ef0e-4af4-96b7-67bafa383953', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6582895a-33d9-4c5e-8d67-e0795697756b', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', '4366b352-4589-4a16-b88e-6c556e017189', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd96e774-7146-4d9a-ba97-c1cd95206310', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f9a54fa-7b68-4830-a33e-4addfddf22f2', NULL, '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9f1e25a6-72b5-4408-bac1-9d0f8fffb5ff', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'a046da0d-216b-4e65-85fa-9a9e512b8546', '4acdd71c-3792-4b5e-8551-1f260352d690', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c616c36-80ca-49fa-ba73-a90605c0afa0', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', 'a046da0d-216b-4e65-85fa-9a9e512b8546', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('48364413-6040-4cd3-9ee3-47f6c48b8cd5', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'a046da0d-216b-4e65-85fa-9a9e512b8546', 'fb868a05-aa95-4c3a-892f-95866efb0bfb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0889469-6524-4f57-a344-b36d8dbd0190', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'eeaa4092-85ba-423e-b6c1-24baf93477a2', '145e0fa5-f5f2-4bbe-a14c-1c6e11adca73', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b4e4c255-3089-4bb7-8569-12068e49c34e', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'eeaa4092-85ba-423e-b6c1-24baf93477a2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72d454fe-2b81-484b-8c62-ecea11fac627', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'fb868a05-aa95-4c3a-892f-95866efb0bfb', 'eeaa4092-85ba-423e-b6c1-24baf93477a2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74ce874d-c826-4bf8-bdd8-a5f9d35ab553', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'eeaa4092-85ba-423e-b6c1-24baf93477a2', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5060d31b-b1f5-4f59-a82b-00892d620746', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, 'eeaa4092-85ba-423e-b6c1-24baf93477a2', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('17e73489-d624-40fe-866b-4339aab97e92', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'fb868a05-aa95-4c3a-892f-95866efb0bfb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b8dd387-f171-412f-8e5f-57e23c0e3c85', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0ea83b9-a27f-42d0-afdf-5f3887d2a8f6', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', '585ff2f1-f8dc-4a0d-879e-8ed1720d44d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d4a7cfc8-0158-4afc-b9f7-72abefd38d8c', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de77330d-0c72-4034-82d1-03cc8e12ac18', NULL, 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b80eeaec-71b4-47ff-b07b-b87a5d244e51', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '36011508-4a4f-4f37-9fb3-18d00c661ff7', 'bd0640a8-f20f-49b2-84dd-054f4d0dcec5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b02d9ad9-86a5-449d-a5dc-9784f43a22f1', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', '36011508-4a4f-4f37-9fb3-18d00c661ff7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16c5d0b9-2467-4222-8933-6cacbde76a34', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '36011508-4a4f-4f37-9fb3-18d00c661ff7', 'adce5859-3567-441d-9159-e39116a6763b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad84f57a-11a0-415b-bc3e-d91bc587ca76', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', '5d23f435-7b8f-46ad-b602-9d3b9203c345', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81d410de-a49a-4e0c-9be7-aca83ad9a649', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82feae72-2c7c-4761-8062-aa7d523147be', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, 'adce5859-3567-441d-9159-e39116a6763b', '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71a28f2e-6c43-49f5-bea9-4986ab8babe1', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a2b5c2f-fbdf-4b25-99ef-d6908581f45c', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '80b7f5a5-ae51-4a71-a8c5-23b355d72eae', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('63836bc9-ed95-4285-94bb-757d2a291a10', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'adce5859-3567-441d-9159-e39116a6763b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('949fc6d0-e2c5-46e6-8117-29f842b28ddd', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'fa7fe745-543f-4e81-b368-2fb7da4dc1d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f910276c-86a4-4339-b816-61289a2aed84', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '314604d4-4063-4192-b142-1a0410275882', 'db46c382-1297-407e-8b17-fa6ca42f3427', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9fbf5fd-b1e9-41c8-a95f-dadc8821b204', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '314604d4-4063-4192-b142-1a0410275882', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('06a66373-83c7-42b4-a23e-e995fcdc8cd4', NULL, '314604d4-4063-4192-b142-1a0410275882', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '314604d4-4063-4192-b142-1a0410275882', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ecb4b4a6-9fe9-4229-9523-6067c8e5de2f', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', 'e75fb595-0779-483f-b421-fd0dab2579c5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('900d1194-60d8-4ea9-9a1b-ac18ead69afc', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '314604d4-4063-4192-b142-1a0410275882', '26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5fa3654-ecd2-487e-8b23-6bc6877b1c0c', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', 'bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0fc94edc-5af5-4bcc-87ae-8a0c34adda56', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '23fd725b-ed04-4bcb-ad25-55809e416f6b', '1f8b2363-d7b7-464a-9b3e-5f19b6703bbb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef6a699b-6e46-4c56-a203-10be225e3a0f', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, 'f7a89449-2ef6-44b9-95df-b32b6a9f290b', '23fd725b-ed04-4bcb-ad25-55809e416f6b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('189917fd-e021-4671-8070-62c60e1879bf', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, 'bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', '23fd725b-ed04-4bcb-ad25-55809e416f6b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b356d97-87ee-41f9-8682-3775959a2fe3', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '23fd725b-ed04-4bcb-ad25-55809e416f6b', '54cac581-c28a-4727-82ac-0f4af93da96d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('441597bd-cd21-4701-ac0a-a6960651e735', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '23fd725b-ed04-4bcb-ad25-55809e416f6b', '0a2e5ced-6a56-4413-86f4-b2e663feb0e9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b28d419d-fda1-4003-984f-a88443a62913', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', 'bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f65d0fb2-840a-445b-a237-f4742432a379', '8ae4d050-ac5a-4bd4-affd-53de24264815', NULL, '3f0dc306-e3b9-4324-a05d-1de298db1039', '314604d4-4063-4192-b142-1a0410275882', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0856aa7b-5431-48e9-be07-c4db16cfd66a', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', 'a1267d62-7c06-4a1a-9d18-1306f501e984', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('05950b01-d5ae-484a-abb9-1b481b7acab0', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b41362ae-296c-4603-8855-df7ebe902948', NULL, 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad550e9e-5354-42ac-8289-4f3b54b7ce06', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '1df8e8bb-fded-413b-81ab-ab105f4407c3', '77c5c6dc-a2fd-4f6a-b23b-11092c27876d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a73ac14d-76a6-4f23-bd99-3e4fde9b4173', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', '1df8e8bb-fded-413b-81ab-ab105f4407c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72628e20-ccbf-42af-839d-739c7f1782f6', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '1df8e8bb-fded-413b-81ab-ab105f4407c3', '428e4654-0d62-4306-a97b-325b311a78e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be6fe26c-7dae-4496-bfe2-93352dbd7845', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '02b7d33b-d6e6-4e70-9eca-103a1f33460a', '2405df12-73ad-4abf-8f63-a88a795ca61d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('687db200-219a-43b3-9fe8-965df06c0ce0', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', '02b7d33b-d6e6-4e70-9eca-103a1f33460a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8830a3f5-f0ae-4785-abc5-848fdd48d30b', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '428e4654-0d62-4306-a97b-325b311a78e4', '02b7d33b-d6e6-4e70-9eca-103a1f33460a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fd5f6ba-aaaf-4b9e-958b-a54a008deb36', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '02b7d33b-d6e6-4e70-9eca-103a1f33460a', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1ea3369-4a11-42d0-9c7f-784ec97f8847', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '02b7d33b-d6e6-4e70-9eca-103a1f33460a', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa1562b0-6617-4c00-b5f2-7ffaa87f7f41', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, '02b7d33b-d6e6-4e70-9eca-103a1f33460a', '64b677c5-c58c-4a84-95d4-69d005c4a682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c786af52-8293-4e0c-81fd-068478fd6df0', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', '428e4654-0d62-4306-a97b-325b311a78e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec588262-5f08-4bde-8a98-8d0d6d20f8cc', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', 'b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9dd8a45-0f4c-47d1-9dca-2ebc3688560f', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '6690edba-2f37-479f-9349-446be36b63cc', 'c56f4683-f55b-433e-83c0-597088586aac', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27bedf05-0c1d-4a4a-8d1d-e36760da2edc', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '6690edba-2f37-479f-9349-446be36b63cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('013beea0-7328-4237-8d65-1169e559acbe', NULL, '6690edba-2f37-479f-9349-446be36b63cc', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '6690edba-2f37-479f-9349-446be36b63cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('44ef3ad6-7694-4345-bdc2-fbf049c4b90e', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '4c7032f9-b39b-4e81-afb1-4aad349538ee', '260c29b7-089d-422b-9ce7-d65949cc8e8b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ca813b9-b9a1-498d-a667-daf37961fd7d', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '6690edba-2f37-479f-9349-446be36b63cc', '4c7032f9-b39b-4e81-afb1-4aad349538ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82129a6a-c098-4472-b8ae-49113e5de0fd', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '4c7032f9-b39b-4e81-afb1-4aad349538ee', '8c276820-a255-4c60-b5b8-f57810e0ab39', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b50113d-ac43-4415-b6ec-3d3532b197d7', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '5c08efb0-89cd-4274-b0b2-09e232d3c60b', '3bc42c36-3682-4450-86d4-9db827bbf552', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92a399be-0fc6-47de-a02d-09275087fc8b', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', '5c08efb0-89cd-4274-b0b2-09e232d3c60b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4bfe5ad2-6ab8-495d-a4eb-37cc47f3892e', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '8c276820-a255-4c60-b5b8-f57810e0ab39', '5c08efb0-89cd-4274-b0b2-09e232d3c60b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e8f21a2f-1130-42ba-9d41-248bd16f7159', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '5c08efb0-89cd-4274-b0b2-09e232d3c60b', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5774b6fa-a741-4361-a340-977ef2c6b2ab', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '5c08efb0-89cd-4274-b0b2-09e232d3c60b', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d5cc290-f45b-4c15-880c-c25ebb5fdaf3', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, '5c08efb0-89cd-4274-b0b2-09e232d3c60b', '64b677c5-c58c-4a84-95d4-69d005c4a682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0619144-ee74-4fbe-8182-d18261da9993', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', '8c276820-a255-4c60-b5b8-f57810e0ab39', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4382f4e-a9af-4493-ad6e-b109cf80079a', '264dc502-036f-4af7-b5aa-f991cfe795b5', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '6690edba-2f37-479f-9349-446be36b63cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8605607f-26fb-495c-82ac-42baa707b56f', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', 'd4012885-17dd-45e2-9d1f-3ab661fbdaf0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0017a9ca-b85e-4dc0-867e-15036149cba9', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14d42cb2-68ab-47bf-863c-547ba0472de3', NULL, '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b407edf6-d9ba-407e-af1c-cff2a869a735', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '3e8da516-8841-4987-954c-15909540f046', 'f929caff-d41f-4977-8419-41d193019baa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c5c88e1-0974-404c-a645-e4bcf3330378', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', '3e8da516-8841-4987-954c-15909540f046', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0f3e31d-e0ec-4d47-8c95-1ac38185f5fc', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '3e8da516-8841-4987-954c-15909540f046', '5181412d-2787-460c-b51e-2f2c97f8e051', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2970ea9d-bfcb-4b61-a5bb-4076233b83b3', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', 'fbc8962a-0b33-4562-8846-a5e08e177fe1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1eb2d9c0-0884-4206-9ddf-44151bd3034f', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10066fa0-d296-4367-8bf5-5f50ef9abdde', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, '5181412d-2787-460c-b51e-2f2c97f8e051', 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f548ccb4-2c52-4e6b-8127-eb40edcb900a', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c6eec46-fb2b-4049-9c53-43ee8f9f982e', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e7c0870-2f3d-4693-9adf-fccf8e5d24f6', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', '64b677c5-c58c-4a84-95d4-69d005c4a682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0964c90e-554f-44a0-99da-6d1162e920a3', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', '5181412d-2787-460c-b51e-2f2c97f8e051', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0b73402-934c-4979-ba0c-5ccf77dd1b0c', '9c568d47-146a-4be9-8ae0-c233ef79b212', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f290e688-30d1-4f88-bb7b-ef7c08df7db3', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '217190fa-fa45-4a12-a2d8-a58aaa6732c4', '3f222530-009d-4cbd-8dce-4a256cab417e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e8f9b07-cefb-4a05-84df-64056ea50248', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '217190fa-fa45-4a12-a2d8-a58aaa6732c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e099b00-5bbd-4e4f-8f72-aaba3cf39888', NULL, '217190fa-fa45-4a12-a2d8-a58aaa6732c4', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '217190fa-fa45-4a12-a2d8-a58aaa6732c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc3e750d-dff9-4ee7-af6b-7f3fcb607606', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '506b8a02-350a-4802-8639-d35c231a047d', 'b7df4616-86d2-40bb-b70d-35c71a8e533d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0bfdc764-008c-4b5f-a646-95bbd42e992f', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '217190fa-fa45-4a12-a2d8-a58aaa6732c4', '506b8a02-350a-4802-8639-d35c231a047d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9a6a87b-ddbc-4fd4-b33b-7a4d17e5d997', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '506b8a02-350a-4802-8639-d35c231a047d', 'b4bcd762-98c2-44ab-a130-2be6e83d23a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d147984-c019-4266-99a6-a0f394f9ddbf', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', '375e0bcf-050b-4956-b371-5a84495f0259', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07b11699-4786-464b-bf66-40aecfb4451d', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, '8d8536df-c84f-466b-bd46-17e8ff67b43c', 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8e9557ac-0162-40cf-9627-3791b86e5990', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'b4bcd762-98c2-44ab-a130-2be6e83d23a8', 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8dc73446-b596-4ccd-9829-5422e625a165', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', '12f0b062-6115-42d3-b1bd-b82a0e31efd9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('787aa436-6f02-4bc3-87ee-f56dc39c0bfb', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', '5b97fea3-07be-443f-87f4-9a0764e31215', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('15359b82-a307-4205-96d7-24ac49de688e', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'af1a2c68-ad3e-461f-8ddc-e952532bb50a', '64b677c5-c58c-4a84-95d4-69d005c4a682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0032e621-3837-4001-91e0-9cc2ef134138', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'b0fbb802-35bf-4971-92a3-225bd6433052', 'b4bcd762-98c2-44ab-a130-2be6e83d23a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc078dc5-8624-4b05-bfe2-c6b7099f1142', '3b3cb721-4348-4aae-afea-5935d3e9475c', NULL, 'a48c6e6e-77e8-481a-bca0-916150b6fd20', '217190fa-fa45-4a12-a2d8-a58aaa6732c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eea8f04e-a63e-4056-862d-34f82f9723ae', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, '57bcec51-b2c9-426d-b301-3ee801acd8a5', '0087a277-dcd8-4df6-9209-8b817864d2a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31226058-44fa-4c9f-ba90-b2d28c2bf8e7', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '57bcec51-b2c9-426d-b301-3ee801acd8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa387d12-9904-400d-8007-6d12959a943a', NULL, '57bcec51-b2c9-426d-b301-3ee801acd8a5', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '57bcec51-b2c9-426d-b301-3ee801acd8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01604535-6e65-48e4-9ceb-aae87ca2c794', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'e9f3374b-749a-4548-9436-29a75e5e18ab', '9bc9d256-bf9a-4a42-a26e-36cf1ed29a05', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a63f3e8d-cbdc-4bcc-b8c6-61165f2efa84', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, '57bcec51-b2c9-426d-b301-3ee801acd8a5', 'e9f3374b-749a-4548-9436-29a75e5e18ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95968f88-daa4-44a3-b00e-357f8c683b17', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'e9f3374b-749a-4548-9436-29a75e5e18ab', 'fa988deb-0f9d-49a3-a075-147134d037dc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('19a90787-707a-4daf-9142-0f7c57e5c060', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', '43ed3caa-00d8-4718-a695-b8901970ba7b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92694823-a96a-45a8-a954-62b2867a43ed', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f330e9f4-a296-4a24-94cf-82b475bfb43e', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'fa988deb-0f9d-49a3-a075-147134d037dc', 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10be02aa-6b95-45b0-a941-e43f146ee2a4', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbb34cc5-fe68-4ed6-9437-b87a82baffdf', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('50cecc6d-efa6-4fbe-b48a-d607da509088', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', 'd0d6036a-4fe9-4823-943d-bc784037a589', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb5149d3-2bf8-489a-ab88-21199f443f70', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, 'e9f3374b-749a-4548-9436-29a75e5e18ab', '062ce171-efc3-4f07-8aa1-3486948ade81', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f183d5b-b8d0-4663-a243-a73cb4ed314e', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'fa988deb-0f9d-49a3-a075-147134d037dc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8595d268-6376-4b1f-9e1f-9154132fc195', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '57bcec51-b2c9-426d-b301-3ee801acd8a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf02977a-ff05-431b-952c-26e6d580b4a5', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', '8d023e54-6993-4429-87cd-29cca95b1161', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eaca8dd6-fe83-42c1-9cc7-f98dd9779760', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2cc0d7a4-41c7-4e93-918f-d392fe0e236d', NULL, 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('033d1de1-06a4-443a-bee6-b564cf78d8be', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', '1fea3f9c-8227-4419-963a-aa00d2a07abd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a900f3b4-4340-45df-b5ea-816f12a67bcf', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', '6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('906b599a-e2e5-4ae0-9231-7038de01ed56', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', '9a7c9014-0599-4afc-b01e-f0346d717c17', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76595b43-99fa-486d-a12b-b286ad13f777', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', '467ef1e1-2f3b-44e6-b369-1bb744dd1f01', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5b96ad0-50cf-42f4-962b-4768c42986ad', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37420bc0-0ce4-437b-a74a-ea60f2418f05', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '9a7c9014-0599-4afc-b01e-f0346d717c17', 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb623276-ae7e-43d9-b3d5-5ee27b44583c', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1491b473-789a-478c-ba91-887e58506ae0', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0529dc40-75c1-47cd-ae8a-4b4fd292757b', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, 'f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'd0d6036a-4fe9-4823-943d-bc784037a589', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc95d082-68e6-42fa-ab61-f8209bcea3a9', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '9a7c9014-0599-4afc-b01e-f0346d717c17', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1699c76-7996-4eda-9045-40ab1e0febb4', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c043bfef-ac14-4135-83e8-425983ee3297', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', '18aded7e-c76a-44a6-810a-bb54651bbc35', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86ddb5d5-4279-4489-b352-f718c4d7a774', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0665312e-e91c-4c46-92d9-01ea6ea55ddb', NULL, '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9206d89d-77fe-43f6-b381-4c75be298c7f', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, 'b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', 'c58c8187-4976-41fb-85bc-241743be56f4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f2771880-fdea-4274-be1a-53767588ebae', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', 'b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0be6289-21e5-4bfb-85b2-211faae64213', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, 'b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', '13e241ab-7a0c-465b-a220-8349896e9191', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e01fc458-4140-4767-a472-9bbc32018c0e', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '712f655a-c76b-4a0d-a2c5-04ee76e398ec', '5be940e7-8aca-4535-8165-52759309ab2b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('caaf5819-e08c-432a-a1c8-d883222f1bed', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', '712f655a-c76b-4a0d-a2c5-04ee76e398ec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('593936c9-469e-4e58-bf19-d544c9ac1dd9', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '13e241ab-7a0c-465b-a220-8349896e9191', '712f655a-c76b-4a0d-a2c5-04ee76e398ec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01e8edbf-6cbd-4162-af7e-1467ab1cceab', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae328185-92e2-4a08-a882-c413fa3c9331', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db5a877f-e2ae-424b-b6ee-7a5ba8ca5b1e', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'd0d6036a-4fe9-4823-943d-bc784037a589', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ab3baafb-5d63-47e1-a5c2-d337fa87166a', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '13e241ab-7a0c-465b-a220-8349896e9191', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1645da2d-29ab-4aeb-b070-65cae977185c', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '4bc718f4-83d4-443d-8a80-93d3aeeadbd1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db8efc71-6e89-4fef-abcc-f4a9e82f9ca9', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', '5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('958a0011-8087-4e3a-bd6b-a2c8085f9641', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('595447da-d77b-4086-8a17-808b7ebddb73', NULL, '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f6a268f6-54b7-4b87-b1f9-b384e002db90', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, 'cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', '7d7d0f8d-1542-4252-b77b-379ffde0f1ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0235e108-8a50-4928-ad3d-d8502d4733e7', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', 'cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e5b3cb5-fd38-4a7f-99f9-af0281778a38', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, 'cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', '557aacc7-96fc-4c31-9a96-ecec09d7fe3f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('50fc8237-9067-4cf6-867b-8bf1663df5f3', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '5ecbb381-1585-46e6-b942-e3e14896ab77', 'd3342ab2-62af-402f-9ebd-fd9034349883', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aec65509-1e81-4e18-ac07-b6029d026a8f', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, 'cb843eb3-0d44-4099-a3ee-989d1f9f53d7', '5ecbb381-1585-46e6-b942-e3e14896ab77', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('551e630b-8873-47cd-b98d-b078e469448b', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '557aacc7-96fc-4c31-9a96-ecec09d7fe3f', '5ecbb381-1585-46e6-b942-e3e14896ab77', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5393008b-7aee-46da-8b11-dafcd363fa5b', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '5ecbb381-1585-46e6-b942-e3e14896ab77', 'b0ccd4de-9f63-4848-b52a-7ad776dddd78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53f03ac8-4d24-447b-9c0e-2a4c325391b7', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '5ecbb381-1585-46e6-b942-e3e14896ab77', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e0cb84e-dec2-436f-9057-aada5cdc260b', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '5ecbb381-1585-46e6-b942-e3e14896ab77', 'd0d6036a-4fe9-4823-943d-bc784037a589', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35714be6-bae6-422b-ad35-509f31660f23', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '557aacc7-96fc-4c31-9a96-ecec09d7fe3f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7dbbdde-8221-4b5e-99da-4ef047ab4b90', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('134ec181-6535-49b6-be0d-8a961c2d0e4b', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, 'c94be9f2-0de0-44ea-9f93-e48980321db2', '40de40b5-5752-4890-a138-89993f9fa518', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d9f88a3-f696-4047-9b32-b5cc7ed05ed7', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c94be9f2-0de0-44ea-9f93-e48980321db2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4b56205b-23bd-4334-9a74-d986c8052b01', NULL, 'c94be9f2-0de0-44ea-9f93-e48980321db2', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c94be9f2-0de0-44ea-9f93-e48980321db2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a33964c0-6026-484d-8d37-a01b64aef3a8', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '8dc77464-badc-4cb0-bc0b-d979585c87fc', '8b5eadc4-82fa-44ec-a8e9-ae3048a55980', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('896bd060-b54f-4e03-9e4e-991ff4810301', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, 'c94be9f2-0de0-44ea-9f93-e48980321db2', '8dc77464-badc-4cb0-bc0b-d979585c87fc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bcfe31ca-056e-4ad2-abb1-53fcc28172e9', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '8dc77464-badc-4cb0-bc0b-d979585c87fc', '53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6c86231b-ce08-44a8-842e-12b9ab140c8d', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '3f746db8-3087-48a4-b9fc-f5b980287905', 'c6a0f56a-8b53-4194-bb3f-9e0057ba4749', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d2c434d7-7f1b-4cfb-bae0-71271eea8872', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', '3f746db8-3087-48a4-b9fc-f5b980287905', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2a7f650c-693b-49aa-8286-784d6ac4ffc4', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', '3f746db8-3087-48a4-b9fc-f5b980287905', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fae07eaf-c35f-4824-82b3-04f49fa84b42', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '3f746db8-3087-48a4-b9fc-f5b980287905', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d056573-19fb-402e-b1ac-ecbfa48a1170', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '3f746db8-3087-48a4-b9fc-f5b980287905', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c4be81b-6a5d-4101-b51c-688ee6ffb013', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '3f746db8-3087-48a4-b9fc-f5b980287905', '9f4f63b2-6439-4c9c-ae86-305aca317339', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7ea9ef1-72aa-475b-b0bf-028eaa29a797', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c990eb25-e81d-4a14-b12c-d20cf141e66c', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'c94be9f2-0de0-44ea-9f93-e48980321db2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d307896d-c8f6-45fd-a973-7c4e922478c5', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', 'dc7d613a-e452-4daa-972d-4ce91d58eab7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34c46518-0c95-49a2-9123-e2c681c3ea4a', '526ddec1-2738-48dc-a696-6c3579201851', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1434bbcd-0a5d-453b-9c11-25458dd0acc6', NULL, 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a28d0b36-7c7d-4251-bb26-2d4abd30bbc7', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'af79a39c-1b00-485d-a4e7-5ee3a77afe65', '51d1c46e-09fb-4d20-9324-38a40083d746', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40baf788-76b6-4962-bb38-f2982dd2ac8b', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', 'af79a39c-1b00-485d-a4e7-5ee3a77afe65', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21b62218-a7b6-4c98-a7ba-1a09af89f252', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'af79a39c-1b00-485d-a4e7-5ee3a77afe65', '918c9a58-7fd3-490a-ace7-4e432cf6a2e3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d12af4d9-17dd-432a-ab1c-a89d5006aa57', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f05757fd-3ee2-4141-a98d-95096b86aa13', '7b1b31db-b751-42a0-b68c-a18329d42b82', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7071895-4348-455d-9939-32094853a229', '526ddec1-2738-48dc-a696-6c3579201851', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', 'f05757fd-3ee2-4141-a98d-95096b86aa13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9be35ac-c37c-4e20-8c5f-288dbf55abb6', '526ddec1-2738-48dc-a696-6c3579201851', NULL, '918c9a58-7fd3-490a-ace7-4e432cf6a2e3', 'f05757fd-3ee2-4141-a98d-95096b86aa13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1f528f7-3ab7-4c8d-95b2-fbb75b669d9b', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f05757fd-3ee2-4141-a98d-95096b86aa13', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5939075c-7567-49a0-8d25-1f4f3094c696', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f05757fd-3ee2-4141-a98d-95096b86aa13', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('166274f8-5d30-426b-ab02-e755c9bdb4d6', '526ddec1-2738-48dc-a696-6c3579201851', NULL, 'f05757fd-3ee2-4141-a98d-95096b86aa13', '9f4f63b2-6439-4c9c-ae86-305aca317339', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33d4aec1-8073-4e6d-857a-f88127846b1a', '526ddec1-2738-48dc-a696-6c3579201851', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '918c9a58-7fd3-490a-ace7-4e432cf6a2e3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d798c1e6-bbf3-4b99-ace2-a99919c93c98', '526ddec1-2738-48dc-a696-6c3579201851', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'f01235b8-39c1-42c4-83d5-a1e51c1fdd72', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4da134a5-7555-47c5-b14f-22c228fd25f0', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', 'e8bbadad-a89f-4ea3-a0fe-ad94420d7082', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df90a896-8a8f-4520-bbaa-f8b57751b7c6', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cfad0ac8-34d2-4a12-9be7-0f9fe5f25e50', NULL, 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ee279ae8-31e9-4a46-892a-fcd7d3b04ff1', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '91de9bc8-0c04-478b-b8dd-7d5ba36229ba', 'a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd19ae12-6efe-4886-abc0-b5c094253d52', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', '91de9bc8-0c04-478b-b8dd-7d5ba36229ba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af5c9025-6aac-4871-add9-523a2654e4dd', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '91de9bc8-0c04-478b-b8dd-7d5ba36229ba', '9a11ff8a-8a4e-42c5-b37e-7c9706747581', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46bd2bdd-1b14-40e1-9d16-8c11ebbd52dd', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '5602ce7f-cf99-43e4-9d54-4324e7262dd1', '0698664d-beea-460f-9499-7301be93d5bf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7be80ec5-fa63-4ce0-b34e-6b09b71679cd', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', '5602ce7f-cf99-43e4-9d54-4324e7262dd1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9efe810-c5ad-4585-950b-2869b60904d6', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '9a11ff8a-8a4e-42c5-b37e-7c9706747581', '5602ce7f-cf99-43e4-9d54-4324e7262dd1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9f1a2e5-ab44-4008-903f-2da2e85eb57d', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '5602ce7f-cf99-43e4-9d54-4324e7262dd1', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('48b93a3c-7a04-4825-a0b8-6978f70b5b95', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '5602ce7f-cf99-43e4-9d54-4324e7262dd1', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('11b92236-141a-4e5f-9ba3-f217cea126c1', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '5602ce7f-cf99-43e4-9d54-4324e7262dd1', '9f4f63b2-6439-4c9c-ae86-305aca317339', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a6ba8d2-766b-4d73-b588-085892954914', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '9a11ff8a-8a4e-42c5-b37e-7c9706747581', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e602d9c4-1f22-414e-be23-c917f10c5743', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'c8da4dbb-2a84-4291-9075-8da0c4e257a7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('834931cb-04d6-437f-89dc-f8ebb454da51', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, 'de39bb09-aecb-479a-9b94-0f8f850a421f', 'e1b2f563-302a-40e6-bb7a-2725af8a7320', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2608b16a-41c5-41a8-a649-b019a8a6a37f', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'de39bb09-aecb-479a-9b94-0f8f850a421f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8e271497-77b9-4c5f-941c-fd99348737cb', NULL, 'de39bb09-aecb-479a-9b94-0f8f850a421f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'de39bb09-aecb-479a-9b94-0f8f850a421f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01a76a19-3815-4d06-acd1-1f392b5466b7', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', 'f8a70890-768e-4af9-a261-3eed2c3eff9c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0527c95e-6f22-4aae-b9ef-a3459dee3fb1', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, 'de39bb09-aecb-479a-9b94-0f8f850a421f', '02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c829aa26-6fe1-4a0c-910b-a183a4af6a45', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', 'b723c3a1-8bb2-4f3b-901c-1219c04861cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a69b872d-45b8-4457-9197-e49643838ae7', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '55336c43-e7ea-4194-98a4-fbba54330f8b', '7d5704d6-e5e8-4f92-a231-3c9412a25813', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb4b0622-be5d-433a-be03-5692dbfdf01c', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '3b95dee8-1138-434c-91e4-5e28d537fa0e', '55336c43-e7ea-4194-98a4-fbba54330f8b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad21d67a-5af9-4999-8e50-7224a50d38a7', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, 'b723c3a1-8bb2-4f3b-901c-1219c04861cc', '55336c43-e7ea-4194-98a4-fbba54330f8b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fbdeeb41-9a4f-4760-aa75-e40aeef64d7c', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '55336c43-e7ea-4194-98a4-fbba54330f8b', 'bfa8792a-886d-4a0e-a6f9-abef9ff2174f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0069d2aa-623f-493b-8afc-0d107ee34da2', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '55336c43-e7ea-4194-98a4-fbba54330f8b', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ddff4c59-9227-4155-82f5-a843ab3a8558', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '55336c43-e7ea-4194-98a4-fbba54330f8b', '9f4f63b2-6439-4c9c-ae86-305aca317339', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58822e21-7aeb-4da2-bfaa-818802e42df1', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', 'b723c3a1-8bb2-4f3b-901c-1219c04861cc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a52713e-bbdc-4917-b4bd-6cd9b0ab37b0', '7ff40241-2808-4bd5-a1be-22636c8fd26e', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'de39bb09-aecb-479a-9b94-0f8f850a421f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4db394a7-cacc-4cb6-ab6c-d8d1b2de9a69', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, '2b015fed-111f-4bb3-9314-054c4f5e02a9', '7cb8fd1c-e611-46ce-b0bd-23571ae13c40', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6a0a6fc0-f191-4e08-b830-b1d9d5f0d923', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '2b015fed-111f-4bb3-9314-054c4f5e02a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a0f3664-a188-4b98-96f5-17bd389117cb', NULL, '2b015fed-111f-4bb3-9314-054c4f5e02a9', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '2b015fed-111f-4bb3-9314-054c4f5e02a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8645af9b-abb0-4883-bbf4-ce6bddaa8cc1', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'd6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', '1377ca11-0aea-45f1-be3e-6d685646a855', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07fd32bb-9bc0-4f51-b0b8-fede9030ae83', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, '2b015fed-111f-4bb3-9314-054c4f5e02a9', 'd6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6a2d1c0b-fc87-421e-abcf-665601640ead', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'd6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', 'a01b1061-d4fb-4ad7-b6c9-a1556cb05999', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9af563c-e53d-4d79-bd04-cd92999bf5ec', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', 'ab528e70-88ff-42a1-bb05-53c38b36e963', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58a686cb-d744-44de-a201-f390ca1b199c', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, '5c33226f-3c03-4147-93b7-d41d378cf0f5', 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3216b1d1-fa9a-4c74-961d-1f8b52606530', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'a01b1061-d4fb-4ad7-b6c9-a1556cb05999', 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0573b27-94e4-463e-954b-077ca970e4b4', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', '198cac03-a83b-4a24-8559-29ef72cd24b0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cb45da8e-6406-44f3-a86b-7b6b00249fc8', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14f519fa-a078-42ab-957c-0654631ec5c0', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'b31b9e66-752e-45d4-87bc-e06d95de7ba6', '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d4dac7a-59d6-4efc-81ea-c3735141ed7e', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', 'a01b1061-d4fb-4ad7-b6c9-a1556cb05999', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0539b058-39f6-4787-972c-013c48b341ff', '7afc8c46-3635-4456-bdfe-6ce0702fff28', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', '2b015fed-111f-4bb3-9314-054c4f5e02a9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76bfc65e-ff01-4a8a-9ca4-2694a3d9c18b', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, 'feb5fe79-001e-414c-8dc7-09657384b63c', '31f73d88-50b2-4c43-8710-7ca34461e925', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2d7129e-8987-43fe-bdfe-2f2e28f10d21', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'feb5fe79-001e-414c-8dc7-09657384b63c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed99bb19-c5e0-49b5-bdc6-7e6e7fb6e747', NULL, 'feb5fe79-001e-414c-8dc7-09657384b63c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'feb5fe79-001e-414c-8dc7-09657384b63c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('839a4292-c14c-4544-8387-c7b09da33ad4', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '3ad1f655-d278-41ed-bd16-6bb4662834dc', '877f58bc-eca2-40ea-a04b-5413dd5a26dd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e766a15d-ff06-4b38-8837-9bf16454cd8b', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, 'feb5fe79-001e-414c-8dc7-09657384b63c', '3ad1f655-d278-41ed-bd16-6bb4662834dc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db51e935-6a42-4533-b803-4798229e75b0', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '3ad1f655-d278-41ed-bd16-6bb4662834dc', '8c23f0a2-3c88-4526-b122-4088e4143682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6ec0ddd-98de-4439-9399-8133a431a2fb', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '21f69032-ae5d-40de-9834-61bef9345741', '08ae960a-5246-46fa-837e-077549f771a1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d595efe8-a37e-4caa-b581-4fbbc985c556', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '5c33226f-3c03-4147-93b7-d41d378cf0f5', '21f69032-ae5d-40de-9834-61bef9345741', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40e354f5-5bcd-4b9c-826b-cf22b909a6c9', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '8c23f0a2-3c88-4526-b122-4088e4143682', '21f69032-ae5d-40de-9834-61bef9345741', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f78eea0-a5e9-4bc5-a5c1-7565fa6c2e68', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '21f69032-ae5d-40de-9834-61bef9345741', '198cac03-a83b-4a24-8559-29ef72cd24b0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd7047bd-f3dc-4fa0-9efd-102375fcf18a', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '21f69032-ae5d-40de-9834-61bef9345741', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b075a79a-4118-46bb-bade-73c37231e07b', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '21f69032-ae5d-40de-9834-61bef9345741', '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ae56d9e-74b8-4683-b590-313bc8ed8c10', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', '8c23f0a2-3c88-4526-b122-4088e4143682', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d3b30b4-9546-45cc-aae3-5ef343449c69', '63e06470-764c-41b3-92d8-e114d4e52664', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'feb5fe79-001e-414c-8dc7-09657384b63c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef359fc3-6f87-4c87-9657-99342a3eaaae', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', 'f429b107-0720-44fa-a2ac-9ad390a0eafe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a34571d-f032-4a9b-b4d6-1b96cd8605b7', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5df52ab1-034d-49f2-a3ab-cb66f24f20ef', NULL, 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0ef59490-704a-45cb-acc2-44dc479ee660', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'de2f2450-cfd5-49f1-88b8-4dd5d67af141', '84867f72-28cb-40c1-9163-e39f2c16cfb0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c057887-7425-46cf-af81-843f82e4d0cd', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', 'de2f2450-cfd5-49f1-88b8-4dd5d67af141', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58b67eda-3b83-45ff-bb1b-50584c1d2f1f', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'de2f2450-cfd5-49f1-88b8-4dd5d67af141', '0ce06202-a733-454d-885e-d47597f3fdc1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ace760a-8081-4ecc-884b-9dcc84dde4f4', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', '61871afe-66cf-4e17-b0d5-1da5bac6469f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4f2c422-4309-469e-a17e-4b8a6be37fec', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('107621a6-9428-4186-8f4b-d24188f3675e', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, '0ce06202-a733-454d-885e-d47597f3fdc1', 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dfd122c6-a0b6-4ff1-bd71-492ef799289c', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', '9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2a722dd0-fdfb-4f8d-a4d1-6ff6214750ff', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', 'febfbe7e-4bf7-4385-834f-017201aa8756', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20cd6a17-ba02-418d-82d6-62e953fd0354', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'edbfdc0d-5541-487a-a68f-a6aeaa572d7b', '0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81d0b0d1-c04e-435b-83ac-1727ed881204', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, 'd6bcb4b0-343e-49a9-9067-47ffc922e88b', '0ce06202-a733-454d-885e-d47597f3fdc1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2d2734b-10be-43bd-ae46-b2b997c1911b', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', NULL, '611c71bc-4ce5-4a20-b819-95d274f73227', 'f2b7ed96-48bc-476a-a323-d69e3fa622b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7c4d8ed-b7e0-4871-8175-79961c32434b', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, '2e4968dd-1b34-4509-ae49-26525a1b61e1', 'daafb052-50ef-444a-a2d3-b787c5bc8cb3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39bbd7a6-6783-4d46-a176-a0aee27fcb94', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, 'c0087469-c932-4639-9f7c-577e275791df', 'dd133517-5ec6-4f63-9114-c1416d3c6804', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08f74b13-6a3d-4ee7-9d82-d02c25d884f7', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, '79f6ac07-1368-42f4-a1ae-a9a357a8426e', '3a597e00-9544-4248-82df-3831353f33b1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86d25fef-e5d5-4c6e-85c3-1576fd234841', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, '2e4968dd-1b34-4509-ae49-26525a1b61e1', '8baa861a-5c1c-4db2-8325-357619b0f22d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91a48a3e-c409-43b3-9b8b-684fef5083d7', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, '9e239542-d709-4bd3-9286-29c94c37908a', '5d51ee94-5a44-409b-8bb2-1bca411bfc41', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79ebece6-b083-4b72-bac6-2150329a33ea', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', NULL, '9e239542-d709-4bd3-9286-29c94c37908a', 'd52d9865-3025-4a16-9aed-c5ddd66dc071', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc8b9c06-d933-4560-8e8f-1497e4fc9528', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, '692d194a-ce6c-4932-9a16-08fc5b853bbe', '8e7530d0-e5a8-488c-93a3-a25b2449fba6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f056cd13-cadc-4b22-828a-1a4181c122ba', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', '22173367-a803-4065-9451-afec80e0586e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b52a8530-193a-4487-86ee-b14f165a7825', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', '7e591a28-0bbc-4464-8aab-c449f4db6f33', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d89f492-e2e2-4123-b639-27f3de454910', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, '692d194a-ce6c-4932-9a16-08fc5b853bbe', '24837809-14de-4cfd-8e4a-5cbe8a476a78', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fdbb710d-fcd4-4e26-85c7-76ecd7c8a7fc', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', 'b8f86670-28e8-4fd8-b293-f7ee4344efa1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98298c9a-4f54-4f0d-89e0-42a7bf2f1e86', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', NULL, 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', 'f54ccf20-7258-4739-bb5f-867203a3c290', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41d63e20-90d0-46ae-98dc-a161cf9e448a', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', '96cafe15-2ee6-4226-ba2d-92620a417296', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65552838-3d75-45aa-bfc0-95df3ac72fef', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', '81973abf-eaa8-4d0a-84ea-e98c0de09bc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5c610c2-8c21-4f80-96ab-9b800cfc15fb', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, 'a115bf5c-94f4-46b0-8506-e41ead116a8d', '0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c79f7792-f080-4402-bfac-ab9faf1e003d', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, 'ad81e516-9454-42a1-ac0e-7e4ca2ded76d', '42c4629d-fb68-46f4-b8f2-d40a608fccaa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcfee9c4-e406-4454-9823-ffdd85b129dc', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', '4c928181-db1c-47ea-8185-86edf15aaf83', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39593d1b-7993-4857-8272-9555cec03fa3', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', NULL, 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', '3328c233-4b48-4dc9-9941-830c3857e47f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d7003f1-51a1-4029-b7b4-99b7905471f4', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '07e54dc9-9b64-464c-9894-08d88a01cfb6', '45b14f1b-e870-40f6-a99a-e6bf3810b48b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7022cb34-8060-4297-acea-672e009fd2f7', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '06736882-96b1-4e48-bcb0-b897a5929f8d', '6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3694733a-8b90-4a05-9a81-ca5252f1f5cc', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '63952462-0544-485e-8e6f-a344be47cc97', '45f3c90c-0cc8-41c6-aa6c-f656c2a520ec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f134019e-1504-402d-9360-36a024382d53', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '07e54dc9-9b64-464c-9894-08d88a01cfb6', '57823f66-c790-4a3f-8395-e94a25f2b321', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf3e61cc-6ee4-4ed3-a578-be3577c3e03c', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '03613dc7-4ec1-430b-a213-291b587700d5', '91475e7d-6a40-4b51-8376-e28b06293a84', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45ef1721-84e1-4581-9341-4caa48e06c24', '94c3062b-ec85-469d-824d-885a125e5a52', NULL, '03613dc7-4ec1-430b-a213-291b587700d5', '34f0d180-cab1-4f97-9d1d-60a6f39c8c1f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('460a3b2b-42c9-4991-9cc8-c857519e3b91', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, 'c753ef5d-0c69-4807-b43a-4d3e1d500389', '5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df2d85e8-3659-450a-be13-af47f2193e10', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', '87a213bf-33aa-40e4-b5eb-89465f96e91d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b35ff87-0167-4c35-9219-021df737c9bc', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'fb476be5-a55c-4453-a606-24da6a1ab2d7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2959b3c-7338-4936-9161-5882607b84cd', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, 'c753ef5d-0c69-4807-b43a-4d3e1d500389', '241b9514-6fed-46fc-a352-02f501bb9815', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9234bc93-67de-4f2e-b1de-a2ec3c6f906b', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, 'c7434ab2-1e19-4777-a38e-14330f4a02a7', 'ddeac61f-76b9-4ad4-bf61-b1a83894cb2b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e589bb1e-a48e-4f93-9203-19dc7cded0ae', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', NULL, 'c7434ab2-1e19-4777-a38e-14330f4a02a7', '759ca26e-b553-497a-9f38-86622b340848', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c24459c-de0f-4f20-83e4-d390402dc92b', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', 'b695b5f1-487e-45aa-ab59-e47986899059', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1821358-d48c-423a-aa7e-560b3b6230ab', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', '005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb3fde15-d43e-4298-a611-63b8d875c049', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, '59461651-6e8b-4e92-a992-c6361933f78a', '6d837b50-0475-41dc-9a4b-4a832f476bde', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('edcfa884-f25a-49f1-91d6-414aa53479a3', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, 'ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', 'cdda32b7-9bb8-4f6f-9974-d8b6cf64706c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('335f8efc-1d3d-47c8-a4a7-7a0be47bba9d', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, '00922fe9-7f32-4a66-9e9e-959719b12c5a', 'ff41dac7-2ca2-4719-ab67-e3defcacbaed', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df2eac69-4eaf-4467-bef0-1f7998aee380', 'a7f3294e-b64f-4e46-860e-99e3617329bb', NULL, '00922fe9-7f32-4a66-9e9e-959719b12c5a', '9eba55f5-a528-4a01-8612-8e4d30ea5c24', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db8c2f68-16c6-4e0a-b36e-0a45b8b12dc7', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, '1f222590-d082-4b39-baf4-883dc9a46409', '137d7a50-f122-447e-b8f5-2349c7231487', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd011822-d8eb-4bef-9ccc-45d2e1c9ff22', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', 'afe41aac-099f-47ea-84a8-d1b8f7f3f81f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3eb7a7f-def1-4bee-bab8-61614fb0e47d', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', 'c9787e85-7f76-405c-abc2-68c643139725', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7331e64d-bd51-40b4-847b-e8d52af05369', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, '1f222590-d082-4b39-baf4-883dc9a46409', 'fa41b988-86be-4cd5-9293-a316854ad36c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d6fa7a5-5648-438f-80aa-b6e45f557364', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, '3edbc6f6-bd84-4390-970d-5e344664f86e', '8b4d84e1-64bb-478e-8176-7e7f5e3b54ad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07324cf7-ce37-46d7-8029-365bc8dbbe04', '23272f3b-28e7-4777-9f86-5821646343ad', NULL, '3edbc6f6-bd84-4390-970d-5e344664f86e', 'ab0a6844-1289-4c15-acc1-b6eb42f08ce1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86e1832b-8292-4cae-b875-7f56f0e7cd1e', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, '3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'eb4e4387-2088-4cba-bacd-6ec785097689', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc3a5fbf-9ffb-4290-9dcf-4208ba37bbcd', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, 'face87b5-b7b2-4525-b615-9c917e6f11c9', '53ffdb8e-9631-403f-b52e-77d75602cc80', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0692108e-2dda-423c-bffb-64f5abac825d', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, '5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'a828a5d8-767f-459c-a676-b28b793ec271', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1129688c-203b-48b0-a164-5edf597235b9', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, '3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'c3584a65-8fb2-4975-bb7f-9a123c06d2e3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c60c7ad-86ad-40a2-a22b-591481868465', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, '003086d1-689f-41da-9ea2-e61c50dc6c10', '360fd487-1bdf-4a27-b608-ec4e126185ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e344ba9d-bb32-4d97-9613-65b5e7bafd75', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', NULL, '003086d1-689f-41da-9ea2-e61c50dc6c10', '81073331-f31c-4b7d-a8ba-b76c8b449ffb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a79dcc01-4e36-44ee-8008-76b6f4ea8a00', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, '79f6ac07-1368-42f4-a1ae-a9a357a8426e', 'b488d259-9ffa-47ea-9494-722a4f97a8c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('632e2508-6066-421e-9f22-77269465c8b2', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, '9e239542-d709-4bd3-9286-29c94c37908a', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2dd3143-59ab-4152-bd92-5aef0d7d30df', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', 'c0087469-c932-4639-9f7c-577e275791df', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d2567bd-cee9-4812-8708-f9004147029f', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, '0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', '4dd49272-271e-4a93-933b-65923aaa2109', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d3329b8e-3397-4528-9e91-64162d9f140d', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', '40f5eb31-e9eb-48b3-8312-84ec84e0b80b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5629dbd3-7ca4-42a0-91f8-f8df4e36881c', '3162b2b5-9fda-476a-94e8-4e0265758d31', NULL, 'b488d259-9ffa-47ea-9494-722a4f97a8c9', '7730b221-0290-40cf-b01c-bc8329e8f723', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('808925d1-6ece-43b3-96cd-7842e75485a7', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('378542be-f94c-4c97-8d7c-041a52cbe937', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('073c82e8-93bf-4c28-b9fe-073b657616da', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('597dd910-011b-42de-9f91-cb168e3bdcb1', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, '25aea726-1671-41d0-9264-5bb7c4972697', '75181fe1-4ee8-41b2-a0c0-d4e0747d6d23', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc2b27a0-775d-4aa5-b577-96a0f8297034', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, 'c15e0b81-002e-480e-93f8-93b06f87bbff', '07fbd6a7-038a-4fa0-a5f0-7fc082165557', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ad12d86-112b-4c7f-bf09-96f66e85172a', '0db2a143-0ab2-473f-84f8-d570ee119e04', NULL, '6a9c2ebd-0656-4634-bcf2-a10f53a2b649', 'c12e8c8c-2a23-483b-82e0-48c173c7adad', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa0d172f-814b-4e32-ae80-63a9cca19fa2', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, 'a115bf5c-94f4-46b0-8506-e41ead116a8d', '50593216-70ed-4099-8e53-51f5f95fb14e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('78bc1a29-1393-47f2-a458-b5f2378a59f4', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', '6c5bd6d0-2679-4b89-a125-57e510f4027d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7617d58-722e-4f73-93a1-841bb6540532', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, '6c5bd6d0-2679-4b89-a125-57e510f4027d', '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9aea70f5-f852-4c2e-b4ae-0081bca2bbe8', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, 'd2d49e70-c8c7-449a-a5ae-03f377663ac9', '229cfcd2-8e66-4082-a9d8-a83e07687aa5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0838d406-c17e-424a-9f53-0178ca8858cc', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, 'be395dff-ff4b-40ae-a537-5c84a2d3a783', '2c6c0cf1-ac65-483f-b34e-36bcdd6653de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3bfe4bf5-4dd3-4578-bf35-69b558e948f9', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', NULL, '50593216-70ed-4099-8e53-51f5f95fb14e', 'd502fcda-7169-4818-9c45-c04e713d5313', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b832bb0-ec8e-49e1-a171-2f7b809cb541', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '63952462-0544-485e-8e6f-a344be47cc97', '788ffc41-ac92-4dfe-b5ac-0e18e2249262', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7cbc9add-a7ee-4b4d-a179-88785fdaabec', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '03613dc7-4ec1-430b-a213-291b587700d5', '27f136ee-b3fa-4aa7-8806-45e856c2c56c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('287da3a6-aee2-4ddb-af59-d1573fd4be26', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '27f136ee-b3fa-4aa7-8806-45e856c2c56c', '06736882-96b1-4e48-bcb0-b897a5929f8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ada88109-db72-4db5-bead-8ee51a4991e0', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '7a2bfdae-7219-4781-9da1-ed34a2b61868', 'e1681e56-6bd9-43c9-b317-cf51cd2a70fe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2438a7b7-5a0a-404b-8a29-bb61a0a7c6d7', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', '6548c064-050a-40b9-8a87-02e672e0e21f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('44fca42e-72d7-4010-8897-88d762a6ca2b', '6191fa62-0cc3-4172-9696-4145049b64ce', NULL, '788ffc41-ac92-4dfe-b5ac-0e18e2249262', 'bb3f383a-8c59-4700-9649-93b334c30618', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc02eeda-e39f-478b-aa91-db5469ac2971', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', '79bfede0-cffe-46c4-b27c-0e40846e2447', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5954b57-d68b-4653-95d0-2c0c40980e4d', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, 'c7434ab2-1e19-4777-a38e-14330f4a02a7', '2243d1b8-20ff-4556-8185-69dedd3fce8f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf46c1f6-55f8-4e41-9480-b91981853995', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, '2243d1b8-20ff-4556-8185-69dedd3fce8f', '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a05a3e0e-f80f-458f-9f40-77d0fbcf24ac', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, '6a17b24d-e8b3-4659-b391-b1f72ef80029', '59ce399b-d575-419d-80be-1fd04dce418f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('315e837c-e8c6-4a09-b85d-2a80ae2d5879', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, '4f843b40-95b0-4bfe-af06-2fc65df2ee56', '9f9c733b-5461-4e93-9d09-8b5ae9e091dc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('681e9154-0801-469c-9812-e5e818cce38c', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', NULL, '79bfede0-cffe-46c4-b27c-0e40846e2447', '32ce098d-facd-426b-9405-d0a10f7e4b42', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14490e1d-9a8f-4503-a844-4e8d93123da3', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, '59461651-6e8b-4e92-a992-c6361933f78a', 'c7155b13-a749-4856-9832-3b2c3f652e08', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66c7b170-3b4b-4725-92bb-0e22e02930e0', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, '00922fe9-7f32-4a66-9e9e-959719b12c5a', '647db241-3be3-4ba7-b34b-d971ad566a37', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0dd57645-c77c-4471-b59c-49abc35378a4', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, '647db241-3be3-4ba7-b34b-d971ad566a37', '78721925-7bdb-4e4a-b6d6-a1a2822efcf3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d081e7ef-b63b-43af-980d-9cac9e3e1b5b', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, 'cee3b153-5528-4547-abf6-0abfb951c3e5', '5f1474a1-2c97-4780-88ae-dea97e8d2f75', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97663173-d5a4-4aca-8055-2e34176205ff', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, 'c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', '91aa9300-0511-44f7-8b57-72da36d8c521', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ebb09d4a-7177-4cbb-b812-48c43742167a', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', NULL, 'c7155b13-a749-4856-9832-3b2c3f652e08', '2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('703c2e14-9432-45b6-84c4-3c8fb6461f5c', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', '9843689f-18c7-472f-833c-262d2348ae61', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a55dfd4b-64c3-466c-82c3-6a5d1f6ef4e1', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, '3edbc6f6-bd84-4390-970d-5e344664f86e', '133d043e-f9e7-462d-9519-1ae05a47a1be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af05c306-5ccb-4690-8868-1ded5a27a447', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, '133d043e-f9e7-462d-9519-1ae05a47a1be', 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3648889f-7e04-4de1-ae46-f43927fc709c', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, '0458c878-07f7-48cc-8cde-866110a379b2', '804e3de0-66a5-45e3-8275-1222ec0dc1d5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1a7b7431-c9f7-455d-96ef-b3403cc8285f', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, 'ac14c959-2f96-4fbd-9970-87a2b07dff95', '8e0dfa97-8845-4071-9569-500922447918', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a90faff3-7a3c-40ff-85e5-7e4df2953506', 'eab4b615-a7ab-438d-953d-b5da6485baa4', NULL, '9843689f-18c7-472f-833c-262d2348ae61', 'e0cd0949-f2a1-4ce1-b442-31dd601dfc50', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dadd487b-84b7-457b-95bd-61dc76c197f9', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, '5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42a1656f-f248-462c-80ca-86fbd7506ca8', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, '003086d1-689f-41da-9ea2-e61c50dc6c10', 'ece49845-4b04-434a-a12e-2e5ea1d2c241', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82c40f75-0113-4fe0-a492-3adf5fba1999', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, 'ece49845-4b04-434a-a12e-2e5ea1d2c241', 'face87b5-b7b2-4525-b615-9c917e6f11c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1bd9c53c-8737-458e-baf9-7c3e9f60f97d', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, 'cff56822-3173-4489-ba4e-eeb10924cefd', '0e7d000d-a925-48f8-9111-2b2f0a06d4bc', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0289a5d-cb23-4fef-831e-7060788ce7d8', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, '3412d5e9-9e1e-470b-af39-015652349d4f', '5aa9a6ff-dadb-44c2-9951-1146ce5d3888', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3989ae75-b5a8-4638-a6d7-0f3a9317bd07', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', NULL, 'c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', '8a5628fa-a845-4284-b719-da86a4bd10e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7377d17-5cba-4788-b025-a7c516f3cf09', NULL, 'e45e9efc-c353-496b-ae01-2cdd1a377189', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'e45e9efc-c353-496b-ae01-2cdd1a377189', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c59868f-73ad-4908-a21b-a3e8071b7332', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '4f27a565-bea2-4099-870e-9ddac69a927d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45c68c75-502b-4c86-aa09-48b669787b3b', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '94f0bc67-0f4f-4f6e-b804-e6329e6d6278', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('571b93af-9074-4a78-b80f-04459388b25c', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'e45e9efc-c353-496b-ae01-2cdd1a377189', 'e17798f5-5150-4fb9-8501-a736ac4aa461', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3dd6731c-d9d0-46c8-854e-f4effdd6f572', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, '79f6ac07-1368-42f4-a1ae-a9a357a8426e', 'e17798f5-5150-4fb9-8501-a736ac4aa461', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7017d19d-b60d-433a-bb19-adaf11bd4a94', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'eeed5149-ffda-41b5-986f-ebe44198b6ed', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ab87a931-b6d1-4e3a-a131-4beef69f07b7', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('472173e6-2c97-48b5-82ae-a7e58c07a4fa', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, '9e239542-d709-4bd3-9286-29c94c37908a', 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0501460b-80da-4177-b55a-8bf270b6cfe1', '860a931c-5819-4cc8-9379-c2d530cd30f6', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'c0087469-c932-4639-9f7c-577e275791df', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba928bc8-eff9-4ab8-9071-68795636bc39', NULL, NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd61e99b-dce1-4c92-b2be-bcc4d975e9af', NULL, NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '7204bc19-f28b-4ca8-b72b-026c38298527', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c721f095-62f5-4e37-9201-f53299af0554', NULL, '06f20485-c8a0-4c8f-b197-473da910ad4c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '06f20485-c8a0-4c8f-b197-473da910ad4c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b4f94475-ff0c-4e5c-8032-d6868c9f64ac', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'c61e32e1-48c1-4bf3-882f-77382110700f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f7b5d7d-8d7b-4a7a-9ba7-4feee5e54727', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'efc20691-4515-48c9-bbb2-ca411195d26c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3388c1d5-9c33-4e10-8b86-ac3ea9c2c781', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, '06f20485-c8a0-4c8f-b197-473da910ad4c', 'be48fda3-4879-4578-ab53-7ef02cb2d316', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('057da41c-682e-4b5e-9b70-d0ee8397c9f1', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, 'f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', 'be48fda3-4879-4578-ab53-7ef02cb2d316', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb7c1d3d-d877-4401-be37-af8454fcc8be', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'f992415c-81e3-4339-93d0-cd73fc15d324', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('165c16e3-bf7c-4ce1-811b-cc795d520734', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '0ccb26b5-ca98-4998-8e94-18ebca2dc643', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ad04173-7a9d-4359-b0bb-816b6a32c0af', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, 'c9c5a8e1-ad7c-48f0-b747-b574b96de461', '0ccb26b5-ca98-4998-8e94-18ebca2dc643', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58486525-e310-4429-93ca-f1e0f71a967f', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', '0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14e80e7c-3f57-4a50-9193-4aec64d3a00f', NULL, NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '78c9542a-3595-4e01-8d35-036ad1c73852', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0855b2ea-535a-467b-8053-b2f7ddfc91b4', NULL, NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8dcd8505-fc84-4b55-895e-99513b1edd35', NULL, '1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6d4f49d-e37c-4ef8-8de3-17996f1a5a99', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, '02367e67-e418-4eb2-92d7-241e3ece14e4', 'ac02dd92-7f6d-40eb-9d06-f94bc88c3996', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e88c66d2-878b-46e7-8e05-fb918f1e67a0', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, '02367e67-e418-4eb2-92d7-241e3ece14e4', '40698c45-9698-4294-97d4-c6cfa144af30', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('328262f3-bb3a-4b79-af44-574a9578ea75', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, '1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', '02367e67-e418-4eb2-92d7-241e3ece14e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ac96445-2f51-4d0e-84dd-8eb625c63db6', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, 'a115bf5c-94f4-46b0-8506-e41ead116a8d', '02367e67-e418-4eb2-92d7-241e3ece14e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d70fbe78-d542-40c1-a322-3574298986b3', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, 'b56c72e1-8717-4238-8755-52de32b7e9a8', '5992a7ec-141d-4ae3-9200-add7c7992cf9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e34227d6-7dfa-4baa-aa04-dd1c0f2338fb', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, '02367e67-e418-4eb2-92d7-241e3ece14e4', 'b56c72e1-8717-4238-8755-52de32b7e9a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0cc3bbae-f76a-46a4-a730-14ae6467ecad', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, 'e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', 'b56c72e1-8717-4238-8755-52de32b7e9a8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc0a83f5-257f-47fe-bd4a-c2c11d1f1811', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', NULL, 'b56c72e1-8717-4238-8755-52de32b7e9a8', '9fdc3c83-e6fc-4494-bba5-ec2f2b814448', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60879bf7-525f-4538-b27d-e5623d4c2b9d', NULL, NULL, '02367e67-e418-4eb2-92d7-241e3ece14e4', '6389d1cf-ad59-4de0-b648-148dd127b6eb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1125f9a5-68ea-4883-bc51-841178d8f2cc', NULL, NULL, '02367e67-e418-4eb2-92d7-241e3ece14e4', 'c59d5910-8a41-46c0-bf1b-80493d1f8abe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('049b15bf-a6fc-4f25-9235-fe8bdea072f2', NULL, '67ba7d20-5994-4a7d-a326-d68ce566bbd0', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '67ba7d20-5994-4a7d-a326-d68ce566bbd0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('235761bf-879c-4527-a5af-493d3ddcf8d5', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '27a90c0f-4e31-4ffb-b287-109a77448a9d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5874d757-304f-49ce-a511-3cefc35665c4', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '1e14521e-b924-423d-bc52-5dd8447ececa', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1021fbfb-13df-4585-96a0-d5215e4f354e', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '67ba7d20-5994-4a7d-a326-d68ce566bbd0', '09a5131d-4cc7-4373-8aa0-7183cd6cee62', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6c8ba8b3-76a2-40f0-8228-9c5c3e365263', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '63952462-0544-485e-8e6f-a344be47cc97', '09a5131d-4cc7-4373-8aa0-7183cd6cee62', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8eefd25c-0dbc-4e0b-9c6e-4f4748994f3c', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '30091ef3-0aef-47a7-8020-8ea49254a578', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0baefe56-992b-44b9-862a-3b81fb7db9b3', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '08903550-662d-4b46-bfe2-74f263288b3c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fcec3400-bfe7-47eb-83a6-b0117d8eea44', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '03613dc7-4ec1-430b-a213-291b587700d5', '08903550-662d-4b46-bfe2-74f263288b3c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb7108d3-ff7d-4b5a-8758-dc5d51fa6657', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '06736882-96b1-4e48-bcb0-b897a5929f8d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9028bf0-53fa-4c9a-8259-3dae01bc6f31', NULL, NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', 'd56e6f97-db5c-4dee-8d84-90a0e35c9714', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('29400559-9d31-4525-9b35-345918926d3c', NULL, NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '281c7961-4b81-479e-b441-760bfeeabd46', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1b6a841-21e0-451d-8637-00b91ed8e6c1', NULL, '3561c528-a2d8-4291-966e-3ba044436e56', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '3561c528-a2d8-4291-966e-3ba044436e56', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f59e2f2-9a88-4a32-8694-3a45d1d8914b', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '202a6508-7fef-459d-b5b6-890b088d82be', 'b40304e8-ff14-4532-81c2-e4fa4cb70e42', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14a9a6ef-29fa-4b9d-bcdd-798447d227d1', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '524a333e-aec2-483e-862c-679039cafcde', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98378014-eb47-4d1b-8eb9-13bb6972d7a2', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '3561c528-a2d8-4291-966e-3ba044436e56', '202a6508-7fef-459d-b5b6-890b088d82be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da1c6cdb-eb3d-4694-a82b-1b895e14ec87', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', '202a6508-7fef-459d-b5b6-890b088d82be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ccd61f2-2323-4412-94aa-405dc5f50fcb', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', 'aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7df094a5-b6b6-4f9f-9cb8-c2d24c9710c2', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af6decfd-ae97-4518-9c84-b9e2f74fbdb6', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, 'c7434ab2-1e19-4777-a38e-14330f4a02a7', '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51e411ea-37c9-4cbd-b924-447f678d398a', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', NULL, '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', '7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d9f83fb-9790-4d98-8afa-b64a66d1a52e', NULL, NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '8cafc9fc-e7ff-440c-b8a1-394e601aa944', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e5497a1-dbe9-4ede-9d8e-f76773a2bf8b', NULL, NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '7242332d-8f72-4e28-9c45-fdfbeb6118f9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7da8121d-e963-4da6-b973-a78d3fcac3cc', NULL, '1e716d6d-cae9-45ed-bb67-28deecf8f459', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1e716d6d-cae9-45ed-bb67-28deecf8f459', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10aa6583-6376-4a25-b50d-07b67ba9bb8c', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'd7932082-e9af-417f-af27-37946e0b7a49', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46c72983-7091-447d-8abb-91e22d2ffd92', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', '7799ed00-0de6-4ce5-9547-649369ca4a63', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d848fcb-c098-4ab9-82c8-11013c258b63', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, '1e716d6d-cae9-45ed-bb67-28deecf8f459', '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b8e1ea3-9f07-4ca0-a40a-8f19f381996b', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, 'cf45ba5b-f46e-4638-96c3-8fff424da6a7', '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea62e499-bdc3-46e0-8f3d-8577b5ee925d', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, 'ff268833-fd94-40f4-8a00-65ec735997c1', '56be9a1f-28b0-4c6a-818f-53df9138fed0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5daf322f-f507-442a-a6e1-ac4aab6ae7a1', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'ff268833-fd94-40f4-8a00-65ec735997c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b4c4ed2d-ed12-4ddf-87a5-7c40a5fb403f', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, '3edbc6f6-bd84-4390-970d-5e344664f86e', 'ff268833-fd94-40f4-8a00-65ec735997c1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7a11f0e-43fd-4e33-9ad0-8f11b9938968', '8a6743f8-ecf2-4500-8983-d657b9d61b18', NULL, 'ff268833-fd94-40f4-8a00-65ec735997c1', 'd9fa8f0e-e40f-45da-a3fc-37a6e973cf13', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d594af8c-0903-4ef0-aa57-8e421e91705f', NULL, NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'b1baabe9-2f07-4bb5-9c8a-40d00394e9e3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22f33f05-0dd0-4e39-b9d0-954f30d642df', NULL, NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'adaca50c-0efa-45bd-9d4c-ae790bd334bb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8630c0e8-a967-4e09-8382-b90d34a5025e', NULL, 'ef169461-9c02-46f4-a6a9-6c36aad196ca', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'ef169461-9c02-46f4-a6a9-6c36aad196ca', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('73c6f2a9-d88c-4332-a826-8c2e446237f8', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '55638bc0-b003-4185-b805-b542b92cc07e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72d99da1-87a4-4e69-9efa-12efd439bab0', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '162b3d0c-b3df-4afa-933c-e18986f7e216', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2faf8105-e42c-4eda-940a-57ef030c6e73', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, 'ef169461-9c02-46f4-a6a9-6c36aad196ca', 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4b8574e4-5323-4a11-b74b-70f3374ca551', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, '5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b0c07a5-4c74-4af9-ac7e-e87cb24a498d', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, '34cc8a49-ea9b-466e-8579-7827e09f5d35', '8fdd420e-b77f-4c42-addb-bc5310c9356d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36721c02-daf8-4709-9b34-617407b68b39', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '34cc8a49-ea9b-466e-8579-7827e09f5d35', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a496207-2f3d-4305-bad3-a70636e28529', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, '003086d1-689f-41da-9ea2-e61c50dc6c10', '34cc8a49-ea9b-466e-8579-7827e09f5d35', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e906445-3560-46bf-a0f5-258a109800bf', 'cce6083f-6122-4759-85a9-5ac021b2c95d', NULL, '34cc8a49-ea9b-466e-8579-7827e09f5d35', 'face87b5-b7b2-4525-b615-9c917e6f11c9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('074f7799-14ed-42a9-8aee-97dd7ca03bdd', NULL, NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', 'd4ccf9df-c982-496d-870c-2fee23971c8f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b4ef3d0-f5a3-4546-ab1d-afe7ec3421d6', NULL, NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '86e9a040-1689-4e76-b581-1460b23a7c9c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0eac6b88-7427-4778-ac8c-628f3798ef5b', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, 'f08199e6-b59c-4cae-a738-6d37d2a484cd', '24665c63-458a-46a0-890d-8a238f9d036f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('664aa0ab-5a78-408d-aa69-22aa07ebeef7', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f08199e6-b59c-4cae-a738-6d37d2a484cd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eaee75a5-a7f2-4322-b7e2-1201c4eb3aa2', NULL, 'f08199e6-b59c-4cae-a738-6d37d2a484cd', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f08199e6-b59c-4cae-a738-6d37d2a484cd', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96e3ba4c-4fd0-401e-89a8-9f38d78d0d98', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, '1c0c395e-a062-423c-b153-d17fcfdc42f8', '5b9d578c-9d05-4480-9256-1e091ce93f25', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2385c4b-af2a-4066-83da-60955349465b', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, 'f08199e6-b59c-4cae-a738-6d37d2a484cd', '1c0c395e-a062-423c-b153-d17fcfdc42f8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d3808c3-484e-472b-afbe-27ad14b45295', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, '180970e6-4774-43ba-be24-92cc46a1e9f7', 'dbe17345-adae-4bee-97f2-e3a13fc45e70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93f58fad-e0e6-41d0-bd62-bcc36fe22134', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', NULL, '1c0c395e-a062-423c-b153-d17fcfdc42f8', '180970e6-4774-43ba-be24-92cc46a1e9f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d143aec-5212-42af-8d68-c3b48010cbc5', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, 'cddf6529-abe4-42be-a8e9-a0f635cded95', '5d6567c1-bc20-4972-ae1a-ab4e8c53cca7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('02f1f344-5c49-4279-b791-11df4937f50c', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'cddf6529-abe4-42be-a8e9-a0f635cded95', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04fcc555-4555-42f5-aa2a-1f12f8620dba', NULL, 'cddf6529-abe4-42be-a8e9-a0f635cded95', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'cddf6529-abe4-42be-a8e9-a0f635cded95', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9462f127-83b3-4ebb-9194-391ddbbaab45', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, '70474bae-df93-4ba6-951e-5ca5fe0fc4a0', 'e4ac0185-4d56-457d-aff9-0f75357e048a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d8f2386-6293-443a-96f6-254b02af9b6f', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, 'cddf6529-abe4-42be-a8e9-a0f635cded95', '70474bae-df93-4ba6-951e-5ca5fe0fc4a0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e67017e8-2879-42f2-a16b-5463dfa78014', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, 'f0394d0f-0314-4cc2-b77b-412362610ee8', '4d2894d1-adeb-4349-a7e4-47af15a0b9d3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('954a3361-c2a4-4d50-8bbb-f64aea9b548c', '7761056f-60a1-4981-a45f-55097922cfcb', NULL, '70474bae-df93-4ba6-951e-5ca5fe0fc4a0', 'f0394d0f-0314-4cc2-b77b-412362610ee8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3de7e0d1-a1b4-4214-be54-142aabeef335', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, '0f4bdccc-973c-4465-9692-110165157e47', '3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0a2a605-4fc6-43c9-acb0-a99d09bfbc57', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0f4bdccc-973c-4465-9692-110165157e47', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('336df55b-f323-4c29-a395-79f25d0df5c7', NULL, '0f4bdccc-973c-4465-9692-110165157e47', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0f4bdccc-973c-4465-9692-110165157e47', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b52638e1-25a5-400a-8b05-d8cf6683190e', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, '07cea3ae-e400-49b3-bf50-8653f7d4d0bf', '21cce335-ee2c-474a-934f-0f8a264be7ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b08ffa62-b3bb-4f2f-8cbb-700111f8d112', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, '0f4bdccc-973c-4465-9692-110165157e47', '07cea3ae-e400-49b3-bf50-8653f7d4d0bf', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7e5cd561-ba8e-4dfd-b345-9f9612f71ce0', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, 'f843e0df-6c28-4d29-bfce-0dce1e8220ba', '73c78c16-6eb7-4874-9487-fa9cb9414be9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f12146ab-8cfc-4be6-850a-e0144f844008', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', NULL, '07cea3ae-e400-49b3-bf50-8653f7d4d0bf', 'f843e0df-6c28-4d29-bfce-0dce1e8220ba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4439e95-ce59-4308-9d26-75a5e3fa26d9', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', 'c3681b32-5274-48e8-babe-b8a7577b1999', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a5c7cd5-8902-487c-b510-b81a5ef7d848', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('832e207d-f1f1-482f-9987-fe27daad5af6', NULL, '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51292c45-c1a1-4f9c-868b-ff81f16c78b5', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '4d60a0ec-e76a-4f0e-896a-56aa061b60a6', 'c503eb92-c2d2-46b8-adcf-cd84d92e9eb3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2f20bc4-a74d-4b03-8637-da43c1ab2823', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', '4d60a0ec-e76a-4f0e-896a-56aa061b60a6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82fe742e-d711-48f2-8d63-7bd8c727d032', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '2203cdf2-5069-406b-87f0-6e600142edd8', '3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a27edb37-ea08-4d1b-9527-d60ca543309e', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', NULL, '4d60a0ec-e76a-4f0e-896a-56aa061b60a6', '2203cdf2-5069-406b-87f0-6e600142edd8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6f738286-8e0d-4124-b4e6-795d50e3b6ea', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', '04c59a4f-0eb8-4812-82b3-663f3a084c65', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba5cae18-1e95-4522-a780-6a4eafcd6eb9', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1bb9244e-8862-46a7-a74c-80e4e1d292ec', NULL, 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e40f806-cd63-49b9-a1b3-d83663f27d53', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, 'f9a40c25-3b07-4043-90fb-ac2826818923', '2959d438-b8bb-43f9-b70b-dd40951fca4f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('56e9ea61-c685-4108-926b-c55adf34dc7b', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, 'f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', 'f9a40c25-3b07-4043-90fb-ac2826818923', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('511f8430-3c93-4c56-bc5f-a0cd189a03ce', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, '22be1e9a-65f6-4c35-8b28-39dc7982770f', 'cd189b0e-6c05-405a-b560-d0c75937e2d8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6c3f3f1f-e09b-4b13-9f4a-690cc037cf69', '9a5d0728-35a4-4fed-8f48-9944255ddee5', NULL, 'f9a40c25-3b07-4043-90fb-ac2826818923', '22be1e9a-65f6-4c35-8b28-39dc7982770f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f12388e-7167-450e-a309-7b0951faec0e', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '0cd1afc1-d446-425d-8f2e-10982a72bcf5', '4728de28-7e67-4cca-80c0-6221bb0cb4b3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('933f96cf-f1b9-441c-ab7e-5ca7b6bff52d', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '0cd1afc1-d446-425d-8f2e-10982a72bcf5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f94b6bc-835a-4d81-a61e-17119f2f89a1', NULL, '0cd1afc1-d446-425d-8f2e-10982a72bcf5', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '0cd1afc1-d446-425d-8f2e-10982a72bcf5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3166eb9d-a068-4fed-9291-896b263bb425', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '5b835d54-b474-480d-96a4-668e762a5c15', 'a386961b-e8c0-4e7d-98c4-3e983a2d8d1f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('73a3210a-e9bb-4a3d-8454-2bc929d90a89', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '0cd1afc1-d446-425d-8f2e-10982a72bcf5', '5b835d54-b474-480d-96a4-668e762a5c15', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e68a7757-2c5e-4259-9087-29c6d2e58a44', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', '82638ccd-1407-47aa-8918-3a1329d6b038', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a896be90-e18d-4229-9234-5700fa68e3a9', '0e352061-8280-491d-9125-d1547e3662f8', NULL, '5b835d54-b474-480d-96a4-668e762a5c15', '3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7f5fb86-c0f6-4920-ae8b-146671f3f53d', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, 'd15aa4b2-c357-4a70-85a6-5c997a88356c', '5e780b12-da7a-4fcb-a760-cea6abdab8b0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0a9916a-b36a-4f63-9fbd-49f32e45efee', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'd15aa4b2-c357-4a70-85a6-5c997a88356c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed4f4dc4-bce4-4a37-90fa-10159b6f9c35', NULL, 'd15aa4b2-c357-4a70-85a6-5c997a88356c', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'd15aa4b2-c357-4a70-85a6-5c997a88356c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('666f6075-56a3-49c5-82e8-25356e980c3b', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, '7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', '32ac9ba4-2a55-44b0-b636-e69d71a16cb6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38985a04-5f18-48ba-b7cb-ab73449f092c', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, 'd15aa4b2-c357-4a70-85a6-5c997a88356c', '7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b19425a9-93e4-46ad-b4f5-4ac0a3dccfd4', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, '33999dfe-271e-493a-a577-7d698ab46d63', '49975049-a2fc-4567-b65a-ff15d2482dee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c323a1ed-bdf3-4597-bfe6-4e46d2cbfb43', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', NULL, '7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', '33999dfe-271e-493a-a577-7d698ab46d63', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f828e80-b839-4c00-a99a-e9f25cb2e283', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '41226c0f-ba77-41de-b709-9cddf9a77eb3', '33368a0e-8458-4363-96b7-5140595e06e4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d1abe0b7-d563-4079-aa08-75f0690c533d', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '41226c0f-ba77-41de-b709-9cddf9a77eb3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0547a1f2-1e85-4abe-b4c7-c6443aa52571', NULL, '41226c0f-ba77-41de-b709-9cddf9a77eb3', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '41226c0f-ba77-41de-b709-9cddf9a77eb3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d8081c3-433a-443c-a42f-9530c131f2a2', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '89eccc8e-de06-4a87-ba5e-1fa50e6daad0', '40bce91b-955c-4802-ae87-8dd5d7c4a156', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74913b02-b9dd-46da-b5d8-af694fd2cd5b', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '41226c0f-ba77-41de-b709-9cddf9a77eb3', '89eccc8e-de06-4a87-ba5e-1fa50e6daad0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b62a424-bf42-4239-b6af-f54d68ec3c8e', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '89eccc8e-de06-4a87-ba5e-1fa50e6daad0', 'c12aea38-955c-4577-91b8-bb520d4b9579', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ddac40af-e4cf-4e7c-902d-8d6bbbaa15bf', '23731ee7-5762-4c61-b825-d19a31217388', NULL, 'c12aea38-955c-4577-91b8-bb520d4b9579', '180970e6-4774-43ba-be24-92cc46a1e9f7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67407a51-6fe5-48dd-b33c-00de92d64025', '23731ee7-5762-4c61-b825-d19a31217388', NULL, 'c12aea38-955c-4577-91b8-bb520d4b9579', '27f136ee-b3fa-4aa7-8806-45e856c2c56c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('02737fef-9ca4-42a6-a29b-e881ba75be39', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', '92961c95-a80e-4032-9eb0-2a8f7757a422', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da2c523a-4aff-474e-a328-4401efb9754e', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '1c0c395e-a062-423c-b153-d17fcfdc42f8', '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('00c413f5-6898-47d2-88a7-463fe8fef360', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '27f136ee-b3fa-4aa7-8806-45e856c2c56c', '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d0c80bd-f561-45e4-88cd-093975fd04b9', '23731ee7-5762-4c61-b825-d19a31217388', NULL, 'c12aea38-955c-4577-91b8-bb520d4b9579', '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1964598c-1263-45a9-9ae3-5e7fa27f09cd', '23731ee7-5762-4c61-b825-d19a31217388', NULL, '4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', '6b3fba1a-8703-476d-b6d4-077e0e94cdc6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f3a32d7-9fca-4131-8460-8225a5ad813a', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '5c012fc1-4d66-4247-b453-c318437c486e', 'b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ecb9208e-f85a-44e5-9080-18d3e0d724b2', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '5c012fc1-4d66-4247-b453-c318437c486e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dfeead95-38b4-418f-b253-b9920900d268', NULL, '5c012fc1-4d66-4247-b453-c318437c486e', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '5c012fc1-4d66-4247-b453-c318437c486e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad945283-0fd0-4c90-a663-f48dc2412f02', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, 'fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', '13eda7e6-0b66-4978-8153-135556382aa9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bcf153a7-2bc9-4b31-8fab-682138cd083d', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '5c012fc1-4d66-4247-b453-c318437c486e', 'fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b223f01c-5411-49f2-97cb-856f3dff12c3', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, 'fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', '9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bdf920dd-365b-44e9-a5fc-2f1b024f5c4a', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', 'f0394d0f-0314-4cc2-b77b-412362610ee8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95880c77-bde9-4b3a-8150-2eb537a8f03d', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('040aa792-5ee3-4646-939b-5913093590af', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', '0ba3f775-77c5-4c10-998c-b340b3ce8f98', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('beb62dae-43bc-49c1-9eeb-1a1120511698', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '70474bae-df93-4ba6-951e-5ca5fe0fc4a0', '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5143dc80-6e1d-4bbd-9917-1eba9e681b6e', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b31b263-f1d3-4fb3-9516-1fdf475c0cc6', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe0aff2a-b648-4110-b532-1a4346d6fa5c', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', NULL, '19b377d6-3ffc-481f-a7e5-9ac48e47d16f', '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3fd7b9b-e62f-4961-8262-81cafe2148c8', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', '9ee7ec80-9893-48fa-a177-90538b8b66a5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ded429d2-5319-465f-98e7-04351a7b79c8', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b60167e-92b2-4afb-a9b6-e4e186e702ed', NULL, '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('002ef660-f1ea-4808-9d5e-07945f3f573b', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '9c564fe3-deb7-434f-95c1-948c62421c70', '6e151961-36ac-47e3-8094-571cf2bf94e1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0657361d-e01c-478b-b6dc-7b5672c4d090', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '98d32fbb-e9d2-4b7c-be28-78849d7efa9f', '9c564fe3-deb7-434f-95c1-948c62421c70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca8f9324-4e76-4c66-9bb9-a3e2be4f9b49', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '9c564fe3-deb7-434f-95c1-948c62421c70', 'b73eaf37-bae8-4421-b5b8-9073a14a8a74', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc13f0fe-e57e-4f93-a59b-011fe8d2c8e8', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, 'b73eaf37-bae8-4421-b5b8-9073a14a8a74', 'f843e0df-6c28-4d29-bfce-0dce1e8220ba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e9f44a6c-5736-4169-9970-435331820814', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, 'b73eaf37-bae8-4421-b5b8-9073a14a8a74', '133d043e-f9e7-462d-9519-1ae05a47a1be', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa6c8de9-6b71-4ee3-abb8-889177e99e37', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '3b727500-318d-41eb-8a8e-5d71604a2cee', 'bae797f4-38a0-4a9f-b285-692472190900', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9a3b412-aab5-48dc-b9c1-7f6771220191', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '07cea3ae-e400-49b3-bf50-8653f7d4d0bf', '3b727500-318d-41eb-8a8e-5d71604a2cee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6efb1679-d0fb-411b-9015-a8a3cb60c339', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '133d043e-f9e7-462d-9519-1ae05a47a1be', '3b727500-318d-41eb-8a8e-5d71604a2cee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79589c8d-515b-4e19-bf63-a5fe732bb7d6', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, 'b73eaf37-bae8-4421-b5b8-9073a14a8a74', '3b727500-318d-41eb-8a8e-5d71604a2cee', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25c59829-d191-4b13-b35a-a1b477443799', 'a41933db-1aac-4207-a8be-1e90621d834a', NULL, '3b727500-318d-41eb-8a8e-5d71604a2cee', 'ac14c959-2f96-4fbd-9970-87a2b07dff95', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbea7beb-6d73-4419-90d2-b60612ba1940', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '1f9f0c05-8408-46f5-a02e-48dc02568dca', '07cad025-9a71-410c-b80f-30258a65d0d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c51b78f-2b2b-458f-a3cf-4cb65ebbc4a4', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '1f9f0c05-8408-46f5-a02e-48dc02568dca', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5a5c0b96-0aa4-4347-8ad2-0ec1e8561213', NULL, '1f9f0c05-8408-46f5-a02e-48dc02568dca', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '1f9f0c05-8408-46f5-a02e-48dc02568dca', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('370db5fb-10e8-464b-b332-46606369059e', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, 'a139736b-5ae1-4b92-912f-b1fdcf04bbf5', '2e3acc28-cb00-466b-8128-317d0eb56915', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('62f84e53-0c12-4c71-bad3-40bd17671413', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '1f9f0c05-8408-46f5-a02e-48dc02568dca', 'a139736b-5ae1-4b92-912f-b1fdcf04bbf5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('746f1a33-e8f4-4561-9cd7-fbd1ed476712', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, 'a139736b-5ae1-4b92-912f-b1fdcf04bbf5', '2cb21268-8efd-4310-9230-4a84852e79de', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c658ed6-b7a0-41ca-a868-594c8d598bb6', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '2cb21268-8efd-4310-9230-4a84852e79de', '2203cdf2-5069-406b-87f0-6e600142edd8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5cf65e65-b92b-4519-be26-98f7d8728237', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '2cb21268-8efd-4310-9230-4a84852e79de', 'ece49845-4b04-434a-a12e-2e5ea1d2c241', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75b1a5b5-2097-4cd0-92a2-1498cc2818a9', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '7133241d-d238-495f-96c2-bff68b98065f', '7aabf410-a7ad-4afa-8af6-0a727127e2a0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4cdde7a8-9711-4d25-a939-6f3dd072c9c2', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '4d60a0ec-e76a-4f0e-896a-56aa061b60a6', '7133241d-d238-495f-96c2-bff68b98065f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2288be0-bd56-42b8-860d-682cb0bf4b13', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, 'ece49845-4b04-434a-a12e-2e5ea1d2c241', '7133241d-d238-495f-96c2-bff68b98065f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('546ee1e4-e3b1-458c-9c23-14a2818bb0f8', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '2cb21268-8efd-4310-9230-4a84852e79de', '7133241d-d238-495f-96c2-bff68b98065f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0abf6db7-fa47-40c6-8521-655a695f2d08', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', NULL, '7133241d-d238-495f-96c2-bff68b98065f', '3412d5e9-9e1e-470b-af39-015652349d4f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bae577b0-bf7e-4b60-9cfc-3e4e2b3ed4ac', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '88bcfc80-afa2-49fa-886f-a1e913ab448f', '723b6dcc-04cf-4444-a95b-534bdea15e9b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c17544f7-5cd8-4567-b3da-25d51c0fcc3c', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '88bcfc80-afa2-49fa-886f-a1e913ab448f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0218bf5-2c79-42a5-8d58-e640e9395f58', NULL, '88bcfc80-afa2-49fa-886f-a1e913ab448f', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '88bcfc80-afa2-49fa-886f-a1e913ab448f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1868fc4b-6e8e-463b-8693-bfc491b66f87', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '8a21ac5c-af4c-46e8-8938-180d6467bec8', 'cd4715a4-96a4-4297-8660-32c2e95da604', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26213706-6c6e-4756-9649-ac1b4cbd2be2', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '88bcfc80-afa2-49fa-886f-a1e913ab448f', '8a21ac5c-af4c-46e8-8938-180d6467bec8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2ef90acc-6f76-4aeb-958d-236d1cb8666c', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '8a21ac5c-af4c-46e8-8938-180d6467bec8', '1f10356b-7796-4761-8f7a-53bf2e82b4e8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6dfb86d-b5fe-4451-b2c1-7e07237f9136', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '1f10356b-7796-4761-8f7a-53bf2e82b4e8', '22be1e9a-65f6-4c35-8b28-39dc7982770f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5f1b8e42-a05a-4eb5-a48e-3ba294209185', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '1f10356b-7796-4761-8f7a-53bf2e82b4e8', 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39fa3d9f-eb11-4df5-844c-c471c1c61a8b', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '102906a0-8b36-402e-82da-1ba78bedc71f', '37f6ab5c-d190-4f1c-9732-da210239ae9c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26567d25-9347-416e-bd04-ddeae54e4ccf', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, 'f9a40c25-3b07-4043-90fb-ac2826818923', '102906a0-8b36-402e-82da-1ba78bedc71f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95354328-685f-4b09-b62d-43a8ea8a50a4', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, 'bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', '102906a0-8b36-402e-82da-1ba78bedc71f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51344c24-1f7e-40b5-8eb2-19b2569453bd', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '1f10356b-7796-4761-8f7a-53bf2e82b4e8', '102906a0-8b36-402e-82da-1ba78bedc71f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ab92329-edc5-497d-86e4-61bc4deb7d38', '2c3575e7-0ee8-414d-a7bb-f3604e526075', NULL, '102906a0-8b36-402e-82da-1ba78bedc71f', '85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec4b6850-c222-4ee0-9f10-df8f3ee1ef3b', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '611e8315-a98f-48b4-b284-10bcc905fa2d', '546f844d-33bf-46de-8da5-982fb210d2ab', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('955d6735-d592-4c28-bb0c-968a22dcb580', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', '611e8315-a98f-48b4-b284-10bcc905fa2d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4efef6e9-1b91-41d9-91a0-5c8870e81c1b', NULL, '611e8315-a98f-48b4-b284-10bcc905fa2d', 'dcdfdea4-eec6-46fb-a006-1753a075201d', '611e8315-a98f-48b4-b284-10bcc905fa2d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13f0b2f4-4f8e-44c2-a7b8-118504147386', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, 'b772ba6a-40b5-443b-84b2-d447db62bf71', '9f1adce9-fe79-46cf-bf54-0e58f97556f1', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3efc2aa5-c3b9-4eb2-a81f-f1bb82a3c484', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '611e8315-a98f-48b4-b284-10bcc905fa2d', 'b772ba6a-40b5-443b-84b2-d447db62bf71', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58a2591a-ffe4-43a7-9603-1fcc6ad781a6', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, 'b772ba6a-40b5-443b-84b2-d447db62bf71', '487b0fac-63eb-4188-a465-46610050184e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('78b66f5f-a46b-4732-80fb-98555b2ae8fa', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '487b0fac-63eb-4188-a465-46610050184e', '3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93b1b888-6aaa-4a26-8747-0574681e6a4a', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '487b0fac-63eb-4188-a465-46610050184e', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a338a04-d61d-4b3c-9078-e910d4ed9fd7', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', '63f86482-0fdd-4dac-ac73-4b78d4442a57', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b3b27fd-cf86-4ed2-b17b-c8a1fdeca48c', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '5b835d54-b474-480d-96a4-668e762a5c15', '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8300a18-42e5-4a85-a559-fd1c1017b4c3', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93f39f94-ebfc-48fa-bf19-88484928eb13', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '487b0fac-63eb-4188-a465-46610050184e', '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53c93593-7420-4d3d-a0f3-12f6421e98d7', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', NULL, '3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', 'c15e0b81-002e-480e-93f8-93b06f87bbff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('868020f0-2904-4c38-aba9-8d27da7d4344', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', 'd0bde494-6f96-4369-98cc-82c2b633604b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f479b11-db4b-4db6-9d64-3ff369977cf9', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a78cd990-5118-448b-8910-a47a76e9c400', NULL, 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', 'dcdfdea4-eec6-46fb-a006-1753a075201d', 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22a5a61c-1df6-4672-b857-ce9184204d8b', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '2d11e79a-9df6-4d11-b192-1f7c1e25f658', 'c990fb58-9aaa-43b8-b722-16486b8cd2d4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('89205137-f22f-42a3-9f3d-1d9477ae95c6', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', '2d11e79a-9df6-4d11-b192-1f7c1e25f658', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('496ec08c-9190-4c96-898b-f2ccc8fd421e', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '2d11e79a-9df6-4d11-b192-1f7c1e25f658', 'c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('61c41fa3-37fa-48b6-9619-6dcc1177b9a1', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', '33999dfe-271e-493a-a577-7d698ab46d63', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd7be8c1-13c7-4f17-bcd9-cfd10d0d17f6', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('69d0b07a-47f1-4e52-ba3c-83a82549f85f', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '77059463-c7ac-49ce-80ae-d8bb2a312046', '0f3ad9b8-d3b8-4068-8483-81a43e388c23', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f3ed6754-b656-43ce-94f8-d144f4a85c29', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', '77059463-c7ac-49ce-80ae-d8bb2a312046', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9f2443e4-d124-483c-ab3e-7da9c3a9f937', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'ddcf6c5c-7d81-4399-825e-2c8f6639f869', '77059463-c7ac-49ce-80ae-d8bb2a312046', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1be0522b-a971-4eec-80f6-2ab78818d021', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, 'c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', '77059463-c7ac-49ce-80ae-d8bb2a312046', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1ea9657e-02d7-4986-b810-7a2df2110d3f', '84f64b9f-3d8b-420a-b75a-782d6619028d', NULL, '77059463-c7ac-49ce-80ae-d8bb2a312046', 'c15e0b81-002e-480e-93f8-93b06f87bbff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b33a5e5-6212-45ff-b4dc-172c2e8226c5', 'cc866944-946f-4608-9ba0-fd309f0b67de', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '0604ecd0-bd4a-4f61-b8f7-0dbba0c54254', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6aef378d-cd68-4ab4-a1a0-d55311f4e495', 'cc866944-946f-4608-9ba0-fd309f0b67de', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '90a30208-da55-479b-bf1c-d61c3ec10e15', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38d43cf3-2605-4ddf-ba47-04327e63545c', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '7c6b8392-322b-4cfe-9284-c17891c08eb0', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d36729e1-0c0f-40b9-a82d-898df0c5f934', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', 'b229f023-5e44-49dc-93c5-bbece59ac530', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('300fa695-c623-4ce4-9baa-101a2b204cdf', '0344596f-43fe-4802-8b57-11cd9574b644', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '854d7b9c-c1eb-48e7-978c-70a057b6feba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5338aa0e-22ae-4539-8486-e4bdbf6c07a6', '0344596f-43fe-4802-8b57-11cd9574b644', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '95ce5834-6df9-483e-8d34-36a0240f2beb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a150549-2a36-4ca3-9440-2bf8a2ee1f3a', '18b7c4ae-621f-4618-99c5-f22819b9bf32', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '74eb962e-1e8d-4e1b-92ac-6872669d7aa6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81670f09-63b0-4da1-99a3-8a29e06cd785', '18b7c4ae-621f-4618-99c5-f22819b9bf32', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '71978dda-178b-491f-87aa-cb2054c0e68b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('574ee219-af96-445c-9b8b-746a74d6ac04', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'c57554ca-2505-4d51-8e3e-6b999950e955', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08304c49-3528-4035-afb1-7ac56a9b22e7', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '9aa9507b-9c8e-4f80-8198-028c8d161272', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4964e33b-b41e-4c42-b17b-7750a8d08b6f', '9269215d-0c94-4114-90f7-faace9ddd667', NULL, 'ff268833-fd94-40f4-8a00-65ec735997c1', '0910f61f-623e-4643-b439-67e4ae2017c8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98869961-e693-4120-b237-c5bdb14ef288', '9269215d-0c94-4114-90f7-faace9ddd667', NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'b2689cf5-3067-44a6-8543-39b2e9d53d20', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('480d20e9-4616-4ffa-a198-36f6a5177bfe', 'ace9fec5-5880-4e30-96ea-b843d7001d83', NULL, '34cc8a49-ea9b-466e-8579-7827e09f5d35', '1ff36364-1e09-4fcb-b008-22a9f664d1eb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01c06f4d-66b9-4caa-a7d2-252362730f09', 'ace9fec5-5880-4e30-96ea-b843d7001d83', NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '9034af89-66b3-47a1-9501-65a03ec68d8f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26560451-f5df-416d-a352-31e43751d735', '7659fb30-f484-469b-8817-71f19eb71022', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '29ba9ce7-5327-4918-a1ac-5ceef43bf66d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db14b13e-b1ee-47a7-96da-7bc9b54100c3', '7659fb30-f484-469b-8817-71f19eb71022', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '01eeac1e-ed6c-4f32-88f3-2a7484ff86ce', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f47eb8bc-278f-4d47-876a-edf2df692c16', '4eb3b112-412d-46ec-b127-b9c76f7cde99', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'df73d77e-52a8-440a-b5d9-2d3e718ccdfe', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8703224c-7c1f-4336-b815-4770da720dce', '4eb3b112-412d-46ec-b127-b9c76f7cde99', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'ebb8478f-4c98-4f44-bb0f-6036942d3a3b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6179f68c-53ae-460e-bb57-e7af5832dc79', '1acec5cf-f771-48ed-9c15-00505524d3b1', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '5a818337-07d3-497b-8d97-740ec2dd07c7', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f44cce76-6927-48ad-9260-6b792d862090', '1acec5cf-f771-48ed-9c15-00505524d3b1', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '904d1c20-82f2-4236-aaf8-5866a48f3de8', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('499c70bf-ea43-4cbb-a57b-d9b36cf39fef', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'b471837f-604e-4fef-ba32-3265e73f9ced', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('667c797a-2c96-45ea-8da3-1b3b7868938b', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'd19a0b6b-0268-4d59-a3dd-176fe7f8cd94', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf013d2b-5d36-449e-a889-c3c33276dcf1', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '9542f37f-717d-4918-8985-a85b96c40e32', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d8cfda8f-c3b4-4617-b246-68c9410ab3df', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', 'a6141a35-6791-4d50-95ee-1e2f1e723d7f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce0763bf-5fbd-46aa-b05c-51404055448e', '768f09ac-20c4-4952-9175-cb46e5acb491', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '8bea3826-aaf0-4ae8-a346-a3ac0d8a8143', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4b024043-3a69-46f6-827a-53510fe9cbea', '768f09ac-20c4-4952-9175-cb46e5acb491', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', '6d4e829a-88fa-4b5b-9f36-ebdb17cb152d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1a50399a-6587-49bc-8b80-b15a63a22d54', '7dd37099-29cb-4932-b412-443444dc0027', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'c130e3df-1643-43c5-8cb0-168d7d4046a3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('18daad9a-87f9-42d9-875d-fb6d6f4d3de9', '7dd37099-29cb-4932-b412-443444dc0027', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '2a23b891-90b9-4724-b7be-c8e0457e53cb', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dca9b8ff-0ae5-45af-8aa2-60959023fdc5', '419e123b-0d37-4559-8a0e-61117c653510', NULL, '08903550-662d-4b46-bfe2-74f263288b3c', '8269d7c8-3ba1-4903-9cad-206d41ac89e6', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c1dbb7a-5e74-4fe2-b85a-f084c73bc8a1', '419e123b-0d37-4559-8a0e-61117c653510', NULL, '09a5131d-4cc7-4373-8aa0-7183cd6cee62', 'f25439cf-05db-4977-8ce4-359c8047c292', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cee6cb10-ccc6-42d5-9195-9ec2a1026660', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'b02aa4fe-dd9f-4754-9d4b-793794965b7f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59e90c05-046b-4397-b635-6f27cd6ad9cf', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '5249ca6b-cc39-4d6c-ba98-6def0fe2d52c', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01a8f2ad-bb77-4f13-af82-b3ca151d4634', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', NULL, 'ff268833-fd94-40f4-8a00-65ec735997c1', '364c5249-2ae1-4c0f-a732-7c816f4ee9a3', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('124a3af2-0fd3-4333-b690-414e8119f137', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', NULL, '14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f5f6bfe2-699c-459e-8cfc-f5db1dfbd769', 'e5896125-6348-4a13-b947-71ebce17b19b', NULL, '34cc8a49-ea9b-466e-8579-7827e09f5d35', '46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b4516f8-8506-48ec-9564-cdf83fcd86b1', 'e5896125-6348-4a13-b947-71ebce17b19b', NULL, 'dbcb84e9-2de9-47f9-88aa-3fce9c269877', '3c719489-1713-45e4-8689-d83c448c1369', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c22791d-05f9-4c59-90c8-502960d52ee1', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '3fd7cb87-99f9-4b7a-b7ad-ed018d976aec', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0caf8300-c7a0-4b0e-b927-44bcf1cc58f3', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '782f02d8-7e18-4799-9985-4bcff3546cae', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d21481c7-3e7f-467a-97d7-74cf51148cb4', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '41f62d96-d6c7-4561-8ed4-209ad0ef8a83', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f23a5be3-da40-4deb-b2d7-b196d9323185', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', 'ae700224-c552-4c90-bf40-618f2de9b85e', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2282ba8-0cd2-433e-b91d-d317810e6bc8', '8e9febfa-b05b-4374-97b1-68b1f23c317d', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', '57862e6f-57a7-4b99-96b3-0c58334d0562', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82ab848f-0f51-4083-a681-66b11bb73cd7', '8e9febfa-b05b-4374-97b1-68b1f23c317d', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '6ad66094-6bca-4ed1-8414-4df62e3ae4ff', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('155cad14-a432-4aa0-a18f-d4246cfbc15f', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', 'd4bf0380-30f8-4c1c-8530-950416296242', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76bdf214-2c72-4ee5-9c68-0bbbee6ca6d5', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', 'bc19003a-f55d-462d-ab99-6a36030609ba', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('61a580f9-d45a-44ed-a867-88cd3e26af7c', '0abc3f6a-3232-409a-b81c-9416487b9290', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'd30dfdda-800d-4dfb-93f8-48ed5aa89159', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ab18c620-0a73-43df-9208-15a9ccaa7141', '0abc3f6a-3232-409a-b81c-9416487b9290', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '1a2abfca-78df-4f3b-906b-e7670f9f3b0b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e574164f-e9e3-496d-98dd-c17012bbb064', '80944291-bb84-40fa-bf0b-ac429f7f6220', NULL, 'd3d639f3-61a3-46d3-8c6e-33af6f31f718', '62bbba6a-e99d-489c-bd97-85556ef99db5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2a4f438a-b51b-4812-ae4c-2eab30b3adef', '80944291-bb84-40fa-bf0b-ac429f7f6220', NULL, 'e17798f5-5150-4fb9-8501-a736ac4aa461', '40b75783-fa88-4ade-8f40-ba0b8ae2e99b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8fb55779-7355-45de-b0a4-cfa6dafac929', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'e9902d05-14e1-42e5-a601-5a29a7d7319b', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f3c24661-da9a-4bdb-bafe-8e38c95a1f4e', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '5c648ce8-7824-4460-9b63-937148d01f63', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc65dc23-67db-4d83-bb21-27acd205585f', '9c34861c-1b7e-482c-8346-b68835f787c9', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', '956a86e6-4e1c-446d-bc30-69a123398a70', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38f9f188-52ba-4e38-b18c-0edc53da6348', '9c34861c-1b7e-482c-8346-b68835f787c9', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', 'b0649894-6476-4ed0-97a1-7ca715d19ab4', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('380a213e-6cc0-4b77-a731-7ca97cb2fda2', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', NULL, '0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'a84239c3-b449-411e-aa56-d73fc50bbc3d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9c0a80b-da70-49fd-8924-2d0d1d837754', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', NULL, 'be48fda3-4879-4578-ab53-7ef02cb2d316', '0bfe8308-de23-4b7e-b810-f13ca5f9e4ea', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b18b116e-a936-4181-97f2-6abcfe54a178', '53a9b0ea-3758-401c-bdcd-f100511d04dd', NULL, '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', 'cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('703e7a71-8f54-4a88-9332-9b0bc3df58be', '53a9b0ea-3758-401c-bdcd-f100511d04dd', NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '6a1678f0-fdd2-40ad-bc43-5f50e439646d', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d639d1df-f00e-41fb-97e2-51240df937ee', '1f85fb03-656d-4abd-962c-a4f142f93652', NULL, '928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', '6b94725d-3740-4d26-a324-10e4e3fcbd62', true); -INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f6baeba2-26b9-4844-a901-0d83dcefba1f', '1f85fb03-656d-4abd-962c-a4f142f93652', NULL, '202a6508-7fef-459d-b5b6-890b088d82be', '8f7626fe-631f-4f63-b937-bc00e8f2267b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0209d9e5-197a-448f-9249-46549f500058', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3706fd53-e952-408a-aedd-93ec6d5129be', 'ce47754e-0d06-4b12-bc91-8034a4a046e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ac11d7d8-f6ca-4c3d-aab0-a1b5a1a04713', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9ae5d7ce-d996-4510-9513-9b352cf4427f', 'ce47754e-0d06-4b12-bc91-8034a4a046e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65be3e59-c9cb-4ec1-8263-77acd074fa71', NULL, NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '47b0efd3-0e9a-4275-b2c5-d50dd2b22024', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d4c6f56-c91c-470b-aaa4-e0efa854a521', NULL, NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'ae085da6-9278-48f0-a2d2-b214f0cd55ab', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7443e4db-05b1-4a12-8daf-1d1cf20d2867', NULL, NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e4082d20-6277-4b51-b70b-1d41375748c4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fe9c371-a519-4fc6-8a02-51db66d9f4cf', NULL, NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9c5062d4-6ed6-4284-967e-7e661a0f8016', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13649546-9e0a-4278-a106-b661a967cb56', NULL, NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '41688207-eecb-4233-b9b2-5f18eee23546', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('255896f7-49d0-4818-a8ef-ab89e09fe220', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, '7fe86d82-1b9d-485e-a206-a4c9bb39125c', '8a96713c-f52a-494b-9856-5a7cc869449b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7267fb0-0ba2-4e9a-ac10-7fa7d23b252b', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7fe86d82-1b9d-485e-a206-a4c9bb39125c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dce4e633-96ab-42a0-91d8-d70d968fa9c3', NULL, '7fe86d82-1b9d-485e-a206-a4c9bb39125c', '3706fd53-e952-408a-aedd-93ec6d5129be', '7fe86d82-1b9d-485e-a206-a4c9bb39125c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aee0fd67-8819-4c8c-b2a1-9b6b2724d985', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '0debf423-4128-4959-94b6-c4e17adfd25f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d33a2d2-8318-412a-b2a2-f4903e243634', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, '7fe86d82-1b9d-485e-a206-a4c9bb39125c', 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8886335c-b86c-4482-855a-8bba58430513', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, '38aa2ac2-71e5-4805-94ae-61361288f235', 'bd35e25f-a9d7-41f9-835d-55026654c03c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3fe9949e-fe13-4ebe-ac9c-175d91704d68', '691db509-b67e-46ec-a859-c4cb05fbbd70', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cb309ec8-023d-4a2f-8fc7-33ea3b0a17ee', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, 'eba5fbe1-b196-4df3-8d92-fd9023668744', 'd0ee13fb-5f61-40d3-b38e-02eafd89160f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fff94117-2a2b-4640-912f-054e98076714', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'eba5fbe1-b196-4df3-8d92-fd9023668744', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a5da7c37-b49f-481e-af99-be5f00420901', NULL, 'eba5fbe1-b196-4df3-8d92-fd9023668744', '3706fd53-e952-408a-aedd-93ec6d5129be', 'eba5fbe1-b196-4df3-8d92-fd9023668744', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9bf28023-0b2e-4ecf-8b19-e2c33708aac5', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'e6970814-b140-4805-95f3-610c215eb5ab', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad469a06-3a5c-4501-947b-4cbff6d3c4be', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, 'eba5fbe1-b196-4df3-8d92-fd9023668744', 'a6ff0898-04e1-49b7-8621-b42846df06e1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('030d63fc-2357-4bb7-8828-527aeddb3f37', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, '5c9372e0-cb21-4ae7-a461-df086ad19426', 'e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dec9b37f-9f1c-414c-b499-15d6c2ac2633', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d2fb1e9f-ccc3-4316-9aed-b4ddd25cd865', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, 'a930208f-7ef8-4296-9f70-24c50656ac58', 'eb43edcb-0d20-4614-b45c-736ef4f56380', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('52f8abd9-2cc0-42d1-a514-8f03b8ae64db', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'a930208f-7ef8-4296-9f70-24c50656ac58', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ee92f6ef-83f7-42c3-9987-7a2849b7392d', NULL, 'a930208f-7ef8-4296-9f70-24c50656ac58', '3706fd53-e952-408a-aedd-93ec6d5129be', 'a930208f-7ef8-4296-9f70-24c50656ac58', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('097f8881-5e6b-4870-8d07-307ee55359c9', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'db94672f-1fbf-4898-bff8-2bfb5b2450a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5dcf4fa9-caca-4c5f-911c-0556ee8526cc', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, 'a930208f-7ef8-4296-9f70-24c50656ac58', 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('18de6002-7109-44c8-b001-38af17fbb126', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, '1280183b-c71a-4b86-bdec-7f3800679ef4', '3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('422119f8-cf6b-47a7-a6e5-f07fc59d1ff3', 'd363745a-e94f-48be-8397-4b361570a54d', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', '1280183b-c71a-4b86-bdec-7f3800679ef4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5341c201-1e05-4750-ad24-7bba63bbb0a4', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', '684d7313-c093-4da0-83e8-bd73c6cc0bb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2fc7b67b-c746-475c-b2fb-f2140117db64', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('069f69db-d07b-47c1-a7dc-2c02f32599b3', NULL, 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', '3706fd53-e952-408a-aedd-93ec6d5129be', 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc86a67f-b62e-45b4-b14b-d93272c79756', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, '939dafca-fe72-499d-979d-6fe0288e6807', '42a22abb-f604-4980-b6fa-adb1aa4e0adf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2296270c-0122-4ebf-a894-5eba96a788cc', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, 'd1d8fae9-566a-4a6b-8a1c-372b63108fe6', '939dafca-fe72-499d-979d-6fe0288e6807', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b693f79e-8185-4c6f-9b30-5160c6f5d5fb', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, 'b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', 'd226bd12-192c-43f1-bc65-45803a17c4a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0485fd95-27e8-484c-8bba-e8144bc0ba15', '7a334268-7d11-4765-8fa9-17e2c36cca7a', NULL, '939dafca-fe72-499d-979d-6fe0288e6807', 'b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e98e8e5a-a249-4da7-bfca-0c74d828d0db', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', 'deebf94a-2ef8-40bd-8538-9227bb901fee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a7316b4-ca96-4991-a2dd-b3404ebe7ccb', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3046b32-105c-45dd-a5e4-9684f43ef739', NULL, '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', '3706fd53-e952-408a-aedd-93ec6d5129be', '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0c4f7e2-feb4-4559-894a-6d60593f7935', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, '06bf2ac2-61c5-42e9-917b-8b68afcc0d47', 'a3aee0e9-b8f3-4262-80ae-5cc6154cdc10', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0480f7e-3066-4cc5-b5a4-dcbe3e661b2a', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, '2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', '06bf2ac2-61c5-42e9-917b-8b68afcc0d47', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2edfcd56-1985-4bec-b683-f23909acb1ee', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, '7a8959c2-e6c0-4af3-9d64-117811ec0d02', '4fe450ed-3a24-49b8-98cc-fa85de9ce889', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('558ee33d-5b2a-44e2-a5b8-31b80bcc32ca', '33b40eee-30ed-4924-859d-6c58b5aa4124', NULL, '06bf2ac2-61c5-42e9-917b-8b68afcc0d47', '7a8959c2-e6c0-4af3-9d64-117811ec0d02', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea2432fa-f049-4858-8279-8a039d9c6d30', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, '9d6a3750-0d32-469a-a476-2d8525f7e692', 'c11382ee-e0e3-4b25-b8ba-640dde8c20bf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5147ee1c-b04a-4add-96a7-c52e72186004', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9d6a3750-0d32-469a-a476-2d8525f7e692', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a3c0ef7e-f9ac-43e3-9674-7d4a4d3f935a', NULL, '9d6a3750-0d32-469a-a476-2d8525f7e692', '3706fd53-e952-408a-aedd-93ec6d5129be', '9d6a3750-0d32-469a-a476-2d8525f7e692', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25ec885b-5885-47a0-89ea-cbaf2838f16d', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', '0d98be37-8ae9-48c8-9bff-6b7581e256fa', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3e4bcbd6-e9e8-4667-b082-65ab49cdd047', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, '9d6a3750-0d32-469a-a476-2d8525f7e692', '82d6e2a0-3c2d-4a8e-8638-4903696927d5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7df1503a-19d3-4c58-bce8-72dcabf3ee17', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, '25acc71c-db8f-46e4-950a-8ea76637bb9b', 'de8da2bb-9e4d-44e7-ad03-e9763db4331f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97a3cb59-87c2-4aa5-a20d-c49726d852cb', '16da0560-e134-41c5-aafb-1f7a5b33692b', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', '25acc71c-db8f-46e4-950a-8ea76637bb9b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1234271b-e26d-4f40-91ce-b88639be5579', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, '0b754d22-82a2-4349-af85-2cee67716f66', '390087c9-9c6f-4c2f-9c77-af65112c520a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('313ed510-dd9c-4336-94cc-49f4b9764237', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0b754d22-82a2-4349-af85-2cee67716f66', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('534ad46c-147e-4223-9965-14c1b80fc096', NULL, '0b754d22-82a2-4349-af85-2cee67716f66', '3706fd53-e952-408a-aedd-93ec6d5129be', '0b754d22-82a2-4349-af85-2cee67716f66', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('482020d5-4755-47e3-8e37-2a53dbfc51da', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', 'ea4baec8-4128-4e59-b0e1-69b450c46755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ba8e044-7762-4b42-9383-dfca5f38f2d5', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, '0b754d22-82a2-4349-af85-2cee67716f66', '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04398c2b-0517-4dde-a377-c3bb6aa6acbb', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, '24f9488b-412f-4314-b160-2897f4dcff1b', 'e9887f07-65e4-4b5b-a134-f023fb127cbf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a48c0d05-44c2-4f14-9bf6-6872a0e643a3', '1fc10779-390b-40ff-b641-b6b5e2634ebb', NULL, '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', '24f9488b-412f-4314-b160-2897f4dcff1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1ec460a0-94c2-4faf-869e-02a6edf7d16c', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', '2e07da63-f1f6-4342-b090-f3c465e9093a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be53f5ee-7a75-45fe-b438-2b11efbf210d', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eac7fcd2-b8db-4b32-834c-41c717ba4a56', NULL, '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', '3706fd53-e952-408a-aedd-93ec6d5129be', '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f29ecf53-d978-406a-9b5d-06af83228fb2', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, 'f9d5ba94-1514-4400-88af-7b7d3798f473', 'c8cc9a24-e3d0-412d-867b-8e617e40f1e3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6236b09e-2522-435a-850a-734c1951691b', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, '310cdf00-c863-4ea0-9e4e-9eac8a74f51a', 'f9d5ba94-1514-4400-88af-7b7d3798f473', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('653a28d9-f2c5-414a-a31a-b9fc2afd9a08', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, '20926d99-1f1f-497a-8e13-ce3cb4b1eb73', '32b78d45-4a5c-48a5-bec2-efacd97dc76b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1aaddb85-a79a-48fd-a09e-27aff2656351', 'caac18bd-9277-47ac-99bb-368e2d64dac0', NULL, 'f9d5ba94-1514-4400-88af-7b7d3798f473', '20926d99-1f1f-497a-8e13-ce3cb4b1eb73', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c890dba3-59b0-43ce-b4a7-8b72d56c9bd5', 'eead6995-dd54-475f-8194-74445c421305', NULL, 'b54d5034-1898-4712-a472-5ecac0e22a1a', 'caa58c78-6540-4f75-a24c-d4ea5f218cb0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('566a1aaa-cf4c-4af0-abab-f2df16e450e0', 'eead6995-dd54-475f-8194-74445c421305', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'b54d5034-1898-4712-a472-5ecac0e22a1a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4787badb-20d1-4e0e-864c-0077a956f204', NULL, 'b54d5034-1898-4712-a472-5ecac0e22a1a', '3706fd53-e952-408a-aedd-93ec6d5129be', 'b54d5034-1898-4712-a472-5ecac0e22a1a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa6b4d7a-976f-4ae2-a60b-91e0db033b4f', 'eead6995-dd54-475f-8194-74445c421305', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', 'ae30faa4-b82e-4e65-8324-360fdba2d504', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65aeb029-27df-41e0-9ece-d8530348e84f', 'eead6995-dd54-475f-8194-74445c421305', NULL, 'b54d5034-1898-4712-a472-5ecac0e22a1a', '57ee73c6-769e-461e-9cea-7bfe56970bf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba911597-a4e0-4850-80dc-570d22a66b38', 'eead6995-dd54-475f-8194-74445c421305', NULL, 'e65ad361-79d6-46a3-a7c7-a18048b7237a', 'f38fcb66-ea16-41fb-abdc-ea3df857d5e4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('180e3c3c-0f8f-4403-9892-fecd79374318', 'eead6995-dd54-475f-8194-74445c421305', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('03f51fe7-db78-4b8d-996f-cbee3ba752ab', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, '97344c39-24d3-4df5-8dba-ba41ff28a020', '81ea98dc-258a-4ab6-8537-8de22e9e90be', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0280cb3-1d1d-4ec4-b00b-c220caa3729f', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '97344c39-24d3-4df5-8dba-ba41ff28a020', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9682d9f3-0cd6-4a25-8d44-8adf95190ad3', NULL, '97344c39-24d3-4df5-8dba-ba41ff28a020', '3706fd53-e952-408a-aedd-93ec6d5129be', '97344c39-24d3-4df5-8dba-ba41ff28a020', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e948b309-9135-4960-9694-a299c6b71082', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, 'd206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', '0a2e575c-9d22-42e7-8446-546ac3cda8ed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('595b65be-6f68-4ec5-9413-e546774b27b7', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, '97344c39-24d3-4df5-8dba-ba41ff28a020', 'd206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed3d99d6-01d6-47f4-afcd-fc6960dc94be', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, '6c787015-c910-455d-8b2c-c3ae7bece7e7', 'b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96aa9986-9d0c-4303-9eb3-34f0cc531cd0', '4b68de11-a658-44bb-be49-ad592e73e3d8', NULL, 'd206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', '6c787015-c910-455d-8b2c-c3ae7bece7e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e8e7789-e43a-4b38-8693-e79f25490293', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, '680b8464-0536-4f87-a952-56e549a70a99', '9444adae-37a0-434e-97b7-3304b5577498', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a939473c-c689-453d-a436-5abff20fa354', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '680b8464-0536-4f87-a952-56e549a70a99', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7691369b-8338-436e-b4c9-97fdda157ad9', NULL, '680b8464-0536-4f87-a952-56e549a70a99', '3706fd53-e952-408a-aedd-93ec6d5129be', '680b8464-0536-4f87-a952-56e549a70a99', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2121061-5baa-4333-88da-95df06ddc21a', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', 'e17045f7-b4ef-4c12-beee-56b1b5ef7190', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0bcd4e3e-e6c5-48df-aa5e-bc4b31f241ec', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, '680b8464-0536-4f87-a952-56e549a70a99', '93ec1b20-de2b-4af1-924f-047a7afa0276', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('32bff958-41ea-4b9f-972c-c7dfbca82caa', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, '4330591d-61d5-4435-827a-c71b8328a700', 'd6d69027-db1a-444c-be6a-e14232b71647', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ecaab39-97ff-4034-9826-0023beaa8f75', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', '4330591d-61d5-4435-827a-c71b8328a700', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65143c28-70ba-4227-aca5-44d39e0fb9b0', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, '0ca35f5d-778f-4207-88ae-beb5a648a6f6', '511d8f3d-266d-4c3a-9091-a7b16d8e61bc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35ba2de2-3f5c-4f0d-82e0-ca7cfaf14bb4', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0ca35f5d-778f-4207-88ae-beb5a648a6f6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('261bdd26-069f-492d-94c1-37002eeeaad2', NULL, '0ca35f5d-778f-4207-88ae-beb5a648a6f6', '3706fd53-e952-408a-aedd-93ec6d5129be', '0ca35f5d-778f-4207-88ae-beb5a648a6f6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b08f5236-cdc2-44b9-b9a9-d7696970d60e', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', '61aef2e8-ca62-4a62-8a4c-6a56f6fa6880', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98c73e4b-bf68-4de3-8b95-522b70836830', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, '0ca35f5d-778f-4207-88ae-beb5a648a6f6', '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cbc774db-9885-4387-89e7-a07bd21d1197', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, '5167487b-90ee-40b9-9c34-535b74b3186e', 'f03d3fab-a32c-40a8-9fb3-ff456bbb7f45', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('639d2da7-6cde-485e-a12c-047e5345ec38', '25358342-4f90-4397-b4c4-d90524ac0b7b', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e58bbe06-9100-4157-8366-e69f6535d72c', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', '4a861961-b89b-4ed1-8a22-076edb1fe182', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0cb20f17-8aa9-462d-bae3-4f7cae45bb4a', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0489eda3-8f56-426a-9be6-f9f689c0e29c', NULL, 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', '3706fd53-e952-408a-aedd-93ec6d5129be', 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70d7d9f3-1b2e-4257-88c3-28884d0d6c03', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '0c9f6461-5ab3-4c39-870d-e66aacd5d522', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('88d40a3a-1282-4655-a268-c2095662d402', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, 'a0a8a5e1-e11f-44ec-984f-163e049c81e1', '4241127c-1c6d-41b4-9350-3aa73785f6c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d609f65-3a9a-4ef3-a184-29c63d54bb41', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, '206fcdf2-c22e-480f-9029-42183cc2990e', '7d188b98-3755-4753-b776-7226df8db3bb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c84f3466-1307-4db5-87e0-69216ef0e261', '4997dce8-4927-4a10-a7b3-16c574eb79c9', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d18a6927-8a9f-45ce-8554-99aabdc230c0', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, '51c51fa2-3706-470a-9d15-0bad421ea7d4', '8973550c-23a8-40d5-bd36-4b4f8608841e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b65a62a-3150-4e79-a90e-58b7a31cbada', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '51c51fa2-3706-470a-9d15-0bad421ea7d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7bc4246e-62a8-41a4-a057-93d2d0554b06', NULL, '51c51fa2-3706-470a-9d15-0bad421ea7d4', '3706fd53-e952-408a-aedd-93ec6d5129be', '51c51fa2-3706-470a-9d15-0bad421ea7d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('770efe1f-9453-43ee-afcb-5cd49c3892c3', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', 'e887ff28-0576-46a5-8faa-b4167f9cab6a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b729cee-fb30-418a-a54a-36e1451ff572', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, '51c51fa2-3706-470a-9d15-0bad421ea7d4', 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('037d9131-fdbd-4a05-9713-571bc29a4c5f', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', '6becffbf-7ca9-422d-a429-c022f023d9ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc1ad7a3-7342-42a8-b4e7-7fb740cb582f', '9dcab961-1465-40e3-8d83-357b22af2674', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cfae6716-5c5d-4660-860a-23a4e38d7195', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, 'e1947aaf-5b7f-4597-b296-25830e9c945b', '32860409-f9d0-41f3-b19e-25a38bdabc3f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fae58d16-9c53-4135-b39d-992743c48c95', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e1947aaf-5b7f-4597-b296-25830e9c945b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45c1954e-b8f8-47fe-b0cc-d458567060f9', NULL, 'e1947aaf-5b7f-4597-b296-25830e9c945b', '3706fd53-e952-408a-aedd-93ec6d5129be', 'e1947aaf-5b7f-4597-b296-25830e9c945b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97a6f3c4-8311-42b1-a519-cdf832ea682f', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, 'a822e970-7b6a-417d-81d0-a8db0c985427', '44f00bec-0091-4523-9235-84aa669de6df', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbde9321-b71c-4e2e-a4d0-fc7233d09904', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, 'e1947aaf-5b7f-4597-b296-25830e9c945b', 'a822e970-7b6a-417d-81d0-a8db0c985427', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db770b7e-a585-4a52-9bdb-586c846f50f4', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, '6fc5eacb-5328-41c3-a71b-e7712338862a', 'efb67518-722d-4f1b-8280-e3f894406dd5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9802498c-ba4f-455b-99e0-7d3d74aaf888', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', NULL, 'a822e970-7b6a-417d-81d0-a8db0c985427', '6fc5eacb-5328-41c3-a71b-e7712338862a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0c6a190-5a5b-49cb-b6cd-3aa97d65effd', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, '87f8ac1d-b082-4961-979c-cd3de0e46b21', 'b8a958a1-b18b-4198-995c-7057791c7b6f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a7b3b25-55a2-45a7-8e73-3965f6d42114', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '87f8ac1d-b082-4961-979c-cd3de0e46b21', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9cc8dbdf-4ffa-4c8c-9eeb-3dc4f291cb58', NULL, '87f8ac1d-b082-4961-979c-cd3de0e46b21', '3706fd53-e952-408a-aedd-93ec6d5129be', '87f8ac1d-b082-4961-979c-cd3de0e46b21', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a24d7161-01ec-47ee-8290-1881e4330e97', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', 'e3eeab03-d7bd-4dcc-b076-3bca06fcedcd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f5371fd-18c4-452c-bf30-f45a8c955118', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, '87f8ac1d-b082-4961-979c-cd3de0e46b21', 'ba7a634b-c352-418c-a8c0-58918f32f8a7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b2e92c5-76d2-44a9-88b8-72059bf35a81', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, 'ed0f7762-a094-4a88-abde-8472da33bcfb', '1be4a900-49fe-4fef-b4f5-47643f463859', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b14bdbd-9cb9-4aeb-8e52-bec6d5560cda', '627a274d-55b0-42e7-963c-8b0cc3e204b4', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', 'ed0f7762-a094-4a88-abde-8472da33bcfb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77236f22-0606-4573-a7c3-7d5f21cf9486', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, '9455fccb-71fa-4cff-bf89-5dfc719f3374', 'ea674a43-6195-4c02-8bbf-88c2255030ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d13c0466-206b-4584-ac93-2be555771c4b', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9455fccb-71fa-4cff-bf89-5dfc719f3374', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4804c996-c47f-4784-beae-80a51ee0d044', NULL, '9455fccb-71fa-4cff-bf89-5dfc719f3374', '3706fd53-e952-408a-aedd-93ec6d5129be', '9455fccb-71fa-4cff-bf89-5dfc719f3374', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6f889e57-27bc-4441-be05-633783ab6321', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', 'e6b918a1-edaa-4170-b6eb-9c8257b9a72a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd9e86d9-db1d-4fae-9ad6-79692780436a', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, '9455fccb-71fa-4cff-bf89-5dfc719f3374', 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('090e641c-573b-47d3-b254-f0ce4c80861b', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, '67b756a8-aff9-439d-8ac8-b8965b63ac32', 'c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c65ea937-2e00-4ac5-8662-3411d66bca56', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', '67b756a8-aff9-439d-8ac8-b8965b63ac32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('47db507d-3dd0-47db-bed5-e37816975659', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, 'd85c013c-e791-4bec-ac0d-a217472cf425', 'c21abea9-6973-44c7-91f4-2d163d97764d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd5c0a3d-5b3c-4f9f-953d-a2950af2ca73', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'd85c013c-e791-4bec-ac0d-a217472cf425', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce7f6e0e-e793-4c9f-921c-4432f946d110', NULL, 'd85c013c-e791-4bec-ac0d-a217472cf425', '3706fd53-e952-408a-aedd-93ec6d5129be', 'd85c013c-e791-4bec-ac0d-a217472cf425', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3dd23a9-7be6-4ba0-8799-4a420de0b930', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', 'b94eb65e-0105-4cf9-b238-cd3e4715c08d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31a6e718-6d5a-4c09-b12f-076bec7e334d', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, 'd85c013c-e791-4bec-ac0d-a217472cf425', '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de0e18ad-bff5-42bd-9384-30a5eec6ef5f', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, '7454ce37-a2ba-4f52-a5da-2190203ca089', '98ecef93-9816-44dc-a028-61cc9403efb9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c58f4061-42f2-4606-9ea7-ffbcf8889610', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', NULL, '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', '7454ce37-a2ba-4f52-a5da-2190203ca089', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54f14461-8203-4ba6-a130-81ece6161f31', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'd8bc6523-20de-42c3-93e6-5884924a7cdb', 'eed193d1-f65d-4738-b8ee-d991aeea4389', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b48c930-e321-426a-a187-8f91c01d9e35', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'd8bc6523-20de-42c3-93e6-5884924a7cdb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5de6e0e-6325-4985-b5da-83c71d1cfd7e', NULL, 'd8bc6523-20de-42c3-93e6-5884924a7cdb', '3706fd53-e952-408a-aedd-93ec6d5129be', 'd8bc6523-20de-42c3-93e6-5884924a7cdb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f52af204-37d3-428e-a836-5ee0b68136e2', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'da9600c2-7dcc-4a7d-87f1-33f4a441e807', '03602c91-9c55-4264-8c24-9f9d3cbaf869', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3bdcb54f-c406-4e62-9240-b03ed38f3589', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'd8bc6523-20de-42c3-93e6-5884924a7cdb', 'da9600c2-7dcc-4a7d-87f1-33f4a441e807', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ab945c4-6298-4b12-84ab-6df6fd717d71', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'f1afc7a2-588d-4b7e-9975-7b0eda21f846', 'f8a806d8-a37b-4513-a77d-26cf05108c68', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1543772a-3456-474b-926f-6b03d2c47866', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', NULL, 'da9600c2-7dcc-4a7d-87f1-33f4a441e807', 'f1afc7a2-588d-4b7e-9975-7b0eda21f846', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d35045d-6964-481a-8073-ddc2553fe80f', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, 'c184a3f4-ab4e-4263-a14c-70243c83e166', 'd53e98ff-47a8-4be8-a668-c3b45398f278', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2fb0cd1f-5746-4352-8eab-99c9c7b253be', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'c184a3f4-ab4e-4263-a14c-70243c83e166', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('068b7e74-a547-4ad7-988a-ec1193a9b829', NULL, 'c184a3f4-ab4e-4263-a14c-70243c83e166', '3706fd53-e952-408a-aedd-93ec6d5129be', 'c184a3f4-ab4e-4263-a14c-70243c83e166', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5091c7fa-0b70-4a94-a588-925d1f424c62', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'cad96a06-91b7-43d8-897d-7bfb1d7054fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('23447319-b6db-408b-8619-4b5dff4af765', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, 'c184a3f4-ab4e-4263-a14c-70243c83e166', 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('309ef53b-eb20-4341-b25e-cff936c534e5', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, '8806c446-5551-4059-ba53-850a2d147c7c', '11749bf4-1bba-4698-93cc-41cd8d261166', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a7fd6d4d-db5f-422b-a4bc-6784cf5276ac', '137fb47a-07d4-42cc-b2ef-8e371041cf41', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6f3efb91-1a3a-45a2-8026-5c961b89178c', NULL, NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '3807de9b-30c6-4a1a-a434-85e80560d3b5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ac85c19-6eb7-47d7-8f20-537a040385bb', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', '0beca0d8-2895-476e-afce-0923bba7e701', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ec2354d-edde-4757-96da-970c87e89500', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4f90dbf-44f4-492a-a6b4-8d7991d8fcc0', NULL, 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', '3706fd53-e952-408a-aedd-93ec6d5129be', 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b9344e1-c62d-4e82-b513-5b45513dc96b', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'c8f5fe32-5429-4991-8d88-ba9a79aead8a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dad9011e-c9c9-4779-b743-fdf4f50a3bbe', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', 'e03da822-f071-4c66-890f-f93a458aec28', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ed6fa54-5b96-4dbb-a5c7-c3fbedf24aee', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', 'ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d0534a7-6e05-4f81-b748-0402a99351b1', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26da6601-35ce-4b64-98c7-96c61c2a2f2f', NULL, NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '7880ca8d-9bf6-4ae4-9056-5677ef591442', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e5b44c3-3e7d-4fe2-bde4-97dbb16454ed', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, 'e811eb41-9645-43d9-86b4-d3b522acede9', '3f16c617-f9ff-4634-b4b6-2cee590e2cd0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('823337c9-d747-4b49-8790-14852096547c', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e811eb41-9645-43d9-86b4-d3b522acede9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22225af4-299f-4f44-b72c-c6be5446566b', NULL, 'e811eb41-9645-43d9-86b4-d3b522acede9', '3706fd53-e952-408a-aedd-93ec6d5129be', 'e811eb41-9645-43d9-86b4-d3b522acede9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21b50e96-4f64-4e8d-8165-3801e3f86512', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '4812d3ef-02dc-4a03-8d13-7661dd92477d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c45c3ae4-41a5-4285-92ab-e00121bee2ab', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, 'e811eb41-9645-43d9-86b4-d3b522acede9', 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('204f5c32-4252-4adc-9fd7-469b54468378', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', '624f1c38-a8ba-40a3-8f6b-dfe76cc36034', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('257ace34-9815-492a-b745-785738584840', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df3d2b46-0a7d-4aee-92b6-d54733b3eeea', NULL, NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '195afe34-3bc9-43cb-86f7-7eadfb5d25cf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b3cbea4e-8ccf-4922-a338-052705e9d0ef', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, '02e3a73a-07fc-46df-a14f-569f31249c16', '08a3ffd0-77e4-4759-ad73-d42ca4d2d807', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f83a692-c740-4cff-a20e-92bcf4c18035', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '02e3a73a-07fc-46df-a14f-569f31249c16', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('64b9ff61-121d-43f0-b9a1-0f7eb0246a16', NULL, '02e3a73a-07fc-46df-a14f-569f31249c16', '3706fd53-e952-408a-aedd-93ec6d5129be', '02e3a73a-07fc-46df-a14f-569f31249c16', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2e7ae6a-e0db-4209-91b6-4999c8d03f73', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, 'f87398bc-225a-4eee-bea8-7983be6ae529', '6e962b9c-39cd-4cec-9750-c36419ff6319', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc56b982-1a71-4c2b-89e4-e0a39549780e', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, '02e3a73a-07fc-46df-a14f-569f31249c16', 'f87398bc-225a-4eee-bea8-7983be6ae529', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0827c85-5cc3-4910-97c3-583c99f782a1', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, '236b88d3-09bc-4750-9219-61529f7740af', 'a5eeaa7d-bf09-41e9-9414-470442665789', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13f0edf1-7d44-46bc-86d1-cc993ca16624', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', NULL, 'f87398bc-225a-4eee-bea8-7983be6ae529', '236b88d3-09bc-4750-9219-61529f7740af', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a2a86e1-b2b5-40d2-b9f1-d1dfc4440845', NULL, NULL, 'f87398bc-225a-4eee-bea8-7983be6ae529', '1f552123-71ce-43f0-b091-a43adb7a8a0c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e17d863a-af45-4f34-9af7-32054e6c8cd4', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, '09a6064d-a472-48e9-9755-d0117f2af6fe', '4cc5242e-7cc3-426c-9025-ccab1d8a895a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2cd5f7a6-1c48-40b6-85dd-97b4730d1e6e', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '09a6064d-a472-48e9-9755-d0117f2af6fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cfec797b-bb3f-460b-a498-1d3d18eb7ba5', NULL, '09a6064d-a472-48e9-9755-d0117f2af6fe', '3706fd53-e952-408a-aedd-93ec6d5129be', '09a6064d-a472-48e9-9755-d0117f2af6fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f0fd76f-bd0f-47bf-b9a9-88c77f533484', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, 'bab68a5a-2016-454e-b143-8c334188d2c4', '60dbf8ee-3263-4878-990f-ab43fe96e48c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed2e685b-1e10-4252-a32c-7377cf225c03', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, '09a6064d-a472-48e9-9755-d0117f2af6fe', 'bab68a5a-2016-454e-b143-8c334188d2c4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10659beb-ccc1-47c6-afca-0821a2b3587e', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, '9115be3d-2bef-40ce-b0c9-339e460c751d', 'ba27345e-0699-437d-b4ca-24a8e326c345', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4b8b81e-4b83-4a44-bc00-1496f9697af7', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', NULL, 'bab68a5a-2016-454e-b143-8c334188d2c4', '9115be3d-2bef-40ce-b0c9-339e460c751d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('164308f2-2289-4518-bc42-3770b0725b15', NULL, NULL, 'bab68a5a-2016-454e-b143-8c334188d2c4', 'f2850544-cbc8-4add-ad35-4b634370b913', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0d0e550-c7fd-4b7c-b33b-fdffba64003f', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', 'd1767f98-0fc1-48e6-ab30-0cab02504ee2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55281d1d-424a-4c7e-80a1-907d61c30b64', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('910b67d8-af35-4af5-b349-023fdf38e40f', NULL, 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', '3706fd53-e952-408a-aedd-93ec6d5129be', 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9ae28dd-a2fb-4141-aa60-75c2faf05f18', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', 'c1816e75-de8d-480d-9a62-30805b9d2f99', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e773e6e-6a9a-45a0-870d-7b56be46e253', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'ce0b0564-7cda-4c03-afcc-0854f3c5e519', 'da979efd-9d87-4dc5-a839-493e883cf292', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ea26201-6404-4ad8-a066-d6a4a355da56', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'f913c978-1afc-4af0-9bb6-8c21eed95991', '374b8a48-00ec-4df2-9320-848bedfad9de', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37ccbf6b-e3c7-4b19-b884-0bfef6a98517', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', 'f913c978-1afc-4af0-9bb6-8c21eed95991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('082d7c3b-6070-4ff0-999c-fb4be3b5dc62', NULL, NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', 'c55c0032-b1a4-47ac-89da-bb9c527a4a73', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd6475f8-ba0c-4b5b-b820-74c8c8a26c13', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', 'cf0de0eb-126c-4c60-aaf0-626f5c17820a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0c593c3-6aa7-43b0-b622-b036d303e7e6', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f3d60a9-93d1-43b7-9e05-905451f01c3a', NULL, 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', '3706fd53-e952-408a-aedd-93ec6d5129be', 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0601a335-404a-4943-8e99-569022721247', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '38061696-b53f-42a9-86c0-77b7196a871a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('efe4417b-8511-40fd-b9d8-9c543cb11579', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', 'b4224d96-af95-4008-9a96-9ae04b44913f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a46f201-3a46-4d72-bf3d-682fd0068c18', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'e668cce4-9f01-4c71-b28c-79859e02971b', '594d657f-567a-4e69-b28d-f2b79136ca2d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe29d736-dd13-4a6c-8525-d6eb3bbcdab8', 'ff030436-d19e-4606-9d48-7e192eaf469f', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db43eeac-3853-4784-a242-f338a986f32c', NULL, NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '99c49e4f-cfe3-41d3-940e-915c2a2e9641', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f69144bb-368b-4d22-b69d-af23526ba7a4', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, '22600f05-6955-48f7-8930-c884c9c31b06', 'd7a0d94a-c274-439a-b500-0f69b13c49fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('111141e6-d131-4706-ae7a-95f3552e1bdd', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '22600f05-6955-48f7-8930-c884c9c31b06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd532bd8-a252-4365-8e4c-2735d5fc5878', NULL, '22600f05-6955-48f7-8930-c884c9c31b06', '3706fd53-e952-408a-aedd-93ec6d5129be', '22600f05-6955-48f7-8930-c884c9c31b06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7cd9022a-9f45-4d2a-bf6b-27b831272c43', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, 'b28425cc-f859-43db-b3f5-64b5fb6a668b', 'eb7e6ebf-472b-40b5-9d88-47263fdb01cf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8cb620e9-a1c8-43bd-b617-07124fab53a9', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, '22600f05-6955-48f7-8930-c884c9c31b06', 'b28425cc-f859-43db-b3f5-64b5fb6a668b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a42f0b71-244c-444f-9e90-891b760e40b0', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, 'ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', 'de1d831c-b96c-44fa-80a3-725856c6f998', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2a2ce413-d255-4aaf-b59d-ec55fd4c0a4c', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', NULL, 'b28425cc-f859-43db-b3f5-64b5fb6a668b', 'ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25b98f12-7a6b-45a4-b080-0e45097c58fd', NULL, NULL, 'b28425cc-f859-43db-b3f5-64b5fb6a668b', '8cc95b98-8edc-4652-ae4b-9752d3cfd6b1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86a4a239-e595-41ad-828a-c18f2e0177f7', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, 'c573267e-79c1-4e2a-9e95-55613006a3c8', '1bcffd04-b60d-4cdc-8fe7-df9bd04caf47', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa038d8f-8369-4dcc-888a-8c8e67a66105', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'c573267e-79c1-4e2a-9e95-55613006a3c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3891199-3367-4c2c-91e1-15dc790f84dc', NULL, 'c573267e-79c1-4e2a-9e95-55613006a3c8', '3706fd53-e952-408a-aedd-93ec6d5129be', 'c573267e-79c1-4e2a-9e95-55613006a3c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc5145e3-55d3-48f2-ba2f-c45ae131b1ae', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '7637bd59-9da5-4cdc-a37c-dd588769d092', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b0c83b0-8990-4712-ad91-de9339fa1304', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, 'c573267e-79c1-4e2a-9e95-55613006a3c8', '6ef557f3-0b1e-41e9-bde7-8abea686f965', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('252fb082-66ff-4c49-8dcd-a3b9d109cd09', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', 'b66e76e3-086f-4edd-86f7-b052ada8397d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('73e6cc12-8b24-4691-9401-5dcb37bfbb5e', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c2baaa2-96b1-4840-9a60-d8359ec4e959', NULL, NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', 'c1d3e826-4d68-4ec3-b3c4-5617a1c14371', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4acc2c76-ba7f-4074-b649-4f2e2aa99c51', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, '32defb6c-2a81-44f2-ae79-7d8544d807dc', '0144b94f-8302-4eeb-bc90-d09e06966ac7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa04af88-ae33-4ab5-bcc8-1c36fb1afd9f', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '32defb6c-2a81-44f2-ae79-7d8544d807dc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('705609ae-4009-47e5-99a4-57798dfe93e4', NULL, '32defb6c-2a81-44f2-ae79-7d8544d807dc', '3706fd53-e952-408a-aedd-93ec6d5129be', '32defb6c-2a81-44f2-ae79-7d8544d807dc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82ec6c0e-0e4a-425a-9410-38747ceab809', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', '6587000d-2225-474f-a5c3-480188036398', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75c4a5d5-b64d-4aa6-9b68-34a7666c6511', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, '32defb6c-2a81-44f2-ae79-7d8544d807dc', '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4c4a01d2-ef9c-4b38-800b-48e24561e0fb', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, '4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', '353d7a47-2248-4875-9776-469e7a028cae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ca9bb2f8-49af-452c-a0aa-283c283ba4d1', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', NULL, '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', '4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('06ff60b9-6bdc-44e9-98f6-1a32d6f30512', NULL, NULL, '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', '0488a5bf-a825-4105-965f-3fa793d5b9c4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34695474-4403-4045-a3f5-2e77f28a3257', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, '7c817da8-f355-4456-8074-7bf433924285', '2d7800a6-63a8-4017-9613-6c693d3cd171', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96b0229c-13b6-48ef-a5c1-d5202c716c52', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7c817da8-f355-4456-8074-7bf433924285', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c5c8582-9832-4bbf-8bf1-0c828c121337', NULL, '7c817da8-f355-4456-8074-7bf433924285', '3706fd53-e952-408a-aedd-93ec6d5129be', '7c817da8-f355-4456-8074-7bf433924285', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6839d4c2-94b8-4fa2-84c8-ebda6ae471f9', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '2f06897d-859c-4e56-b9c2-947d128e3d63', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0798a57d-c298-47e9-9942-dbc39bb20c9b', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, '7c817da8-f355-4456-8074-7bf433924285', 'f32f51d5-3384-426e-a1c1-b5b6a263b647', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc136f9e-2bbc-4f9a-b9d7-277e1818e141', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', '4d6a853b-5d93-4400-ba4c-a28a96721af5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f3a2f756-33e9-421c-bed1-b3ba44b61a97', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4afe3a7-e4c7-4d56-b1da-53af2568bfc9', NULL, NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', 'cb9db0cb-6a60-4f56-85e9-97ca9734071e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e156520b-d63f-4bf3-8a02-32fa64cdd3e2', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', 'b38a6e56-e439-44d2-9ed6-3223e21c6224', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d856866-730a-4037-95dd-a50906705098', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a68e0755-9441-4b22-ae6b-1bdfef94e3e4', NULL, 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', '3706fd53-e952-408a-aedd-93ec6d5129be', 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('443f5495-98be-4580-89eb-a2afa2d7f7d9', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'c3a212dc-036f-4e84-84b9-6e7367b407a1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed164724-8168-4a4f-8445-ff973110a77f', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, 'b70eca31-fcf6-40f6-9792-2fdb66bb129b', '95f09796-be4b-4b39-a759-a1f5a4fe54fb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8dea3c47-7171-4101-a215-15c7371b3a6d', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, 'e97003a9-9162-4142-8d08-814e6c8fabd9', 'd96f1d59-085b-4c42-9e01-1513b232a067', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6a3344ed-1f0d-43a5-8e0a-a791472b7ffc', '38cc5d59-085f-449e-aeb3-439febbabd9b', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7340d2f8-170d-4eb6-8218-1cac9432d709', NULL, NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'd8d23634-f1c6-4a13-bb39-bae8e187df04', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26d1fa5a-b06c-40d0-829b-f014bf33975e', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', 'f3e17013-eb06-49e1-94a8-2e81e0f8a706', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76e9493e-a2db-4b94-b324-77f11f2d5b80', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97286182-f6c9-4684-8634-7c28a099043d', NULL, '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', '3706fd53-e952-408a-aedd-93ec6d5129be', '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a0f7682-96b0-4078-bf24-b816ffe12616', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '6712a948-ac81-455e-8d87-cb05438ac85d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a4bd37d-fe74-4667-8832-81acfd7d88dd', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, '4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', '1373e547-4804-4c8d-9014-ce51c65f3a06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('88771617-b8ff-48ed-86e1-24a097fdc443', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, 'bdeffe17-405f-4ad0-8131-82728ea0e382', '3e298df0-8c98-4e48-a103-cfd3bbe2bec6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b11a3cd2-4e11-4cb7-b704-640e80d04647', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9787820-a6e2-43ca-8934-63e56a28b694', NULL, NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'afceedea-4a23-4f6f-a0a2-a210ac148935', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('576f1a0c-739b-42b5-a888-2dd8c5789baa', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, '3f156460-0b5e-4e31-9ffe-bd27ad172ade', '9fe16585-5125-43c0-a683-f4d1579f784b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d326a63a-bcfa-44ca-91db-c6de702e9bd4', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3f156460-0b5e-4e31-9ffe-bd27ad172ade', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('85c18c00-90e0-462c-bdb4-60428d3e7b0e', NULL, '3f156460-0b5e-4e31-9ffe-bd27ad172ade', '3706fd53-e952-408a-aedd-93ec6d5129be', '3f156460-0b5e-4e31-9ffe-bd27ad172ade', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('060c2174-e50d-4912-91c1-f1572a148dad', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '9405dc92-3dc7-4f4a-b799-514ce78ac05a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('10790a03-fb59-468f-ad85-d7ab74d790f6', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, '3f156460-0b5e-4e31-9ffe-bd27ad172ade', '957da54d-43eb-45d5-a3c4-34976d178bf3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cb3b7398-6065-4c42-a456-41bc192ce327', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', '0b519921-7548-446f-a6e2-0986f0cec622', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bdd47305-1888-4f01-9320-e68d3dd73b9e', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40085698-b003-4234-86c6-76eff547ea0f', NULL, NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '6d013dc5-c320-4873-99bb-d3cbd287ccf5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('507a9fe5-cf54-4d19-927b-ce85943cc782', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, '5c561605-0895-4a2b-b850-9572156e6635', '08008ffa-675e-46e6-8f5c-bbb701d67fd1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f28348f-ce57-4a07-80b6-7fc85ca9153c', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '5c561605-0895-4a2b-b850-9572156e6635', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5da8c927-3d13-486e-b3c5-dad2a31a70fd', NULL, '5c561605-0895-4a2b-b850-9572156e6635', '3706fd53-e952-408a-aedd-93ec6d5129be', '5c561605-0895-4a2b-b850-9572156e6635', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4ab1a59-0e67-47bc-a48f-a553a8b50794', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, '8bfcdf97-8c34-46ca-8159-1314cbb42105', 'c8583847-e84a-4286-b04f-368c61118b00', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('284fd022-3236-4ee0-ae0e-1a2899a8f2c9', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, '5c561605-0895-4a2b-b850-9572156e6635', '8bfcdf97-8c34-46ca-8159-1314cbb42105', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94be11ba-9d31-480d-b264-47adfa74df20', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, 'd8c41124-ff96-4bc4-b3be-d0a8091128b6', 'ea2e5ea3-6e8e-473e-9bca-3972c30c727a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c695866c-6901-442a-a657-c32fb5320bd4', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', NULL, '8bfcdf97-8c34-46ca-8159-1314cbb42105', 'd8c41124-ff96-4bc4-b3be-d0a8091128b6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b631b878-8ffe-4a79-9e49-30f7b0c08c6c', NULL, NULL, '8bfcdf97-8c34-46ca-8159-1314cbb42105', 'c33ab3ab-3d3d-44be-987e-9f1ad950f25c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cafa308f-ea72-49c3-b221-a6aba5fcfb74', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, '84f70526-107d-4b57-b7c2-653c8efc2737', 'ede31012-fbaa-4a4a-b5db-001a2ded08ea', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('85fb9a91-865f-4f7c-84db-df341ae37a8f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '84f70526-107d-4b57-b7c2-653c8efc2737', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3019aa7a-378d-4f1e-8805-5ed585007161', NULL, '84f70526-107d-4b57-b7c2-653c8efc2737', '3706fd53-e952-408a-aedd-93ec6d5129be', '84f70526-107d-4b57-b7c2-653c8efc2737', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81204f4a-102e-49f9-a5d9-f32c3854109f', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', 'dbc52a0b-fe89-46a8-89a8-f155a437fe07', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('69cde6f0-839d-4b94-8045-f65521ef864e', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, '84f70526-107d-4b57-b7c2-653c8efc2737', '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e9156e0-bfc5-4e7b-aa50-29bb214577cd', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, 'b29939d1-67c0-4527-88fd-41812023f402', 'cd5218c0-fc28-464c-bb9e-ea0eb9698f66', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0b94c3c-ea4c-485e-9ad9-a58cddffa3cb', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', 'b29939d1-67c0-4527-88fd-41812023f402', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aeeb2346-c0c5-44c3-9378-2c28cd25ccf5', NULL, NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '10cd909b-0099-491f-9a73-0cf1d7765f35', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75de0bbe-b77e-4328-a30a-3173eb7ac971', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, 'db6edaf5-7e57-4e26-8172-20fe06d19e16', 'bd7f4de4-1435-42c2-a275-b56e49670e52', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54a35482-3a81-4513-a2a4-6f820ee9ca7e', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'db6edaf5-7e57-4e26-8172-20fe06d19e16', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0755eae-b481-4e5d-80de-867fc275bbcf', NULL, 'db6edaf5-7e57-4e26-8172-20fe06d19e16', '3706fd53-e952-408a-aedd-93ec6d5129be', 'db6edaf5-7e57-4e26-8172-20fe06d19e16', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9ef9980c-19c0-4387-b05d-b036f03bd1ae', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', '3086d58a-42c3-4c88-ba4c-a1025e79218d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b368b9e7-c014-4179-838f-5e5f39a319c2', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, 'db6edaf5-7e57-4e26-8172-20fe06d19e16', '5f936257-6096-4792-a496-b92e46d93d0a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d404ab50-71f3-4e9f-8d11-d9a79c724b4d', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, '814e38c8-c053-4c27-9487-997cf318a550', 'c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76051553-cbf2-4278-b0b0-c3359028d7e6', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', '814e38c8-c053-4c27-9487-997cf318a550', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9b34809-b46f-4557-9a2a-c05d8ffdd1b9', NULL, NULL, '5f936257-6096-4792-a496-b92e46d93d0a', '529abd87-8855-4eab-a795-a83717bfa4b1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41d012ed-2283-4f2b-beb3-837b6da3359c', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, '0e51c89f-6101-4b6e-be17-53df018b88f5', '6aa26a03-2515-4b88-97aa-1d100dfe872b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c9fa558-256a-446c-bc5f-48f9d61d8fcb', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0e51c89f-6101-4b6e-be17-53df018b88f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37138c2b-aa91-4cf2-8c2b-45dd96aaa5f4', NULL, '0e51c89f-6101-4b6e-be17-53df018b88f5', '3706fd53-e952-408a-aedd-93ec6d5129be', '0e51c89f-6101-4b6e-be17-53df018b88f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6f109a2d-c0c0-4fa4-8efb-2ebe1eb7b9de', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', '8695131e-a5fe-4e01-81da-99769f924a12', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09b015f6-1d81-42ca-a008-c0b3f48a4aba', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, '0e51c89f-6101-4b6e-be17-53df018b88f5', 'de10229b-be9d-45dc-b1bf-8f832ebffe68', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0cf16aa-f119-492d-8b84-c1d904b7da07', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, '779e4c3b-97f0-4218-8eab-5575a6afa54a', '10063dba-d6d4-43fa-ab89-d682c47a91fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3298e787-5a10-45a0-a0dc-51cb4c595eb3', 'e50c983a-060c-47c9-9d47-efd552b1e618', NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', '779e4c3b-97f0-4218-8eab-5575a6afa54a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84c142bb-1cd2-41bc-b4d0-be850a736ef0', NULL, NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', '70cf4eb5-99e5-49d1-9c03-70316381bb21', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b1863909-c091-4e66-b1ee-eeb427986f97', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '1b453f97-a12c-4d51-bf95-2e782b425385', 'cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53c8a05d-7dd8-4faa-9c1b-02c02dff47df', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1b453f97-a12c-4d51-bf95-2e782b425385', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8213d9da-f8ca-437e-aa92-cbc5d9d458ba', NULL, '1b453f97-a12c-4d51-bf95-2e782b425385', '3706fd53-e952-408a-aedd-93ec6d5129be', '1b453f97-a12c-4d51-bf95-2e782b425385', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('17e46161-8f22-4300-afec-7cb6d8644ca9', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '3b195996-371c-41e4-9b66-a50553582e17', '8e9ae339-2166-48b7-82e7-f319413db079', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4c13c9aa-805a-4030-9543-a594366d3dd5', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '1b453f97-a12c-4d51-bf95-2e782b425385', '3b195996-371c-41e4-9b66-a50553582e17', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a291504c-661a-439f-8724-3b57ca8da672', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '3b195996-371c-41e4-9b66-a50553582e17', '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f50b89e6-f34a-463f-af85-aeb520a7d831', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', 'ddcd1293-8e77-4cef-91ac-9abfbc2bcd44', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41b763e3-60c6-40d7-ac4a-89e75e49eec6', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('350cabf5-9716-493a-9cd2-2f954536faa4', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f4f0313-b62e-4932-9f41-cae6963a88af', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7196d34-18f9-4ed4-b703-6534333cf8e2', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c25862f-829c-49fb-90a2-61bd22edf060', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc27b1c7-0d02-49cb-959d-023a49c84fd7', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c78b77e-b708-4198-835c-2fbcabcea7c1', '48618c28-9304-4ccb-b022-e2cbb1832944', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '1b453f97-a12c-4d51-bf95-2e782b425385', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13875afa-e93d-4e1b-83f6-666292ebae24', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '98d81696-7c71-4ffe-bfc2-1fea37613440', '43b09570-1e0c-43b9-811c-4aeb27eba284', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('73eb3d48-4daf-4dfe-9c23-2928dea6de58', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '98d81696-7c71-4ffe-bfc2-1fea37613440', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('760fbe86-6b00-4c68-bd19-a65fd477a818', NULL, '98d81696-7c71-4ffe-bfc2-1fea37613440', '3706fd53-e952-408a-aedd-93ec6d5129be', '98d81696-7c71-4ffe-bfc2-1fea37613440', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('50d75c09-191f-4132-8e8a-d1a1aa072443', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '0f5c3f08-d249-404a-b740-d759fced2d09', '756acc01-691c-46c1-b2f4-53321cc442a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b30af129-1376-4bcb-9538-f21a660dd6cb', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '98d81696-7c71-4ffe-bfc2-1fea37613440', '0f5c3f08-d249-404a-b740-d759fced2d09', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('23259cd9-4388-43ec-9d6f-4f8fdac89b91', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '0f5c3f08-d249-404a-b740-d759fced2d09', '6c0656b5-472b-4859-af3a-b8f1c53231a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c9f10142-c1f0-4639-a9b3-08b195830787', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', '75550e48-c62e-4734-9406-ad720b5b1f90', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb781f97-f5ee-44a6-a83b-89952ceb9706', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('73ffa08f-31ae-4101-bd02-a0de9144f82b', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '6c0656b5-472b-4859-af3a-b8f1c53231a5', '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eea1adff-7c6b-47ae-9bc4-1a54dbfd027d', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('818fd81d-cca1-4416-a26d-8f02d8a19a2d', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b8a35d0-0790-4749-90ad-bbaf2a62753f', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '6c0656b5-472b-4859-af3a-b8f1c53231a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67455246-3c3c-410d-9465-574f5651c698', 'f415978e-b5c2-4a99-962e-3d31a4658780', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '98d81696-7c71-4ffe-bfc2-1fea37613440', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('134c2594-fd40-4cf9-b55d-34a2c0927521', NULL, NULL, '0f5c3f08-d249-404a-b740-d759fced2d09', 'f3bf0870-b546-4607-a032-a3da135dda48', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20ae8592-3c34-4ff5-a08a-4b78b6f06ec4', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b26cca89-03f0-4498-bf64-7385c0b7244a', '9998b7f8-aa0f-44b9-813c-61a2861e242e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0e59d15-a201-4e8a-8429-d12f6c5e85d1', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'b26cca89-03f0-4498-bf64-7385c0b7244a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('199a84b3-9e30-4a9e-a7e4-1a1e193c7744', NULL, 'b26cca89-03f0-4498-bf64-7385c0b7244a', '3706fd53-e952-408a-aedd-93ec6d5129be', 'b26cca89-03f0-4498-bf64-7385c0b7244a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27356c34-8a36-42c9-8df3-b631c85beb9f', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, '76968391-174d-4530-b310-1244c4b1897a', '7ffabc42-58db-42c2-a3cb-e4ed830f47af', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8ec3f73-a9da-437b-8210-5fac4f461a76', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b26cca89-03f0-4498-bf64-7385c0b7244a', '76968391-174d-4530-b310-1244c4b1897a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4147266e-d023-4753-92ec-07a66f831815', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, '76968391-174d-4530-b310-1244c4b1897a', '863eea7c-8b49-494a-9654-9963f2dbb4e5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bdf804a6-d255-43bf-b752-934d962f7a9a', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', '11a4c50e-451c-4041-92c6-671263f82f2d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce23e4aa-4648-4b1c-871b-0e23b3913ef1', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1a1ec60e-8a1e-472e-80c4-c795e0705237', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, '863eea7c-8b49-494a-9654-9963f2dbb4e5', 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b67f3a92-1dc2-4375-b581-7e2f6984c6ff', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81fd75b4-f29e-4a07-91fe-579bc357d4ad', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1a8ac30e-dfc4-4a15-a89f-5ae76e346844', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a454e188-5f6a-4ce7-bf19-16b55f88482a', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '863eea7c-8b49-494a-9654-9963f2dbb4e5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ab85381b-5249-47ac-88d0-c89c412d0fda', '201b417e-4ebe-458b-a7ce-a287c0ad9287', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'b26cca89-03f0-4498-bf64-7385c0b7244a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('957e1c17-2ade-4622-b9c1-958a3ddda746', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', 'a78188dd-3129-488c-b6e1-4889725f5215', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d28e53e-2724-4968-bdcd-e9bbba70bf30', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7da60e3d-0309-46d0-afbc-da2269a30e81', NULL, 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', '3706fd53-e952-408a-aedd-93ec6d5129be', 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16bd32c5-1fb8-47c8-835b-ef21c321916a', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, '8255ff29-5961-496b-9fda-c71078e47e51', '19382a5a-b982-49ac-9005-9358fa7a670a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5a66d0f-f2e8-4ad4-9048-f23e80d29869', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', '8255ff29-5961-496b-9fda-c71078e47e51', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31338810-20f5-449d-8270-13a4d48162a2', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, '8255ff29-5961-496b-9fda-c71078e47e51', 'fe0228ea-649c-45a4-b729-181aba7f3294', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1f74e4b-3283-4892-b61a-3d73d3c2232b', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'f218c4d9-d10b-4445-b381-b73a71f5848c', '6ebe0c4d-1649-4d08-897e-805019faced9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6958262-cfeb-4a7c-8004-1943ab79b429', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'f218c4d9-d10b-4445-b381-b73a71f5848c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b066f12-6113-4016-a776-45feb5fa565d', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'fe0228ea-649c-45a4-b729-181aba7f3294', 'f218c4d9-d10b-4445-b381-b73a71f5848c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f84e3e07-910e-40cc-9b82-bd739fa3754d', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'f218c4d9-d10b-4445-b381-b73a71f5848c', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c05042dd-31c3-4353-99aa-7b2728751fd3', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'f218c4d9-d10b-4445-b381-b73a71f5848c', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af03a3ed-0a14-42ea-b6cd-60675f1785ac', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'fe0228ea-649c-45a4-b729-181aba7f3294', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9f780ca-ba82-4279-85c8-6ca168938d2e', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2458ddeb-be02-4d0d-b7c7-c3c75981b32d', NULL, NULL, '8255ff29-5961-496b-9fda-c71078e47e51', 'f5fc0f70-790b-460b-a072-d1f9c01bc7de', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('213b814a-4f8f-4eb5-9a06-ef7ebd9006bd', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, '5242e0b6-12e3-4a59-bf06-de114cb69ff4', 'fc09e45c-99c6-46ff-a51f-39de6d561c93', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e24b7e89-1446-4179-af6e-ffff06252b2d', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '5242e0b6-12e3-4a59-bf06-de114cb69ff4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c47f555a-4a8e-4bdb-a879-bbcf15fd9b43', NULL, '5242e0b6-12e3-4a59-bf06-de114cb69ff4', '3706fd53-e952-408a-aedd-93ec6d5129be', '5242e0b6-12e3-4a59-bf06-de114cb69ff4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e38a8794-b4db-46e4-b67d-837a7c1a3b14', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'b8350678-d30a-422a-bb5d-79c65af2f890', '87567caf-5abc-4511-9191-27dbdbbee88b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('068f8780-cc84-478f-a854-bf547462928c', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, '5242e0b6-12e3-4a59-bf06-de114cb69ff4', 'b8350678-d30a-422a-bb5d-79c65af2f890', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('451ef309-629c-4ae8-8a77-2ea3031ddf5b', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'b8350678-d30a-422a-bb5d-79c65af2f890', '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da4d7c96-becf-4375-91eb-2796ad6a6080', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'c85e8116-355e-408a-93fa-c699da2a76f3', '5fe9a533-2cd3-4433-811c-fcc415acdf60', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5398a652-1892-4d2c-8a04-d9e4797e7b74', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'c85e8116-355e-408a-93fa-c699da2a76f3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd8cea28-0a51-4138-b8f4-c4ab1434be57', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'c85e8116-355e-408a-93fa-c699da2a76f3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('03061e1b-65d1-4d11-abc7-d8e7ec1fe19f', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'c85e8116-355e-408a-93fa-c699da2a76f3', '1280183b-c71a-4b86-bdec-7f3800679ef4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a37e1b17-c3d5-4a4d-bfc5-3acbdf1f6aa3', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'c85e8116-355e-408a-93fa-c699da2a76f3', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1ece18ff-7bab-4131-a86f-29e228905d29', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0ef38f9-1f74-4ece-9545-becfca68e4b0', 'f85f9a58-7651-417f-b1b2-cf522bcce415', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '5242e0b6-12e3-4a59-bf06-de114cb69ff4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0e8cfe6-a221-45da-9365-1db2038523a7', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, '3de42185-1e32-4936-b305-d990b85c45c2', '359d8691-dc07-4b5a-9179-0f78927b4660', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76b536c1-96bb-400b-bb19-428eabb921bf', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3de42185-1e32-4936-b305-d990b85c45c2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('28073fd9-9f01-4cb8-9d16-253af4a81e30', NULL, '3de42185-1e32-4936-b305-d990b85c45c2', '3706fd53-e952-408a-aedd-93ec6d5129be', '3de42185-1e32-4936-b305-d990b85c45c2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('27d55740-9964-46b5-9442-6db33186a8ff', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', '2698d560-1c07-48e5-9d9a-78ccfb2c0631', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3164a0f-34dc-4915-84c6-cbf8447290e4', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, '3de42185-1e32-4936-b305-d990b85c45c2', 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('223e16ac-ae1d-41f0-bd5a-97ad8d7a8f02', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7083d2a0-ecb2-47c7-a857-60b9d4c52044', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', '21bc4186-042f-4643-bbea-61f44563225d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5015e0ca-124a-4250-9e0b-8ead9f6595f9', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('308a364e-b65d-4599-a29d-c0948a1c79a4', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('026ce7a1-3001-441f-b1e0-c4634da6e3a0', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', '1280183b-c71a-4b86-bdec-7f3800679ef4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fc95ac7-9ceb-45f2-86b8-dc1fe34c3cce', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fefb4326-1b6b-451a-b502-67094bb01d18', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36a2fb6f-578c-41e4-9581-0ff42f0d1aac', '78123dac-fed2-4e3e-817b-0c13a2129dfe', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '3de42185-1e32-4936-b305-d990b85c45c2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a28bf37e-a03d-4b03-98e5-498b1ada6ea2', NULL, NULL, 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', '7ceb0f31-aa57-433f-a2e3-0408c2b88b10', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('242a0315-97b6-47a0-a863-2f7c98806c03', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '0726dd6c-118e-4cbc-9077-d4dcb0e61643', '24c34e16-c5e6-4571-b850-fb64b5ddb61f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae05d838-209a-4997-89f9-21d4b03bc0ee', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0726dd6c-118e-4cbc-9077-d4dcb0e61643', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e48a3f5-7017-43ec-8ced-b6ce9e72cd2d', NULL, '0726dd6c-118e-4cbc-9077-d4dcb0e61643', '3706fd53-e952-408a-aedd-93ec6d5129be', '0726dd6c-118e-4cbc-9077-d4dcb0e61643', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9381ce69-6119-44b8-828b-09aa0cc57960', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '8dfb5e53-1554-4e5c-a045-85121ce4bd71', '8aa371b8-dd2d-4471-95ae-149e30502e54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f498d771-bf9c-41fb-9566-26de20cf27cf', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '0726dd6c-118e-4cbc-9077-d4dcb0e61643', '8dfb5e53-1554-4e5c-a045-85121ce4bd71', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8b1cdea5-a267-4c69-82ae-58fcaae807d3', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '8dfb5e53-1554-4e5c-a045-85121ce4bd71', '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('407f1720-30d6-43e9-a867-00a4d074e948', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'd04aeefe-4ba4-466f-a563-b811674c6de9', '6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33b013b4-54f5-4d45-86f4-f60db0af72f7', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'd04aeefe-4ba4-466f-a563-b811674c6de9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e79c737-6e71-4ba3-a7e2-b5ca9a882536', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', 'd04aeefe-4ba4-466f-a563-b811674c6de9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a46e4f67-0994-4181-9ef4-dd8a56c92a56', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'd04aeefe-4ba4-466f-a563-b811674c6de9', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ba2475f-ffc9-4cd6-80bf-98699d50ad1c', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'd04aeefe-4ba4-466f-a563-b811674c6de9', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13ff71cb-74b0-4da6-b531-352cc8103e88', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'd04aeefe-4ba4-466f-a563-b811674c6de9', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0a06ef2-c846-444c-b9e8-955a69675e0e', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1f1f854-ce70-4ef5-bc5d-04ec3910964d', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '0726dd6c-118e-4cbc-9077-d4dcb0e61643', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2613adb7-f2b0-4d19-b369-8341afa1111e', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'e5871fb2-3928-4139-9468-10f0f12d5e5f', '12bf1e90-3965-415a-b2fa-de48afca81f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('427f8a0e-c26d-452c-b014-8788b80170a7', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e5871fb2-3928-4139-9468-10f0f12d5e5f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2cf9cc9c-6158-435d-8659-bd875bcbe273', NULL, 'e5871fb2-3928-4139-9468-10f0f12d5e5f', '3706fd53-e952-408a-aedd-93ec6d5129be', 'e5871fb2-3928-4139-9468-10f0f12d5e5f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('634ef36a-4dce-4fc2-b4be-43c1b8a12327', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, '834d7138-e338-4517-aacb-1c6319fa34d8', 'e3026ecc-4a37-438b-b53e-e4ac2d4acd87', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79861ade-1702-4c55-99bf-ada2f02af12e', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'e5871fb2-3928-4139-9468-10f0f12d5e5f', '834d7138-e338-4517-aacb-1c6319fa34d8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db6cea6c-2d27-4e85-8b38-77fad5a97678', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, '834d7138-e338-4517-aacb-1c6319fa34d8', 'e6409531-6513-43a9-84a7-eff44b18285a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df1e3b6b-beb5-4797-b5b6-a8762c0f1b13', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'a9296dcc-a040-460e-9319-d93938975fc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77ed9bdb-9264-4997-9b33-2997a3203acd', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f24b7d8-6c62-4b60-9fef-7d79d0d3e931', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'e6409531-6513-43a9-84a7-eff44b18285a', 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d344d956-9fe8-4d35-b363-ee47c946fae1', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('102f6591-fa00-4465-9e71-ee89f913f98f', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9070bb47-7db9-4937-b262-4503e9e429a7', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'e6409531-6513-43a9-84a7-eff44b18285a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('147bc926-4d72-47f5-bab4-88736d9fad9b', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'e5871fb2-3928-4139-9468-10f0f12d5e5f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57e9cd92-8b26-4c73-bb31-364522a91b60', NULL, NULL, '834d7138-e338-4517-aacb-1c6319fa34d8', '7b9008d5-0555-4209-8594-8d2c11e376d2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e5cc260e-4aed-4440-b9b1-8adf3b00c2f2', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '256083e7-90ac-4f38-9bc1-deedb0f78d2c', 'c470f55a-75fd-4754-95d8-02db7679b5e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b169456f-0f65-4ce0-9ea1-1b183da6768e', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '256083e7-90ac-4f38-9bc1-deedb0f78d2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ce3aae9-6498-4e4c-9786-b649933facde', NULL, '256083e7-90ac-4f38-9bc1-deedb0f78d2c', '3706fd53-e952-408a-aedd-93ec6d5129be', '256083e7-90ac-4f38-9bc1-deedb0f78d2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7dbe679a-2572-4055-a6e1-853e56732c13', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '28bf24da-eb68-4a99-8ff9-6e4145f5e805', '306c497c-f967-41e4-88a6-6d357955a6b4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25dc18d5-53b0-46fe-9fbc-42617019c65c', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '256083e7-90ac-4f38-9bc1-deedb0f78d2c', '28bf24da-eb68-4a99-8ff9-6e4145f5e805', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d36852bf-fee9-4762-b982-c5c1180f1021', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'f93693fa-7dc5-4513-8537-be9541d6e5dc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d49e8c2a-9535-4791-b5b2-27b4c6449571', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '33a45f49-ac74-4444-a193-2ed1e0be110d', 'a43a17b9-e207-4edd-9184-790b10b105ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d62c308b-5aeb-4b38-bf3c-1971873ebb7e', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '33a45f49-ac74-4444-a193-2ed1e0be110d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bae734bf-c252-413a-9f8f-0db3f5fe41da', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, 'f93693fa-7dc5-4513-8537-be9541d6e5dc', '33a45f49-ac74-4444-a193-2ed1e0be110d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b06c14e-8822-4076-a95c-53c23fae06e7', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '33a45f49-ac74-4444-a193-2ed1e0be110d', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb5d5c36-8545-4b0c-83b3-3e6ffe79d064', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '33a45f49-ac74-4444-a193-2ed1e0be110d', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2fb41844-154f-49af-afe1-f145ac823698', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '33a45f49-ac74-4444-a193-2ed1e0be110d', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7be6ff60-48f4-4727-a3b1-ccc76c4bf5f9', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'f93693fa-7dc5-4513-8537-be9541d6e5dc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b54d49d5-8b35-4a08-8062-15f1488e1248', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '256083e7-90ac-4f38-9bc1-deedb0f78d2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d1581eac-a086-44fb-bb09-61971de7d2fd', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'd5a60c82-347b-4ebb-b95f-afff297bf966', 'b93cca78-ac4f-497a-90b4-2fbb41ece3a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33d71c3e-14d6-4360-b2a1-7cfe03fc8e7c', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'd5a60c82-347b-4ebb-b95f-afff297bf966', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55d421be-867d-484d-81cf-b4435b645647', NULL, 'd5a60c82-347b-4ebb-b95f-afff297bf966', '3706fd53-e952-408a-aedd-93ec6d5129be', 'd5a60c82-347b-4ebb-b95f-afff297bf966', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ee7dcf77-7d14-4ac3-ac68-75848ce80b37', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', '78de8932-0d41-49a3-bd52-4b01648d77c4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ac62d07-14f8-4e7b-b32a-cdbc01d233d7', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'd5a60c82-347b-4ebb-b95f-afff297bf966', 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1ef30096-215a-4465-af6e-df991c630f42', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', '6e7feeb7-4891-4ea3-96b6-00d883da37c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5225abae-81af-491d-8e67-d0d955af7a6b', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '1ed7ff07-778c-4920-a550-563b27223228', '73fbb1f4-99ac-43f3-8d7c-e032f636754d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58f3482b-0190-433d-8169-dda40ccdefd6', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, 'a822e970-7b6a-417d-81d0-a8db0c985427', '1ed7ff07-778c-4920-a550-563b27223228', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('132567eb-499c-41ed-8306-0bb3f70fd887', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '6e7feeb7-4891-4ea3-96b6-00d883da37c5', '1ed7ff07-778c-4920-a550-563b27223228', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e2b5210b-9f82-4aa3-a5e4-db165eff8c82', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '1ed7ff07-778c-4920-a550-563b27223228', '6fc5eacb-5328-41c3-a71b-e7712338862a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('323c5ab0-83d2-499d-843c-3e2087d129a7', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '1ed7ff07-778c-4920-a550-563b27223228', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d47916af-37ad-4693-90b9-ab5861a26b19', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '1ed7ff07-778c-4920-a550-563b27223228', 'd8c41124-ff96-4bc4-b3be-d0a8091128b6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f958dfdb-2482-4a6c-b04f-c48adef089b3', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '8bfcdf97-8c34-46ca-8159-1314cbb42105', '6e7feeb7-4891-4ea3-96b6-00d883da37c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3978866a-2fd9-4fe5-829f-cb20953123d2', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'd5a60c82-347b-4ebb-b95f-afff297bf966', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c59e8c34-016f-4cde-8f01-d26ce93dfd19', NULL, NULL, 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', '57083628-836d-4f19-9359-5fb11537f81d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e638e901-b72b-445d-bccd-010251464101', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, '7db53bc9-99f3-478e-abb0-437dcbd32051', '65238cdd-b9f4-40ce-87db-581432f3c7b8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('181658a3-893e-4d06-ace8-513ddf36c13f', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7db53bc9-99f3-478e-abb0-437dcbd32051', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8accb64a-32a0-46c8-8cf2-8444799bf14b', NULL, '7db53bc9-99f3-478e-abb0-437dcbd32051', '3706fd53-e952-408a-aedd-93ec6d5129be', '7db53bc9-99f3-478e-abb0-437dcbd32051', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3c27d5a9-f3e3-4d78-815b-eac8aacbac70', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, '9771d06d-8352-404c-aaba-743800e621e9', '31b17fc6-f132-43a5-8e48-652c48306331', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53650829-a412-4b78-8071-23af27a3767a', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, '7db53bc9-99f3-478e-abb0-437dcbd32051', '9771d06d-8352-404c-aaba-743800e621e9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21990b68-f8c1-492e-8b58-584f9373f011', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, '9771d06d-8352-404c-aaba-743800e621e9', 'b34392da-5070-40dd-ab44-d411a9742f6d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('254c6299-81b1-40b6-80bc-01140b2e3f21', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'e37e21bc-4d4f-4d41-8c24-399be1680a15', 'aa9b0636-bcef-4296-bfc4-2beb3c99da38', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ffc38c4-6668-4096-b172-1f6d2d4dc409', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', 'e37e21bc-4d4f-4d41-8c24-399be1680a15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6cdd1c4-0d36-48f2-8747-a47762496474', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'b34392da-5070-40dd-ab44-d411a9742f6d', 'e37e21bc-4d4f-4d41-8c24-399be1680a15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e939ad9-00b2-4a23-8875-72a5ac7ff728', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'e37e21bc-4d4f-4d41-8c24-399be1680a15', '24f9488b-412f-4314-b160-2897f4dcff1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d271802-89ff-4d61-bb61-21f47e44c357', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'e37e21bc-4d4f-4d41-8c24-399be1680a15', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e3b55cc-cda2-4c8a-980c-aa0824656de2', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'e37e21bc-4d4f-4d41-8c24-399be1680a15', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b6cbd8c-5a91-4081-a2df-01ab5d477416', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', 'b34392da-5070-40dd-ab44-d411a9742f6d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96f807f2-391c-49f1-aa63-d14cf9fe4c7f', '164d3cde-e2ab-4239-9dbf-de1c963158ac', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '7db53bc9-99f3-478e-abb0-437dcbd32051', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9efd3573-3fd0-4838-b700-9e2d528d6dae', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '0d96a253-347e-4903-9db9-b362335e4341', '1350b6fe-91ee-4c79-bc87-e2632a01100f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0fcaf240-6815-4712-a320-6463135f4624', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0d96a253-347e-4903-9db9-b362335e4341', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ff9ad8b-f7fc-4d25-aaf7-8c5937ca379f', NULL, '0d96a253-347e-4903-9db9-b362335e4341', '3706fd53-e952-408a-aedd-93ec6d5129be', '0d96a253-347e-4903-9db9-b362335e4341', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae6cb6c2-c690-4527-8ec8-1c2b1d7e44df', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', 'bff60077-ab16-4e5d-8667-1ad2b801b961', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('308438c8-a6b8-4e79-8d69-67f7589d9175', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '0d96a253-347e-4903-9db9-b362335e4341', 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1d4f1080-13a6-4011-bf9f-bb67a3c7be94', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77f6392c-dc17-4c22-92af-4462666916c1', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '42f0c634-d86b-4129-822b-f103cd6e0755', '2b36563d-caee-4170-b444-ec02ca919165', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('744c3088-f933-4c59-ae37-d83f2357f83c', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '06bf2ac2-61c5-42e9-917b-8b68afcc0d47', '42f0c634-d86b-4129-822b-f103cd6e0755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('077b5b92-2620-489c-97c8-f32c5013437b', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', '42f0c634-d86b-4129-822b-f103cd6e0755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e176c48-1f1f-4e8d-8698-565f62041d2b', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '42f0c634-d86b-4129-822b-f103cd6e0755', '7a8959c2-e6c0-4af3-9d64-117811ec0d02', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e8ba8789-050f-4ac4-9bd2-ea16bd83ac7a', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '42f0c634-d86b-4129-822b-f103cd6e0755', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef21d6e1-e714-4d9e-bdbe-86408d6acc87', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, '42f0c634-d86b-4129-822b-f103cd6e0755', '9115be3d-2bef-40ce-b0c9-339e460c751d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c126907-db23-4e7f-b375-7109fe72f2c6', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, 'bab68a5a-2016-454e-b143-8c334188d2c4', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc3130a1-8534-426a-9dea-7744b423ee9c', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '0d96a253-347e-4903-9db9-b362335e4341', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5a8ffce-04bb-4fa3-b9a7-d4f9e15564aa', NULL, NULL, 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', 'dbead323-2088-4b0b-ac6c-599696219411', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5305aaf-e2ab-4f48-8a2e-374e8d5b181e', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', 'b6f28163-8b15-403b-ad8e-8322ae8bb5b9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36f25015-ab5d-478b-b8e9-bcfb12daa23f', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d5c34e2-7fd3-4008-806f-c71fbc354439', NULL, '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', '3706fd53-e952-408a-aedd-93ec6d5129be', '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97bb7d46-c076-472f-9210-7756f0d3b1de', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', '9cf4d386-c968-40c4-8af9-401c58cca6b4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77bb249a-a506-4b22-8ade-3c3a211e98fc', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fb16788-c6df-4a8e-b9f5-9b32668de76c', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', 'f3af3c81-a512-47ea-8b47-0386291e6590', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c49d231c-9b99-4bf1-a5b3-9fd54ea13026', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', '14b3a0c2-46d5-409e-bd0d-ff369c37950a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b02fa45d-4e3f-4117-b702-6567d9197965', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1061599-40fe-498d-b569-e66220a277fa', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'f3af3c81-a512-47ea-8b47-0386291e6590', 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a244791-44c8-4eff-8361-7e12ebc10375', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2852d47f-a898-42ff-aa68-0d63a4bfd696', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6af132d3-5e42-4379-bceb-c27b9a4a27c7', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3537239c-f45c-4357-abd7-7ff36e7bc90b', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', 'f3af3c81-a512-47ea-8b47-0386291e6590', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7352fb4-4789-4398-bca1-5e02ffb184af', 'a85fd289-2383-4abe-b796-9b0b47d702d2', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf8dc5e3-3d2b-4a20-82c9-345b886a902f', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', 'd6ea4d88-241f-4430-9590-918a5de2a3d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e824602d-53bf-49ba-b6c5-c78b826bf94c', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bef40c9e-b569-417c-a8c3-a46bd4a1c43c', NULL, 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', '3706fd53-e952-408a-aedd-93ec6d5129be', 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8be44ea3-3a15-45bf-80cf-da0dd7168dcf', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '3010c421-5c96-4f0d-b214-c773e0915564', '5c038c2d-e3f8-4593-9733-0e1d2c85e318', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e72f6461-12f1-49dd-8fee-e7e4b1cd0ab4', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', '3010c421-5c96-4f0d-b214-c773e0915564', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3985a8c6-9cbf-4e1a-a95f-1f83030eb7a4', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '3010c421-5c96-4f0d-b214-c773e0915564', '270aac69-03bb-4429-b925-3019bd92cf32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81b68632-0cb7-41d8-bf15-61048ff1bc3c', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '7d632200-5506-4856-a3c0-d806b1ee708b', '63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('24b19f50-1f29-4879-a6d4-d5f40fcab1c2', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', '7d632200-5506-4856-a3c0-d806b1ee708b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0084180b-3df7-42bd-976d-54d2f30fe5e6', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '270aac69-03bb-4429-b925-3019bd92cf32', '7d632200-5506-4856-a3c0-d806b1ee708b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d7e7850-06e8-4f75-9a32-bc7af55f0187', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '7d632200-5506-4856-a3c0-d806b1ee708b', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0be56d6-9d14-4de6-8b86-c67b8466a25c', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '7d632200-5506-4856-a3c0-d806b1ee708b', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f722b48-de60-4b11-a39f-e3dfcf5aa326', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '270aac69-03bb-4429-b925-3019bd92cf32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('358cfa61-0b40-46eb-a240-dc3320284148', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2155b641-8562-4ad5-a883-3d5c12b71564', NULL, NULL, '3010c421-5c96-4f0d-b214-c773e0915564', 'fc2159a0-53c2-416b-9daf-506258c420e3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14b41604-025f-45cf-a1fa-92b91a7b060e', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', '9de4eb42-73cf-4178-ad43-0bc7b9042c76', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2077db5-79fb-481f-bc9d-95337bfb2577', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4cda3b7b-bf01-4342-b3db-fc8998b6ef1e', NULL, '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', '3706fd53-e952-408a-aedd-93ec6d5129be', '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('670460c6-e47b-48b6-bf0e-e5a5dbf0d43b', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, 'f101cc07-ed84-4e34-9f70-62ec6a646e81', 'e1cd9ef3-11e4-4907-bb78-b30f83f576e8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a0f5572-7ef2-4996-b7f9-9092b99b70ba', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'f101cc07-ed84-4e34-9f70-62ec6a646e81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e574ad9-8a38-413e-8bfa-55930363707f', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, 'f101cc07-ed84-4e34-9f70-62ec6a646e81', '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5dc0084d-25cb-4af7-a2a9-ff2446a4a797', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', '2877af8d-ece8-4b33-8b68-a4985caa2635', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60ca4436-2f6e-4152-8551-4e9a465a7b29', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6be28944-7289-4924-adfa-9d613a1903d0', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4589acd9-b04f-432a-91ea-f157d75e0b16', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', '4330591d-61d5-4435-827a-c71b8328a700', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e30e4485-5f53-41aa-9d5c-e580d98e8adf', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7969599c-5bef-42c7-8513-9c7e545e804c', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c0c021ee-8650-4478-964f-0e7297484724', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25a3a86f-88d4-48b5-8b49-9ab3a0cb9d41', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('014daf58-1e7c-4367-8913-001885ac18ba', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', 'a4b7dd17-bc12-4152-80e0-4186caab003a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55252844-1a23-453b-86da-d8a61347ea8e', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0897358d-6a31-4239-840a-5643616ceefa', NULL, '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', '3706fd53-e952-408a-aedd-93ec6d5129be', '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('472f52b4-1b7b-4194-b8f0-d7c23686f721', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', '3dec9bdf-06fc-4a27-b26d-5918ad1e5990', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1741dfae-e362-4172-a594-d9c43da3c695', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f8534a79-f9a6-433e-ad0a-670a242adb12', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', '7e71f107-6953-42c7-a560-dc9036094198', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71f86f97-8d99-488a-837d-63fb7391647b', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '51bb98dd-9201-40e4-b008-221337eeb471', '7efca22b-d9ff-4331-a718-ddfca5ebac59', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57645ef6-c6b1-42f2-a8ff-d92ff3c5728f', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', '51bb98dd-9201-40e4-b008-221337eeb471', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1a7d8e4-712d-4e30-bf71-4b0c79489a29', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '7e71f107-6953-42c7-a560-dc9036094198', '51bb98dd-9201-40e4-b008-221337eeb471', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fbae586-ade0-46b4-9d3d-abd641e5da1e', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '51bb98dd-9201-40e4-b008-221337eeb471', '4330591d-61d5-4435-827a-c71b8328a700', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ab6f00c4-88be-4613-b44c-4760760877a3', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, '51bb98dd-9201-40e4-b008-221337eeb471', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('869d177e-9bf1-44ad-b890-efab238568ac', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '7e71f107-6953-42c7-a560-dc9036094198', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa3d3a8c-40e6-4c39-9be7-3225af11ad34', '268c2ce6-8945-4393-9916-ac90050f064a', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('afc35729-f746-43f6-bfe2-cdc1688c89a3', NULL, NULL, '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', '85505863-6857-4ae9-82de-f9394eebd7df', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6bcdce43-ebe8-48a8-8bbe-757ac3d22f62', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', 'ccdf92f5-ebce-4d9b-b544-e470959b498b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc944320-20a9-4b02-bb1f-8a8692b477c4', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f3462b23-10d0-4491-9f6f-f938b0479eff', NULL, '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', '3706fd53-e952-408a-aedd-93ec6d5129be', '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80aa3cff-e661-4853-868e-66706ce46d96', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', '307b971b-39bf-4a5d-8595-ad080abafbb0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef9ac178-79d4-460f-9cbc-3c1f1d9fcfee', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', 'acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34113cca-7848-4dd1-85b5-1137c93de73b', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', 'ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('041d4019-8ada-401a-8cff-3c3d5eb68344', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'c3aff634-452d-47fc-954f-9edebe3a0c74', '37dc0f00-4620-46dc-83a6-3d64cbc7a1a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bab7f934-c15a-4ea4-925c-97df5c2f07c9', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'c3aff634-452d-47fc-954f-9edebe3a0c74', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22fabbc7-68d6-4067-9389-4df1f0fc81b6', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', 'c3aff634-452d-47fc-954f-9edebe3a0c74', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3eefa810-8bf3-465e-8fc8-0b9be1454ced', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'c3aff634-452d-47fc-954f-9edebe3a0c74', '1280183b-c71a-4b86-bdec-7f3800679ef4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1c89eb6-d2a7-42d0-a8eb-2cc7432baa6c', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'c3aff634-452d-47fc-954f-9edebe3a0c74', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60a5a33a-e2b7-4160-800d-740251613ddd', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f17fa4e-ae1e-40c7-9047-321e1e52c84a', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '9a93e3c2-b1c1-47d1-8761-0cafe9b42917', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53c499fa-1699-45a5-b113-9a952c73fd17', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, '06917568-e508-436a-a50f-246ea2afe064', '84fffac0-e3e1-4374-a4e1-6d16b91d9e8f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65c5505d-1600-476b-8580-fb6084cf1d7d', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '06917568-e508-436a-a50f-246ea2afe064', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ffa4fc5b-0677-4cae-832f-11382c2ce292', NULL, '06917568-e508-436a-a50f-246ea2afe064', '3706fd53-e952-408a-aedd-93ec6d5129be', '06917568-e508-436a-a50f-246ea2afe064', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e48f9681-c424-4348-8fc6-c0303d4f01ec', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b152c130-be97-416c-b531-52656dd3c38d', '7a5ed45e-7096-4f48-a0d9-83df51f3349c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('340a557e-8439-4bf8-ba93-5c7747dce2d4', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, '06917568-e508-436a-a50f-246ea2afe064', 'b152c130-be97-416c-b531-52656dd3c38d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('460cb051-c5db-4d1f-bd66-36fc267c2ff2', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b152c130-be97-416c-b531-52656dd3c38d', 'd6c011ff-bf38-4f09-be3e-45f89eca1ed4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7719c65b-f997-4b81-8773-8ea6ac2551ac', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', 'f2395c78-9098-4d15-9ac4-b330a6802390', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc2eeae8-cd95-498d-8790-d139c352019d', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bec9f28c-f43f-4611-ac52-8f6965ba934c', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'd6c011ff-bf38-4f09-be3e-45f89eca1ed4', 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da004904-0957-4585-8c99-9990099e48bc', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', '1280183b-c71a-4b86-bdec-7f3800679ef4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20123f90-13d3-4b79-8200-84c570c86645', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', '2bcadf08-a16f-4ab6-afbe-83db1b1424d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f4964fb4-c46b-4bc5-b7a6-36526dcbc16c', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'd6c011ff-bf38-4f09-be3e-45f89eca1ed4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('186482a3-b3aa-4f41-b3c0-878bc178afab', '86b706e2-9225-482e-b82a-d4ac4adab065', NULL, 'f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', '06917568-e508-436a-a50f-246ea2afe064', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7305f3c9-8235-4a92-85bb-9ce6188edfaa', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', 'b371c978-c2d9-4b06-94be-a0944f0e8b34', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40d08a9d-d990-4a9e-a5b1-6c60e8a70881', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c7b75a52-20e3-4d01-ba1c-bc18ad58cfa0', NULL, '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', '3706fd53-e952-408a-aedd-93ec6d5129be', '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bfdbce82-4e8b-415a-b5bc-36dfac77faaf', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'a81d830d-68c5-44ea-bd6b-968a28f90197', 'f8fd6f7e-9507-47ad-ab42-fbd72c3718f1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd0a6ede-4366-40d2-8355-6fd331cf91f3', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', 'a81d830d-68c5-44ea-bd6b-968a28f90197', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b54dffd4-9a6a-46f9-b66d-dc4b3a71ed1a', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'a81d830d-68c5-44ea-bd6b-968a28f90197', 'a64973bb-c814-4af9-b020-99f5f726dd24', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b621671-5dfc-49c2-8900-a243c08cd4d1', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'aa3db109-7ed1-496a-9490-62dabce849e2', '9fb3f5e1-472b-4679-a4a8-099557352ec7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3792e102-fc0a-41bc-9c09-dff0f2c6ee17', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', 'aa3db109-7ed1-496a-9490-62dabce849e2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49cf2839-3725-4c1b-839f-69006291fa6a', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'a64973bb-c814-4af9-b020-99f5f726dd24', 'aa3db109-7ed1-496a-9490-62dabce849e2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d49825b7-cd73-44c8-b642-fc6e1a2e8343', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'aa3db109-7ed1-496a-9490-62dabce849e2', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f19b508b-3f4f-40ed-add1-f4cf0f0f3f44', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'aa3db109-7ed1-496a-9490-62dabce849e2', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f2c14dae-2c58-49a3-bb69-1179e3e07155', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'a64973bb-c814-4af9-b020-99f5f726dd24', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bce6bc63-111c-4b80-be4b-1af2234d732a', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '52fd5f0b-55be-4e14-abfd-6b94ff5b830d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2a9410b-7cc0-4cb4-a9fc-b3d3af01872e', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '5c2537c8-eb2c-4da1-b78e-071377668767', '909ff58a-4c4c-410d-a3eb-f17cf15c330c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f34f92d-555d-4a02-86cb-4353761e58f5', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '5c2537c8-eb2c-4da1-b78e-071377668767', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f0950ef-2899-4385-8256-9c7dd9c70628', NULL, '5c2537c8-eb2c-4da1-b78e-071377668767', '3706fd53-e952-408a-aedd-93ec6d5129be', '5c2537c8-eb2c-4da1-b78e-071377668767', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e4bcfb5b-8fee-42b3-a716-306448e99696', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '07b606b4-e386-4d2d-8ecd-438aa4b3cd80', '2b643877-6882-4d24-bf51-fb39d8a59287', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c958c7b-c36f-4565-b5ea-2ce0ea2aacda', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '5c2537c8-eb2c-4da1-b78e-071377668767', '07b606b4-e386-4d2d-8ecd-438aa4b3cd80', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('295e2bec-5586-4a30-8d27-f5462136389e', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '07b606b4-e386-4d2d-8ecd-438aa4b3cd80', 'ce71b519-42cc-4674-8bc0-a2df3c13b6c7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec03b430-bd0f-4553-bea1-756f4442d5ad', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '425b6cf7-172a-4e48-9f66-5592d4e25a99', '51982882-3575-40c4-86a1-c05fedc436db', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c486f6cf-9037-4fb2-828b-c29110390e98', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '425b6cf7-172a-4e48-9f66-5592d4e25a99', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('18b7e9cb-354d-4eb2-a06a-11d19c91adb9', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, 'ce71b519-42cc-4674-8bc0-a2df3c13b6c7', '425b6cf7-172a-4e48-9f66-5592d4e25a99', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5644335-3b7f-4438-8814-e098d72c2772', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '425b6cf7-172a-4e48-9f66-5592d4e25a99', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08630602-93c4-4caf-8086-fe3910ba48f0', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, '425b6cf7-172a-4e48-9f66-5592d4e25a99', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e130a4fa-c05f-45b6-a232-e526c0c20c15', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'ce71b519-42cc-4674-8bc0-a2df3c13b6c7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9bb65a3b-e712-46c4-9bd8-f7a77494e24a', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '5c2537c8-eb2c-4da1-b78e-071377668767', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe96ea19-f953-40d1-9745-b36f78493abb', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '5b5433b1-b6eb-4034-841b-559cba014f35', '5ce74841-55a0-48a2-86ff-253dcfdf8a6f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd38daf1-62fa-4edf-a316-dbe4945b4ae8', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '5b5433b1-b6eb-4034-841b-559cba014f35', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('336f1895-1533-4773-b907-18b4a4beec3c', NULL, '5b5433b1-b6eb-4034-841b-559cba014f35', '3706fd53-e952-408a-aedd-93ec6d5129be', '5b5433b1-b6eb-4034-841b-559cba014f35', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd6e2e18-034c-40bf-bf34-86481d40edb8', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '9851392a-7c6e-4642-881b-dd7728556b86', 'fe903d29-2b20-4f62-8973-ce885b0d03ab', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('720713e2-c2f4-47f2-9479-0f9a518f6895', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '5b5433b1-b6eb-4034-841b-559cba014f35', '9851392a-7c6e-4642-881b-dd7728556b86', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c4b87697-d656-47d7-88ed-9bf46fae9de7', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '9851392a-7c6e-4642-881b-dd7728556b86', '7c6415c0-9900-4de6-9459-e4d50b8e9ae4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('855c8310-eb6b-4026-80ea-ed56ff9c25bd', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '6035bf8e-466b-47f7-a3e8-96bab2e8033a', 'fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b8c7961-f697-4f50-a6b6-a0f27ee09ec6', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '6035bf8e-466b-47f7-a3e8-96bab2e8033a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aab2538a-a511-4780-8607-34f99eee440f', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '7c6415c0-9900-4de6-9459-e4d50b8e9ae4', '6035bf8e-466b-47f7-a3e8-96bab2e8033a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98256c44-181e-4e8b-bc97-e044d8b8b0f4', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '6035bf8e-466b-47f7-a3e8-96bab2e8033a', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ffa67fff-4ec5-4d34-92df-6ababcbe29a0', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, '6035bf8e-466b-47f7-a3e8-96bab2e8033a', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80052042-d14f-4e9e-98a7-c3fd9daf423c', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '7c6415c0-9900-4de6-9459-e4d50b8e9ae4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd293115-6fe8-457e-9010-870320be69bf', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '5b5433b1-b6eb-4034-841b-559cba014f35', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e8ae0f2-98ff-4656-978f-e2fffec36ce9', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '1326d07c-623b-40fc-942a-659f5c7308ee', '118e8006-bf10-4b7d-8f07-fb4b8d9de592', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8c2b7fff-9921-445b-857c-de9de2dfcc0d', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1326d07c-623b-40fc-942a-659f5c7308ee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('24ff72b7-f6cb-445e-a246-24a39f837a21', NULL, '1326d07c-623b-40fc-942a-659f5c7308ee', '3706fd53-e952-408a-aedd-93ec6d5129be', '1326d07c-623b-40fc-942a-659f5c7308ee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2da62c4f-9568-4013-b1e6-d1f91ded337e', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '5310f493-97fb-4203-b41b-71423252cc4e', 'a2f2cc36-6c62-44e0-aaec-b4749ed25558', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20286312-5e98-4ef1-b0ff-0439187b7f4c', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '1326d07c-623b-40fc-942a-659f5c7308ee', '5310f493-97fb-4203-b41b-71423252cc4e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4efe1a38-ea34-4c3f-bdff-a511210ce018', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '5310f493-97fb-4203-b41b-71423252cc4e', '09d8befe-d786-4023-b10e-5479f6d09bc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8aa7fbb-8bee-44d6-b98f-072f6d26a269', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '03b9f057-a59e-4253-a83a-ed4d7058a663', '252d4677-4f71-4719-a287-37245b03a8bf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('767f78b2-90e0-4c86-b7cc-ba112668c7a1', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '03b9f057-a59e-4253-a83a-ed4d7058a663', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5c7c0d3-5e91-4abf-8729-c2e6045550cc', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '09d8befe-d786-4023-b10e-5479f6d09bc1', '03b9f057-a59e-4253-a83a-ed4d7058a663', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f30f856-f8c4-4fe4-aab3-30613db0380f', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '03b9f057-a59e-4253-a83a-ed4d7058a663', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8533c3db-8c1d-4d0b-ab2d-6087562d07c6', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, '03b9f057-a59e-4253-a83a-ed4d7058a663', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('77b6e4a5-a112-4d8c-89cf-9b9442283a17', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '09d8befe-d786-4023-b10e-5479f6d09bc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ebb76242-19c3-4f3b-a669-8400acf4abda', '47b7bd3f-8668-4934-bee9-56708e835d7f', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '1326d07c-623b-40fc-942a-659f5c7308ee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97156b91-a452-4cf3-8c14-fa7f5c5a26da', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, '108a7577-6cac-417f-a0dc-84c799c54797', '5367452a-5726-452f-a76b-8393cc5e6689', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59ee3338-5e2f-4d01-9316-c79338de9aa3', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '108a7577-6cac-417f-a0dc-84c799c54797', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b42ffc07-cefe-4607-b3f4-4fa5827bd0df', NULL, '108a7577-6cac-417f-a0dc-84c799c54797', '3706fd53-e952-408a-aedd-93ec6d5129be', '108a7577-6cac-417f-a0dc-84c799c54797', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46f25ed8-a3cf-422a-bc12-0617d0cfdeed', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, '4538eaad-57b6-4089-a058-2e7b2adfc2ec', '1a32ebbf-8e70-4268-bb9e-dbcc7a501b71', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b920e47d-1424-4935-85cb-5ca323c0fd9c', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, '108a7577-6cac-417f-a0dc-84c799c54797', '4538eaad-57b6-4089-a058-2e7b2adfc2ec', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f2d7c381-8560-4361-a49a-32f3cfb4d099', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, '4538eaad-57b6-4089-a058-2e7b2adfc2ec', '4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c7e7ddea-f5fb-4abb-8f2d-766ead997fc8', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'b8faa38e-6fff-42fc-a1ce-b84070077a61', 'af6f87de-0aa9-4320-b5ba-96a8ac23c9e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7b646a0-5cf2-4ea9-a0ef-76976503827c', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', 'b8faa38e-6fff-42fc-a1ce-b84070077a61', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e21ef4f6-3d46-431b-9c1e-17d15c3bd777', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, '4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', 'b8faa38e-6fff-42fc-a1ce-b84070077a61', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('773184a7-0b28-431c-a763-9cf445a30a53', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'b8faa38e-6fff-42fc-a1ce-b84070077a61', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33651c0b-74a1-4a23-a7c0-77e843306d26', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'b8faa38e-6fff-42fc-a1ce-b84070077a61', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8cc78d3c-5ae4-42f5-82b0-2431472de78a', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('076c544a-24c9-4ce7-81d9-08e4fa51a4ed', '80a9daef-e282-499a-ab2f-98a016edb8f7', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '108a7577-6cac-417f-a0dc-84c799c54797', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6c9fc22d-63c8-4f7a-98aa-ba8fff1e3da8', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, '6da9d98a-3318-403e-a948-bc33efe3d5ce', '9821f69a-b029-4a8f-b1b3-229517380f60', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8eccc366-4e62-4fbf-b02c-ec8f6e209e70', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '6da9d98a-3318-403e-a948-bc33efe3d5ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c38822e4-5e1e-4827-b360-b92d25c4d2ab', NULL, '6da9d98a-3318-403e-a948-bc33efe3d5ce', '3706fd53-e952-408a-aedd-93ec6d5129be', '6da9d98a-3318-403e-a948-bc33efe3d5ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de27e4ea-e17c-4a35-bcb5-b66bc1057793', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', '8bee7b6c-05f5-4538-baf9-452d909f0657', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2dc2a6a9-cc30-47e8-bda0-c0a824d3c0ed', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, '6da9d98a-3318-403e-a948-bc33efe3d5ce', 'b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('704bc599-a122-45b2-9dc4-86400b50c1c3', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', '03245b58-dd24-4cd4-bf3f-d9ba51a69810', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('117ac268-6306-4b8c-b8b3-b80dd1cdfabe', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'ff171f90-f6f2-4c7f-9128-051462cb2368', '2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70e95aa8-1ac0-47ce-a7d7-a0c5a79389bf', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', 'ff171f90-f6f2-4c7f-9128-051462cb2368', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('844fac0e-a516-4f70-90c5-563ddade6f22', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, '03245b58-dd24-4cd4-bf3f-d9ba51a69810', 'ff171f90-f6f2-4c7f-9128-051462cb2368', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bfaf4e0e-12bd-40a5-bcaf-71f0f767975b', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'ff171f90-f6f2-4c7f-9128-051462cb2368', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('56586e9a-9626-4412-a088-168ba9ad0426', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'ff171f90-f6f2-4c7f-9128-051462cb2368', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc02e27c-0c6f-4fc3-bc30-25984f8e205c', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '03245b58-dd24-4cd4-bf3f-d9ba51a69810', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e23bc29-96ac-49cb-a2b0-df041b44f6b2', '93d9827e-63dc-418e-a021-25b400847b2e', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '6da9d98a-3318-403e-a948-bc33efe3d5ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db7b07bc-cfd4-4009-b6a9-3de845ff39bc', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '1b1da9f7-1fb1-4b94-94d7-57275b028d54', '94866c63-1d9f-4b00-b0ff-c6f48c5d6462', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('806bbe69-805c-4f05-8917-9ef45ae9c6aa', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1b1da9f7-1fb1-4b94-94d7-57275b028d54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d49c29f2-d785-4043-890b-fe74dbb447dd', NULL, '1b1da9f7-1fb1-4b94-94d7-57275b028d54', '3706fd53-e952-408a-aedd-93ec6d5129be', '1b1da9f7-1fb1-4b94-94d7-57275b028d54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('600971dd-5188-43de-b278-03af494ee111', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '871fd02d-def7-4c83-b40e-23029a4019cd', 'd86f4fc3-58a6-4464-8836-4ce8b34f25c9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2c45a296-31e4-40fd-ad10-dda3a8269d35', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '1b1da9f7-1fb1-4b94-94d7-57275b028d54', '871fd02d-def7-4c83-b40e-23029a4019cd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd7c5212-9734-48af-9396-9f4ee835843e', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '871fd02d-def7-4c83-b40e-23029a4019cd', 'ae26c1c9-ca79-4a83-a050-0eaab121ce3e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb4891cd-9c41-4275-bafc-a69557c3e3a7', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '11542ad4-cd41-4d26-b778-a25b29175f7b', 'e6d44cf8-f6fa-4138-8410-982613c62c49', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('419450e7-127e-4866-b520-e79537284e7c', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, 'dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '11542ad4-cd41-4d26-b778-a25b29175f7b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ecdbd09-d56b-43c4-96cd-3743963d23d4', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, 'ae26c1c9-ca79-4a83-a050-0eaab121ce3e', '11542ad4-cd41-4d26-b778-a25b29175f7b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('289556ad-fea2-4e99-a222-7ab08c4f85dc', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '11542ad4-cd41-4d26-b778-a25b29175f7b', '38aa2ac2-71e5-4805-94ae-61361288f235', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d07700f1-0709-4a9d-9f14-4f47e7d7b749', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, '11542ad4-cd41-4d26-b778-a25b29175f7b', '8806c446-5551-4059-ba53-850a2d147c7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('346eefc8-8d2a-4b67-8f22-c6a0afea94e4', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'ae26c1c9-ca79-4a83-a050-0eaab121ce3e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be3bb7a6-7828-4047-a180-79fc7a7277b0', 'f4219fae-353d-4324-90ca-9f313a8c1c17', NULL, 'b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '1b1da9f7-1fb1-4b94-94d7-57275b028d54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0df4ebf7-d987-4f0b-9bdb-3dcc8d762053', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', '37c59916-a966-4dca-a1e3-0cffb78ad141', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aaca1433-4934-4751-8f67-71b7b61ba489', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a77c71d4-6631-4b14-aa50-50b0f9e79363', NULL, 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', '3706fd53-e952-408a-aedd-93ec6d5129be', 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6147de7f-5796-4b80-b622-f5c3b70e01d0', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '08963816-c027-42e1-80a8-f55dcd6a02aa', 'b546d5b0-59f6-44af-a54d-d8e3097a3640', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af96206c-1ae8-4350-96cb-71ed23f0baa9', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', '08963816-c027-42e1-80a8-f55dcd6a02aa', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a60ac64a-4af6-48bc-a1aa-69a24ad48d3a', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '08963816-c027-42e1-80a8-f55dcd6a02aa', '5e3ac214-0f11-4af9-b637-50ff3f841b76', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e38c4ccc-e949-4c40-8379-e3b601107c9b', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '85d1d5a3-30a5-4bab-9670-878abc6bfe54', 'c2ccc14e-f11b-497f-95db-5397aa38012b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('462cc639-2ca8-40a8-a575-a49a045f3596', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', '85d1d5a3-30a5-4bab-9670-878abc6bfe54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe8eaf38-c3c2-4221-8cdd-207155392d6c', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '5e3ac214-0f11-4af9-b637-50ff3f841b76', '85d1d5a3-30a5-4bab-9670-878abc6bfe54', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7df76f5f-b7cb-40eb-a86f-f83945ee8cd9', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '85d1d5a3-30a5-4bab-9670-878abc6bfe54', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f655df71-ecd5-4f06-a268-f9d1b99454ce', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, '85d1d5a3-30a5-4bab-9670-878abc6bfe54', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('63c62f56-4b72-44c3-99ce-ddb029ab1283', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '5e3ac214-0f11-4af9-b637-50ff3f841b76', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe2e422c-ffa6-4250-8470-2a3c97f57d08', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'dc7aa55a-ab16-47eb-a29b-79e64328fa31', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65414b52-aa15-4162-b018-eb4fd128283c', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', '36490d00-f5d4-4722-b285-9cac45e7dd5c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45c35d7f-f897-44dc-af54-127ab4bde8da', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d888bad-9424-4fcc-9d80-8ff53f437df0', NULL, 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', '3706fd53-e952-408a-aedd-93ec6d5129be', 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd19286b-a328-4655-b49e-ebd8ae24e3ff', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'ba13ab33-99ee-48ef-b205-73e9adea9651', '891fe7ab-2113-4f20-ab6d-3d81cca0941a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31150614-93a5-4100-8c51-85a86e2f6de0', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', 'ba13ab33-99ee-48ef-b205-73e9adea9651', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f50ccdba-1e3f-4c32-a7d0-064405737cb5', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'ba13ab33-99ee-48ef-b205-73e9adea9651', '918840d4-592e-43eb-afa5-ad6ea37043a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68007eb2-edad-4729-a1ac-87d36a60fab1', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', '10ff5603-7bfa-490e-a468-6d231db02ac6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c1e03f8-4df9-4ada-80fe-88264c146a13', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0da1294a-124d-4d64-868f-fa10e2bb50c6', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, '918840d4-592e-43eb-afa5-ad6ea37043a3', 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7266aa8d-0a18-4c1d-a2db-460e22082376', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eff379d8-ea07-45d8-b1b9-939d7bd504cf', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'd48cd569-cc1f-4f27-bb9a-35154e5fc0b2', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba997a4e-e15a-4b7e-ab8d-8d18b7d77784', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '918840d4-592e-43eb-afa5-ad6ea37043a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('44ee4667-fce9-4a32-94bd-c303ee429880', 'ed0fb977-6512-4452-8505-378fcbbd5060', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('23114396-605b-4635-bfec-f5d19f9f2d61', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '1ec552f6-834f-4b68-ae60-6d39e6d887e7', 'd53e3095-38c0-4be0-b7c4-17d6c505c370', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6028e332-1d2e-4c7d-953b-8bbb2dcb3876', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1ec552f6-834f-4b68-ae60-6d39e6d887e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65248239-5a3e-4a20-bf6b-41c18985d3fb', NULL, '1ec552f6-834f-4b68-ae60-6d39e6d887e7', '3706fd53-e952-408a-aedd-93ec6d5129be', '1ec552f6-834f-4b68-ae60-6d39e6d887e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('78166a30-6c96-48c2-b96d-1b0b9c1bd6ec', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '82982647-714a-4203-b8f0-3d9fa5d22b4e', '39a2c817-387a-4a54-a751-6dfc0d781f8c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('845c483c-fadb-4d86-bc40-8f26ee15e3e2', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '1ec552f6-834f-4b68-ae60-6d39e6d887e7', '82982647-714a-4203-b8f0-3d9fa5d22b4e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa56ac1c-a232-4e0b-98bb-82d3ecf4bb97', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '82982647-714a-4203-b8f0-3d9fa5d22b4e', '76d74da3-9fbd-43bb-9083-093a9254af2b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('860c5bcf-0127-42e9-9057-86f63e8fb6d5', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', '09cb2efd-3998-4b84-a315-788b6375ffa6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be6f5601-acce-4422-abd5-2dff417f828f', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04497d4a-90e2-40cd-ae75-bce64fea3d95', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '76d74da3-9fbd-43bb-9083-093a9254af2b', '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1aa22445-4c2c-49e7-961c-d7ed77dca1c7', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af0093ed-2cdb-4c57-8b68-5f1871f83f90', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, '0303b9f3-8860-4ebc-b808-d4d2da18f5fb', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('93b39756-48a6-4a58-b196-58b68de6bc32', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '76d74da3-9fbd-43bb-9083-093a9254af2b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c418ce5-d2e7-4609-a25c-854a77422da5', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '1ec552f6-834f-4b68-ae60-6d39e6d887e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fccc27f-37d4-4c9f-9f50-5c431eeb5dd6', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'c17186dc-564d-4f82-914b-202ad8bc9941', '5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ffd40e9-d22a-453d-b88d-4c222412afc0', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'c17186dc-564d-4f82-914b-202ad8bc9941', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1173ee00-62e1-423f-96bc-10a009e581b1', NULL, 'c17186dc-564d-4f82-914b-202ad8bc9941', '3706fd53-e952-408a-aedd-93ec6d5129be', 'c17186dc-564d-4f82-914b-202ad8bc9941', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4973160-2485-4357-b9d4-04533f62326d', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'b05450fd-5e5b-4aa1-b334-0b886ced9492', '708ff719-70c9-48f5-8664-dbf49352d261', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3142f58d-1600-42d5-8c4d-002f325423cf', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'c17186dc-564d-4f82-914b-202ad8bc9941', 'b05450fd-5e5b-4aa1-b334-0b886ced9492', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eec039fc-3cdc-48b0-8d80-371f5ab98ca8', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'b05450fd-5e5b-4aa1-b334-0b886ced9492', '2710f7f0-f352-4e71-a527-38076d6966ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('873674d6-8281-4362-9a73-630c8e00c62c', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'b012ee61-8155-4fa3-bee0-9a0918452bae', '7fd8da11-6a47-4ca3-8bf3-9713a6ac0305', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86e1fa7a-fcc5-4cb1-835b-62995092ec69', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'a6ff0898-04e1-49b7-8621-b42846df06e1', 'b012ee61-8155-4fa3-bee0-9a0918452bae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1dca2eff-0e1e-4941-a54b-18ba818edaa4', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, '2710f7f0-f352-4e71-a527-38076d6966ce', 'b012ee61-8155-4fa3-bee0-9a0918452bae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('42131f0b-59fd-4698-b74a-aa1817515792', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'b012ee61-8155-4fa3-bee0-9a0918452bae', '5c9372e0-cb21-4ae7-a461-df086ad19426', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95481de2-ae7a-4657-b880-d0ee44b27bfc', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'b012ee61-8155-4fa3-bee0-9a0918452bae', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eabbd51a-4686-4d65-96e1-958c313ecf9b', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '2710f7f0-f352-4e71-a527-38076d6966ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('117b3c8e-3a79-4ad1-adca-c126ba5ce98a', 'af82432c-09a8-42a7-9525-e9095025d4dd', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'c17186dc-564d-4f82-914b-202ad8bc9941', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38d1b657-379e-4a9a-8527-c30fa1d7c78b', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', '63ab27e2-5a5b-483e-8346-0024da814b06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26b6b9d0-a985-4b9d-9b8e-e063ba480714', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb7994b8-3bb2-4381-9b28-5c5fffcf5500', NULL, '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', '3706fd53-e952-408a-aedd-93ec6d5129be', '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25ef6910-d687-4255-936f-9738868b5bdb', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '6c83af72-d5d7-4076-b7b6-33ca23c80ff8', '14fd3310-5109-472b-9eb8-9b3aac0cc5c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed7f532c-3caa-49ef-825b-e36c90d490f9', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', '6c83af72-d5d7-4076-b7b6-33ca23c80ff8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e1a316c-be94-44a8-90b9-1e9bf3e03516', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '6c83af72-d5d7-4076-b7b6-33ca23c80ff8', '8833f9cb-d000-41ef-920f-6e6ba586c65d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3918e326-9f99-489b-8c87-5d3d95c8909b', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '49e8c569-1fe0-4215-8cc3-698054ff896f', 'a351e412-5f16-4c87-b09f-6c0290e20b7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('264c36d3-405f-4eef-98f0-cff6a9f50783', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '939dafca-fe72-499d-979d-6fe0288e6807', '49e8c569-1fe0-4215-8cc3-698054ff896f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc1f086f-9232-4b67-a4d6-b270c1496cc7', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '8833f9cb-d000-41ef-920f-6e6ba586c65d', '49e8c569-1fe0-4215-8cc3-698054ff896f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de1c6bc8-f470-4c0d-b47f-353980576e29', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '49e8c569-1fe0-4215-8cc3-698054ff896f', 'b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c48e3a13-76e7-4ee6-acbd-6d88da4b0392', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '49e8c569-1fe0-4215-8cc3-698054ff896f', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('860cf6b4-8697-4a7f-9c59-d65c3aa73067', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, '49e8c569-1fe0-4215-8cc3-698054ff896f', '236b88d3-09bc-4750-9219-61529f7740af', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('927cd8d9-8a84-4b66-8a84-49ed4a4d93ca', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, 'f87398bc-225a-4eee-bea8-7983be6ae529', '8833f9cb-d000-41ef-920f-6e6ba586c65d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c324003-be19-4195-bb55-12ad791cfccd', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f04b5170-d247-4edb-bd83-4ce3c0199b3d', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '0e190f5b-0333-4f70-aabc-71d2e810a712', '0fc0933c-0397-4b0d-ae81-18c41d3fe082', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('014c9f70-9876-4685-b99a-d88338f16dc7', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0e190f5b-0333-4f70-aabc-71d2e810a712', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f6d273a-ed72-414a-ba94-08f1cc96324c', NULL, '0e190f5b-0333-4f70-aabc-71d2e810a712', '3706fd53-e952-408a-aedd-93ec6d5129be', '0e190f5b-0333-4f70-aabc-71d2e810a712', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84c8d1c7-d62d-4bc8-a34d-aa9872a20ed2', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '8eb1d02d-d44f-42a8-bd93-a05174ce15e0', '133a7879-3f1c-4daf-8b16-9160b4477288', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a7de6b1-c26d-4a9a-9b98-27d65c1a4973', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '0e190f5b-0333-4f70-aabc-71d2e810a712', '8eb1d02d-d44f-42a8-bd93-a05174ce15e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e07c7714-cc7d-47bc-b867-8f17d5b3150b', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '8eb1d02d-d44f-42a8-bd93-a05174ce15e0', '77ef9867-e939-4d36-85e1-4a573c4a9b55', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04fbc978-15b2-4609-b13e-3a307803ca2d', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', 'd2ef2562-a654-4af3-b1eb-6e8bcd35c03e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc6074ef-ac17-4e01-a504-81232802ed49', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c303b3da-aa0d-4b5a-a6ef-437aeaab8698', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, '77ef9867-e939-4d36-85e1-4a573c4a9b55', 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('922f86ad-53a1-4643-a528-a0707127b2d4', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', '25acc71c-db8f-46e4-950a-8ea76637bb9b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eb764aac-d784-4ebc-874c-c6c5285137d8', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('064926b6-0149-4518-bbe9-b201997cc90f', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'cedad28c-ea54-48a9-b2f8-e16a29ec56a1', 'f913c978-1afc-4af0-9bb6-8c21eed95991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b3132dbc-b482-486b-b02e-a8ad200cbdd2', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', '77ef9867-e939-4d36-85e1-4a573c4a9b55', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38c323d4-bd10-48f2-86a9-ca9246ee0cc8', '65879210-cf7c-4e5b-a2d1-742a42fcb488', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '0e190f5b-0333-4f70-aabc-71d2e810a712', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be632038-c8e0-441e-a7cd-80f1fab0f7a5', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '7377295c-c6d9-4826-b712-ea5df5c3d8d1', '5ae15451-1a59-45da-b59d-02884a418fc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e513ed65-b37e-42c2-8d1b-d1eb96d5b988', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7377295c-c6d9-4826-b712-ea5df5c3d8d1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('18472c38-51a3-4360-b694-c118c3d75515', NULL, '7377295c-c6d9-4826-b712-ea5df5c3d8d1', '3706fd53-e952-408a-aedd-93ec6d5129be', '7377295c-c6d9-4826-b712-ea5df5c3d8d1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f9ef4b2-12f7-439d-b0a4-d67d1f0ef28e', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '638a0990-bb30-434c-80b5-65f3e33732f6', 'c0844f33-c3b3-477f-9321-4b342474802a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('010f9b91-c272-49ee-af70-30a378c35bd8', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '7377295c-c6d9-4826-b712-ea5df5c3d8d1', '638a0990-bb30-434c-80b5-65f3e33732f6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d64baff-ceff-4ad1-9abc-ddcc92cf9c5e', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '638a0990-bb30-434c-80b5-65f3e33732f6', '0de0bb80-9691-4f70-9bdb-53a862399dc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ee7d3e9e-1c6d-4877-8d1f-3c26bf7709d7', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', 'c8d78c39-6d4d-48a7-96f8-80fdc50b2059', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2fa47a46-e76f-441b-a411-cbba090ee3f1', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38c385ef-16c5-471b-b065-dff65edf12ea', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '0de0bb80-9691-4f70-9bdb-53a862399dc1', '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('274f5f7b-4e82-4e41-82ad-5ff7653d4209', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', '25acc71c-db8f-46e4-950a-8ea76637bb9b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9f69e8b1-bc6d-4f52-996e-0d71cf466d34', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a96f7b8-8ddf-4868-a3d7-174813b2d180', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, '701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', 'f913c978-1afc-4af0-9bb6-8c21eed95991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('121f4ca4-da82-47ac-b2fb-96d63c8b897b', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', '0de0bb80-9691-4f70-9bdb-53a862399dc1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9588e638-90a6-43c6-9a25-4a1293154772', '97e5ed67-e81c-4c12-b354-45db951901c0', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '7377295c-c6d9-4826-b712-ea5df5c3d8d1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0896ff6-bd78-44d7-87c0-37f267aef94c', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '84802890-6128-4134-8ad7-667491cfcbf7', '19932b77-d4fd-4664-a0c6-ff8fb707f697', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6efe6567-1033-4081-ab3f-304926c7c1d3', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '84802890-6128-4134-8ad7-667491cfcbf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d0bd8b9-381a-4502-a4ee-2b91505447a6', NULL, '84802890-6128-4134-8ad7-667491cfcbf7', '3706fd53-e952-408a-aedd-93ec6d5129be', '84802890-6128-4134-8ad7-667491cfcbf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0458ece-a35f-487c-aa0f-633de255dc6b', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '63eb26c8-3d39-45f7-b2ef-5038f301bddc', 'a71abf2a-ab11-4bdd-8591-6977673bdc32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16ef5805-c3da-46ef-865b-14b723110a2a', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '84802890-6128-4134-8ad7-667491cfcbf7', '63eb26c8-3d39-45f7-b2ef-5038f301bddc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0fd2ed3-afb3-4ea9-9f69-a572d7bb8425', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '63eb26c8-3d39-45f7-b2ef-5038f301bddc', 'fadd73e5-eeca-4f5a-b07d-998d11eb411d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86dc0d91-08b4-47ae-b24e-b185c32deb05', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '6dc07a2f-428b-4621-9f39-8679a5a5a780', 'e1cfb24e-d3c2-4279-b1b7-0e037766a0c3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1e7a27b-2ca3-4ca6-938d-db8a130a56a4', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', '6dc07a2f-428b-4621-9f39-8679a5a5a780', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54e6fe3c-946f-4ffe-b571-1683b975b1b6', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, 'fadd73e5-eeca-4f5a-b07d-998d11eb411d', '6dc07a2f-428b-4621-9f39-8679a5a5a780', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1f74d3b-cd97-492b-baa2-8384d8cdfc97', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '6dc07a2f-428b-4621-9f39-8679a5a5a780', '25acc71c-db8f-46e4-950a-8ea76637bb9b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bb575fa2-0a38-404c-a280-bcc403c475f9', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '6dc07a2f-428b-4621-9f39-8679a5a5a780', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a808d0d0-8971-4236-ba01-ad2bc3ef73bf', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, '6dc07a2f-428b-4621-9f39-8679a5a5a780', 'f913c978-1afc-4af0-9bb6-8c21eed95991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d19a35a-143f-4b27-8056-19047cdc8e57', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', 'fadd73e5-eeca-4f5a-b07d-998d11eb411d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fc5672ca-4c2b-49ef-94a5-853622932577', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '84802890-6128-4134-8ad7-667491cfcbf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55622a21-18b4-4889-a133-b0f9e999a5f8', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', '3c82a048-8d56-4f34-98c4-a20e193f815e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bdec28d3-ff09-4651-a5cc-afb25e7cf5fd', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('348bed58-906a-43d6-9fb5-789d99bc2448', NULL, '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', '3706fd53-e952-408a-aedd-93ec6d5129be', '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57cb83c6-c9be-4a0d-9345-5c1d93dcbff5', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '47388b74-46ec-45fb-a817-031c959a6c2e', 'a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bcfbb0b7-df3c-41ed-8493-c971aa14c270', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', '47388b74-46ec-45fb-a817-031c959a6c2e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('78f0fa7e-324e-4e4a-9321-5a1c72dae660', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '47388b74-46ec-45fb-a817-031c959a6c2e', 'fb0b7122-f782-414f-85b1-c1df876a3441', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86c9a95d-c08a-4375-8be1-1a23d89903c8', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0195bb79-457f-42a6-a21f-ffd238256b28', '1230adbc-b61a-4ba1-b298-c831c2862e8f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da788239-e153-4071-b312-c43279d9ac87', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '82d6e2a0-3c2d-4a8e-8638-4903696927d5', '0195bb79-457f-42a6-a21f-ffd238256b28', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0f97ffe-65a5-4b38-9839-c914830c41f5', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, 'fb0b7122-f782-414f-85b1-c1df876a3441', '0195bb79-457f-42a6-a21f-ffd238256b28', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53dd57a9-a5c4-4741-b922-e42cc3852f3c', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0195bb79-457f-42a6-a21f-ffd238256b28', '25acc71c-db8f-46e4-950a-8ea76637bb9b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b04b8eff-9ecd-41fc-beb0-3b9b92832d87', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0195bb79-457f-42a6-a21f-ffd238256b28', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a77fa2fe-84af-45a4-aaf5-adb8bdc09c61', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, '0195bb79-457f-42a6-a21f-ffd238256b28', 'f913c978-1afc-4af0-9bb6-8c21eed95991', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d0caee6-f2e7-4f1e-adc4-3405bfa88867', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, 'da979efd-9d87-4dc5-a839-493e883cf292', 'fb0b7122-f782-414f-85b1-c1df876a3441', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35606a65-d96a-4b02-a621-af561e25d649', '2eec1138-d2ad-43de-a105-605d0182a1f8', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8cc05ae-3a13-4346-83c4-9449520e9ddf', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '8280b446-c17d-4d5f-aff5-ab391cd0af09', '8c70ecf7-82ce-4661-8cc5-0fadbcc4151a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('876fd5a0-0810-43ca-b132-29311d103c67', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '8280b446-c17d-4d5f-aff5-ab391cd0af09', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94a375c1-4ab4-4f9b-b01b-7487db466f64', NULL, '8280b446-c17d-4d5f-aff5-ab391cd0af09', '3706fd53-e952-408a-aedd-93ec6d5129be', '8280b446-c17d-4d5f-aff5-ab391cd0af09', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbc7e03b-d588-4412-99ef-f0cdd5559a26', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '53e80cc6-7e19-4c55-8c1a-3190844ae734', '7aceef4b-2faa-48c5-8355-72db528f4822', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('65dbca62-0240-4f81-a4a5-c0d002c6db26', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '8280b446-c17d-4d5f-aff5-ab391cd0af09', '53e80cc6-7e19-4c55-8c1a-3190844ae734', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('02019ab8-6ec7-4856-98f6-03c99788b6a7', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '53e80cc6-7e19-4c55-8c1a-3190844ae734', '4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49c0af6d-f0aa-430f-b03c-ecdfade261e4', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '85e6093a-5013-45c3-a756-66e50d03b6bc', '24fab1b7-ae06-42e0-8746-4754b526994d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37ed1b92-de74-4f45-8ae0-b641fc11f0cd', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', '85e6093a-5013-45c3-a756-66e50d03b6bc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e827db1b-3a2b-4978-93b2-8cf996dd2487', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', '85e6093a-5013-45c3-a756-66e50d03b6bc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13868160-f13c-4deb-91f9-d1bf6768d803', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '85e6093a-5013-45c3-a756-66e50d03b6bc', '24f9488b-412f-4314-b160-2897f4dcff1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7a500ad-1822-4607-9c36-c94a64bb8d60', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, '85e6093a-5013-45c3-a756-66e50d03b6bc', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('017ebbbd-4aa4-4c64-adf6-89fb2d5ce244', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b970a351-ee05-41ec-b995-f75915afedec', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '8280b446-c17d-4d5f-aff5-ab391cd0af09', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('913004d0-3a2a-4c56-b24a-20575950dcb5', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '7044a856-3670-42b7-9719-4a8638fff92a', '13d82035-64c5-4ca9-a85e-988bc4a2eb4d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8328274d-3393-48ff-b2ed-0eb3466e8298', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7044a856-3670-42b7-9719-4a8638fff92a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d784639a-94ce-40b6-968a-295ff498aa7a', NULL, '7044a856-3670-42b7-9719-4a8638fff92a', '3706fd53-e952-408a-aedd-93ec6d5129be', '7044a856-3670-42b7-9719-4a8638fff92a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a41e82a4-97ef-4bc5-ad86-2840f3c37a11', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '20f04373-bbb4-4b9d-a89f-d21272d75d59', '62ca73f6-89b1-4113-92ba-a7823aabf31e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84b09044-2858-4daf-bcac-bdc446c41aea', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '7044a856-3670-42b7-9719-4a8638fff92a', '20f04373-bbb4-4b9d-a89f-d21272d75d59', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57713630-d87b-4811-9f01-ef736c0b4834', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '20f04373-bbb4-4b9d-a89f-d21272d75d59', '367f629c-223d-456c-98cf-ddf6600d5858', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b522b03-0f33-43b4-90a0-cdb5d3842343', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', '740e371f-18b1-4e93-8408-2fcc777b7da6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0c22b32-549b-49e3-a838-172fa221eed6', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('484d6f99-3537-4bce-b543-edec82063ebc', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '367f629c-223d-456c-98cf-ddf6600d5858', '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04e04fc5-fcec-47b4-b836-cf3210e750f3', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', '24f9488b-412f-4314-b160-2897f4dcff1b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b5cda60-6c9e-46ec-af67-3cf3d4c8d356', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, '4c98fcb4-e0b6-4692-86e5-dabb78af17ed', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5bb50ffd-5bb4-4cb5-91eb-99b64004ebee', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '367f629c-223d-456c-98cf-ddf6600d5858', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef476770-55e8-4eb4-a752-69c38dddc033', 'fad03414-b62b-45d4-93fd-51c52149762c', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', '7044a856-3670-42b7-9719-4a8638fff92a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71191ee7-aa74-4044-ace7-7951b0b3c0d2', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'cdc318a4-f418-4564-a38c-f93562dda048', '2c15e623-a22a-435b-a125-3edbf2a9b5f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f0d820d-4d93-49b2-bcc1-7ee5c50e428c', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'cdc318a4-f418-4564-a38c-f93562dda048', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0cade10-f7f9-4b8b-8f42-0cf53b892b9c', NULL, 'cdc318a4-f418-4564-a38c-f93562dda048', '3706fd53-e952-408a-aedd-93ec6d5129be', 'cdc318a4-f418-4564-a38c-f93562dda048', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9eba2405-6cf5-40a7-b426-9e6458318053', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', '1c9c5558-dd2c-4293-bfcb-0160e981b6e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('18c5068e-048b-4510-9b18-9fd2fb0d4135', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'cdc318a4-f418-4564-a38c-f93562dda048', 'f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e9079c64-7557-4ae1-a866-4a96e5e49ba1', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', 'ced737cc-1da8-4b12-808a-13e36b8bc37e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c21b9a49-8c79-4a8d-95f4-032db314e885', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, '79ef402f-0c51-4ae0-a0dd-f0a09505a273', '19241a87-0b31-4156-a479-cdb61cafaa66', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('828e4453-5b83-4a3c-8e49-29fc212ee8ab', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'f9d5ba94-1514-4400-88af-7b7d3798f473', '79ef402f-0c51-4ae0-a0dd-f0a09505a273', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('12864cb0-ed29-4cbf-a00b-4716e6fcff00', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'ced737cc-1da8-4b12-808a-13e36b8bc37e', '79ef402f-0c51-4ae0-a0dd-f0a09505a273', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a52c39d7-3d61-4707-8d2c-b85e571c0c7a', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, '79ef402f-0c51-4ae0-a0dd-f0a09505a273', '20926d99-1f1f-497a-8e13-ce3cb4b1eb73', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('acc43637-f18c-46a9-9cbe-23c45b18ff7b', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, '79ef402f-0c51-4ae0-a0dd-f0a09505a273', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('734b541b-498d-4e39-a136-8be5802563e1', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, '79ef402f-0c51-4ae0-a0dd-f0a09505a273', 'ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7321df72-9db0-4594-88ff-cc624280efc0', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'b28425cc-f859-43db-b3f5-64b5fb6a668b', 'ced737cc-1da8-4b12-808a-13e36b8bc37e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa207d78-61d8-4e6a-97e2-054f738a56a4', '48a0fa39-0d72-4c0a-800f-afed02865850', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', 'cdc318a4-f418-4564-a38c-f93562dda048', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e419060c-9fbe-40a1-bece-ed26c86303f3', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '0b67cb5e-3570-4ca7-945b-94f3390bec81', '22b95a69-d861-4d90-bfef-a9c3f4ba5d52', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fb4d523-f9fe-4577-a320-8de8b7018354', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0b67cb5e-3570-4ca7-945b-94f3390bec81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58c42133-e753-42ec-9179-1343126f6a88', NULL, '0b67cb5e-3570-4ca7-945b-94f3390bec81', '3706fd53-e952-408a-aedd-93ec6d5129be', '0b67cb5e-3570-4ca7-945b-94f3390bec81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df06f05b-67e5-4a3a-bf44-25bae283b342', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '5306f8ae-55c4-460d-a133-45f8eae30eb6', 'a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8a317992-4d7b-4f96-a216-b3d76a67b058', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '0b67cb5e-3570-4ca7-945b-94f3390bec81', '5306f8ae-55c4-460d-a133-45f8eae30eb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('62f04d9c-09d7-4a80-a932-aba12d4a9258', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '5306f8ae-55c4-460d-a133-45f8eae30eb6', '39500fd6-4dcf-4c33-9766-c9b4071e4754', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b22cccac-454e-46d4-b440-f238db43371b', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '3f31fd85-c31c-4258-8219-2ed6f7a38f29', '5feb8ea2-f497-4058-b056-dd96514c70c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c700dd59-b6cf-4d50-8fa2-d7bd1582cf98', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', '3f31fd85-c31c-4258-8219-2ed6f7a38f29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('39514d32-b8b2-4191-8e3d-c339263c630f', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '39500fd6-4dcf-4c33-9766-c9b4071e4754', '3f31fd85-c31c-4258-8219-2ed6f7a38f29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5739fe2-cbc1-45a7-957c-1da1866ef72f', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '3f31fd85-c31c-4258-8219-2ed6f7a38f29', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d1f8a60-937f-44c1-bb27-ec4b42159618', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '3f31fd85-c31c-4258-8219-2ed6f7a38f29', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9270ca1c-1b92-45a2-ae06-6b81a4fd9d49', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '39500fd6-4dcf-4c33-9766-c9b4071e4754', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51aca5fc-851d-42e4-9d27-d41280eca08a', 'a84434fd-e879-4208-a8e8-8095e22b72bf', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '0b67cb5e-3570-4ca7-945b-94f3390bec81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1f676e2-21fd-4689-88c8-800518d22080', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '3461faee-7a67-45d3-af18-7de8686c381d', '164e7fa0-ccac-4331-be5a-dc965b1c31d6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d16fb908-a8c8-4be1-b52e-e7e39c12ea07', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3461faee-7a67-45d3-af18-7de8686c381d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f22de112-02a1-48f0-8a9c-0ff8dd22c8d0', NULL, '3461faee-7a67-45d3-af18-7de8686c381d', '3706fd53-e952-408a-aedd-93ec6d5129be', '3461faee-7a67-45d3-af18-7de8686c381d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('780fd786-74cf-4b97-81b9-ac4b909fef18', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', 'dbee33c8-80d8-40c9-9d16-af5c99aea9ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('85faf70c-058e-4612-b290-4141325917a5', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '3461faee-7a67-45d3-af18-7de8686c381d', '1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1a293898-9590-4232-99d0-c839bac38a4b', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', '3d17a863-17af-48a5-a6aa-abc815209773', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('974163d5-e3e7-4703-9b47-768296eb4c57', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '0447c01c-fae5-4c80-a59f-a9f330321b9c', '1b4208a5-e7ba-460e-922f-a9fb5c7e79e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6638829e-b4a4-4148-bed1-1df9bd27bc83', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '57ee73c6-769e-461e-9cea-7bfe56970bf7', '0447c01c-fae5-4c80-a59f-a9f330321b9c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21c8f5cf-38b2-4fb7-a4fd-8b6893a55394', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '3d17a863-17af-48a5-a6aa-abc815209773', '0447c01c-fae5-4c80-a59f-a9f330321b9c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc6788b2-65f0-406e-a3dd-3b58eb3ebeb7', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '0447c01c-fae5-4c80-a59f-a9f330321b9c', 'e65ad361-79d6-46a3-a7c7-a18048b7237a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('52109c52-b432-4d0c-8aca-dd0a99ca35eb', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '0447c01c-fae5-4c80-a59f-a9f330321b9c', 'ea1789f5-11fe-4ec3-8d12-2623ba592c7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fbff0ee-6d38-412a-bafe-d2017b2155b3', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '3d17a863-17af-48a5-a6aa-abc815209773', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dde7f3bd-0a6b-4da2-8db7-92d54b443c7e', '93d87d13-efdb-4d31-83e6-3b13db983c12', NULL, '6ef557f3-0b1e-41e9-bde7-8abea686f965', '3461faee-7a67-45d3-af18-7de8686c381d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b62e2ba3-fd5e-41dd-b36e-a4df8d27cc84', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'fd1b146c-609a-486f-afe5-c87430e1be15', 'cebd9ecc-f841-4d44-a3fe-3c82827f2918', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('342a26e0-01be-4477-8505-bb177f76f81d', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'fd1b146c-609a-486f-afe5-c87430e1be15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea164af9-46a4-4691-bf45-39c089a3907f', NULL, 'fd1b146c-609a-486f-afe5-c87430e1be15', '3706fd53-e952-408a-aedd-93ec6d5129be', 'fd1b146c-609a-486f-afe5-c87430e1be15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('682f1b6c-bbe9-4229-bd9a-1782cd6296d6', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'd09b10a6-f74d-4e87-898d-851cfdb9dffb', 'ac3ee728-8957-4b2e-91d7-9f7a0e543931', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1d7a2de3-3754-4b1d-a763-d5a0d920dedb', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'fd1b146c-609a-486f-afe5-c87430e1be15', 'd09b10a6-f74d-4e87-898d-851cfdb9dffb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fe44a04-1c1b-4046-91b2-54f0c6560020', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'd09b10a6-f74d-4e87-898d-851cfdb9dffb', '3a1e0eb9-bf91-4bda-b804-8707d753644e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('420dd5f5-07b6-4e88-803d-23281381b7b9', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', '30b91518-31ef-4b3f-a539-c1f7566e0c77', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97796f5f-c386-44ab-b15a-8be0b6b8ce89', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'd206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fddf76f7-6c95-4af7-841f-fe2ce0200617', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, '3a1e0eb9-bf91-4bda-b804-8707d753644e', 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df62b4b8-bc0d-4a5b-9285-7c489e5a7e13', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', '6c787015-c910-455d-8b2c-c3ae7bece7e7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2eaa6dc6-2561-4bc8-b138-16b73f9df2a5', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', 'e668cce4-9f01-4c71-b28c-79859e02971b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36a8ac7a-fff5-4bf0-b3c6-99fbc1901d48', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', '4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4276e2db-6b2f-413b-a29e-6e8a82b16ba9', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, '9e5fa680-2abc-4f25-bb22-bd2fe04fd860', '3a1e0eb9-bf91-4bda-b804-8707d753644e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('769e962a-57dc-45ab-92b3-68c217f8b495', 'bad214a0-5220-4433-8714-52e4c736585a', NULL, 'b4224d96-af95-4008-9a96-9ae04b44913f', 'fd1b146c-609a-486f-afe5-c87430e1be15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4d1f8cfe-9901-4ba6-a66f-3a859d8c3669', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '8e9971fb-270c-4897-ae63-50f457d9d0d5', 'fa9a7713-93f2-46c6-b3de-9d6e42bce983', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('afd8494c-f583-4ba5-8b40-e67b5f56bc03', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '8e9971fb-270c-4897-ae63-50f457d9d0d5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('654992e9-98eb-4f59-a8dc-37068c28dcae', NULL, '8e9971fb-270c-4897-ae63-50f457d9d0d5', '3706fd53-e952-408a-aedd-93ec6d5129be', '8e9971fb-270c-4897-ae63-50f457d9d0d5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d23139da-5dba-4b5c-8471-596a168c8fe4', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, 'a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', '052b4092-a5bf-47f3-8ba2-0734ec9129d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('984f748c-bef5-4ffd-a9f3-1af2e470d8ff', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '8e9971fb-270c-4897-ae63-50f457d9d0d5', 'a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e2247b4c-a6cf-4cbf-bdf8-a64aeaf6933a', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, 'a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', '7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36b6b1e1-03f8-45e0-b810-7f506aa69c67', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '0caafe33-8257-4550-9e75-c8a828d5dbc6', '4c75b994-e714-4781-a51d-6f582ae07f6e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7427b8f-db70-496a-b5a4-ce1e704c8246', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', '0caafe33-8257-4550-9e75-c8a828d5dbc6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9f6bf0a-34e9-4783-ac50-a2e294cd2722', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', '0caafe33-8257-4550-9e75-c8a828d5dbc6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f430afe-ae59-4e28-8a56-7bd911f9eac7', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '0caafe33-8257-4550-9e75-c8a828d5dbc6', '4330591d-61d5-4435-827a-c71b8328a700', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('08e80826-b815-426c-b59c-60e089174ff7', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, '0caafe33-8257-4550-9e75-c8a828d5dbc6', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('856b0f90-83dc-4f65-b862-b9e69c5d4608', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc3c5bd9-f54c-48c2-b912-4750f16d7485', '5add96a4-6fff-4fe2-8628-669d72252417', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '8e9971fb-270c-4897-ae63-50f457d9d0d5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dfcfbf97-4d74-47e5-8ff6-58d4d15c1961', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '7f74a25b-753a-4534-bd83-0db07cc6df2f', '05a6b2b6-58dc-4310-bcf1-d923168e2070', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4a3c7b3-c797-4956-8f17-b8234b3a8839', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7f74a25b-753a-4534-bd83-0db07cc6df2f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5018f5b5-e839-4c10-8272-5784e4c709fa', NULL, '7f74a25b-753a-4534-bd83-0db07cc6df2f', '3706fd53-e952-408a-aedd-93ec6d5129be', '7f74a25b-753a-4534-bd83-0db07cc6df2f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('64348744-47d9-4c5c-b851-a6eb71c1baad', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '64229d80-11aa-4910-9e0c-a211d9a5ca95', '9ddb3c98-f345-4f59-b067-7673d0e06673', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e4e4775-1354-4816-8818-b11d5abdb247', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '7f74a25b-753a-4534-bd83-0db07cc6df2f', '64229d80-11aa-4910-9e0c-a211d9a5ca95', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cff9d5f6-722e-4d0b-9631-53cb1078c8ab', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '64229d80-11aa-4910-9e0c-a211d9a5ca95', '98f81765-6d0e-4cb5-ab49-da912f668f5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8fcfba2-925f-41b3-a68d-9f5e282ee1d6', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'f4bed22e-44be-4ce4-9d95-5d9be630012a', '8a7273c3-5012-45bd-9d3f-72dd52163117', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e09df1b-489e-4f3a-add9-eecca44a15a7', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '93ec1b20-de2b-4af1-924f-047a7afa0276', 'f4bed22e-44be-4ce4-9d95-5d9be630012a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f50fdd37-fce2-49aa-bb36-bf91c808a68a', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, '98f81765-6d0e-4cb5-ab49-da912f668f5d', 'f4bed22e-44be-4ce4-9d95-5d9be630012a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1bc31c7c-b350-408c-9da4-811d0151766a', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'f4bed22e-44be-4ce4-9d95-5d9be630012a', '4330591d-61d5-4435-827a-c71b8328a700', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('497285ad-4b61-4108-89af-9341718f8570', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'f4bed22e-44be-4ce4-9d95-5d9be630012a', 'a7ff4f1c-7c33-43e0-b264-37339141f7f9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0750ea1a-1e29-498b-93cf-5b9bb974d6e3', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '98f81765-6d0e-4cb5-ab49-da912f668f5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e95f12e-e96e-48ea-acfc-6f5c81541152', '2185083d-3134-4b30-9dcb-674058feaac2', NULL, 'f32f51d5-3384-426e-a1c1-b5b6a263b647', '7f74a25b-753a-4534-bd83-0db07cc6df2f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91f4f621-48ec-4953-90a5-29e8c96da6d2', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '8772af22-67d6-4721-bc48-20f841f171e6', 'b31618ff-d749-4aa9-86b8-08eb2de9dcac', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ee5f23de-7bc0-486a-af2b-ce8ca809a8a7', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '8772af22-67d6-4721-bc48-20f841f171e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d46e72a-eae9-4ce6-81da-08bd21c11e09', NULL, '8772af22-67d6-4721-bc48-20f841f171e6', '3706fd53-e952-408a-aedd-93ec6d5129be', '8772af22-67d6-4721-bc48-20f841f171e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1783ac20-fc60-4574-a39b-8f8cabb6c84b', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '2899fdb3-40ae-4885-8d6b-7c0f07493ef8', '9b229b0a-e7b9-4fce-a134-c6f5199ce495', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('361867cb-91aa-4ee1-b95a-5e4c1abd3725', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '8772af22-67d6-4721-bc48-20f841f171e6', '2899fdb3-40ae-4885-8d6b-7c0f07493ef8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f578f1d-cf4c-404a-9d05-d39bb050b9dc', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '2899fdb3-40ae-4885-8d6b-7c0f07493ef8', 'f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4f9d60c-0e9a-4d31-8516-ad679c978264', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', '46ba8c49-58f7-441b-a7c0-290a9f490a1f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('935e8f3b-8569-4b85-8c4f-771a8b2c0deb', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0e15d6c-1f34-4ad9-99bb-dae9bea370e0', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, 'f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54344d9d-5501-48d4-b021-efb561be481a', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87faed89-6652-4ebd-a2c2-183e88046dab', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, 'ce3d8199-1a11-409c-8f0f-99a8344f1d1a', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce026d6a-238b-4663-8a6a-63b30be9a7e0', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ada012b-e322-4928-a6b4-c08620cceadb', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '8772af22-67d6-4721-bc48-20f841f171e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b7b8728-4071-4b75-b2a7-1ddd2e1bc468', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', '1be877de-9e9e-478b-855b-f4f0e6dfb842', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3715d066-6c22-4d60-a579-859b3340ffdc', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc4ccda5-cc3c-44a0-b079-795628799f81', NULL, 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', '3706fd53-e952-408a-aedd-93ec6d5129be', 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84b30d19-36de-4e02-bf21-3d3571be13c5', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'ec3bede7-5502-40df-bcaf-d2782c15ed50', '7a48ec29-24be-4d13-b788-264eb6fe6327', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('044cd5d9-8e21-4ae8-89a6-3308958528d3', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', 'ec3bede7-5502-40df-bcaf-d2782c15ed50', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d2e8f68d-5efb-4926-9ba3-6bbc84b41544', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'ec3bede7-5502-40df-bcaf-d2782c15ed50', '98c6c409-250f-4977-89da-f3c242f4be8b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a50a114-f2e1-4465-8c3d-df1fde31e0c4', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', '2fc229bc-25f7-407d-bdfc-e9469c17ca34', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc1d7bd9-a178-4b6f-8ddd-88f6a01afe4e', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b691f5d4-921f-4f4a-9e96-d4d962d90bb0', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, '98c6c409-250f-4977-89da-f3c242f4be8b', 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f9442aed-5ca1-4bcf-9552-cb5a35ecbd8d', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91e2ffc4-0265-42d1-ba63-f35be286e999', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, 'bf5371a6-e09c-4484-b57c-62aa6befdd0c', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b9fc0e8c-5f9f-4781-b485-379d44c53792', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '98c6c409-250f-4977-89da-f3c242f4be8b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a906bcfa-8745-41df-a97f-691c5a303f1a', '17ea3654-289d-4892-a837-3ddcaea2d7db', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9fbd26a-a4b0-4ad1-8c38-3281b7b4b992', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '6093331c-adb2-44e9-baac-ef073278751f', '46d04d79-5187-44ec-8f30-e6f823bc47e6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71a02cb0-4e2d-49ad-8ebc-e91cefaf35bd', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '6093331c-adb2-44e9-baac-ef073278751f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ca42285-8620-423d-833e-591a0c311ef9', NULL, '6093331c-adb2-44e9-baac-ef073278751f', '3706fd53-e952-408a-aedd-93ec6d5129be', '6093331c-adb2-44e9-baac-ef073278751f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('16fdb069-9d57-40a4-8993-547d5a39c03e', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, 'a0cf1824-6284-4031-980e-1df923d144e0', '3817a2b3-7031-4489-8c87-23babe729843', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b37eb949-13ea-455c-a7da-cb958219a181', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '6093331c-adb2-44e9-baac-ef073278751f', 'a0cf1824-6284-4031-980e-1df923d144e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45c9a1c0-a672-495c-a16c-37e8b92d4a7d', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, 'a0cf1824-6284-4031-980e-1df923d144e0', '0a93387c-682c-45d7-8a24-e538678f5cf4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6feec489-d95d-4a2f-8d34-76f11e5a0276', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', 'd241e268-fffd-4d21-9936-819ae9975f85', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d63c04ff-728e-4847-bfb3-b8780540a025', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31b7bb2a-4e2c-401a-9f51-160a53e4cc3c', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '0a93387c-682c-45d7-8a24-e538678f5cf4', '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e6714ed-44b6-4846-9158-030ab6e876eb', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', '5167487b-90ee-40b9-9c34-535b74b3186e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46508dd1-469a-45be-81bd-6346a9bbc63e', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d171cf8a-9426-4276-aedc-3e137be04705', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '0a93387c-682c-45d7-8a24-e538678f5cf4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92aca332-eddc-4be4-8811-e2a99cacf5fd', '60702c01-7285-4eea-a937-6019d6e3661d', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '6093331c-adb2-44e9-baac-ef073278751f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7afeee51-a00e-4f79-afcc-7be6f4b53665', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '86514079-9959-4ffe-9563-4be364780b39', '1bc97522-8adf-4246-bb4f-9a870002fbd4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8a007e81-834c-46cd-a09a-35e7992b74b4', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '86514079-9959-4ffe-9563-4be364780b39', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f5d16e1-aca2-4017-86f9-0ec97c86886f', NULL, '86514079-9959-4ffe-9563-4be364780b39', '3706fd53-e952-408a-aedd-93ec6d5129be', '86514079-9959-4ffe-9563-4be364780b39', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8fb309bc-79ef-4085-b25e-58e7b0827fbf', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '94fb08b4-d5d1-43a5-a395-b1e261a46e0b', '7ee9690d-ebff-4afb-95db-fad387eb4255', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a98c8ed6-d9d3-4420-9da7-900372a76869', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '86514079-9959-4ffe-9563-4be364780b39', '94fb08b4-d5d1-43a5-a395-b1e261a46e0b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8b3f481-4402-4ea0-850e-8a52ab5e8703', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '94fb08b4-d5d1-43a5-a395-b1e261a46e0b', 'd6e4ad57-a163-4508-a694-99a87eeeb986', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7987aafb-1726-4434-b942-f3e03f2944a0', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', '2d00deb0-bb73-447f-b867-71be2d2dbfda', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60dcb967-6300-4985-adcb-5a49474e2f7b', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c423d783-e419-49f1-8804-296f71d6c254', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, 'd6e4ad57-a163-4508-a694-99a87eeeb986', '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('47c7c631-f6bb-40ad-8b2b-05274dd958f0', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf19153e-8a52-4339-ae59-971174f639f2', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c9bc9ea4-66ff-43f0-86b1-4f6f8fd31e5c', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'd6e4ad57-a163-4508-a694-99a87eeeb986', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbe4f41e-6ecd-4688-b44a-8a94a9badd9b', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '86514079-9959-4ffe-9563-4be364780b39', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e743b05d-4d77-4167-be21-b86213521704', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '5eb167f7-80c1-4c71-9c63-b9d6994ec251', '3a64d35c-f155-4420-a87f-ddd771f7e500', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('48e818a3-167f-4dc8-8aff-c22b63aba62b', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '5eb167f7-80c1-4c71-9c63-b9d6994ec251', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92b37cad-3482-4ece-8be4-dd7f5bc524ab', NULL, '5eb167f7-80c1-4c71-9c63-b9d6994ec251', '3706fd53-e952-408a-aedd-93ec6d5129be', '5eb167f7-80c1-4c71-9c63-b9d6994ec251', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0021ca7-6132-406c-ab5d-e981e394586e', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '44c0b607-7d0a-4701-9570-8d339189020f', '238a91bb-2186-41f0-a97b-6e4c62a2c6a8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d7f87c0-db06-4a82-a3d6-d64698f34c55', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '5eb167f7-80c1-4c71-9c63-b9d6994ec251', '44c0b607-7d0a-4701-9570-8d339189020f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6100fa03-8dc5-4f16-85b6-65546e1bef7a', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '44c0b607-7d0a-4701-9570-8d339189020f', '91f36783-f411-4708-a88e-b30fb94d849a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf8cb48d-1d87-4b11-b2d1-df908149d755', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '52c74fa2-27f4-4046-8712-759b3f47e48a', '0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7fd305af-57be-43a7-a732-f26418a1ca53', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '52c74fa2-27f4-4046-8712-759b3f47e48a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57536f03-fcb5-44ff-a589-e98cd3df123b', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '91f36783-f411-4708-a88e-b30fb94d849a', '52c74fa2-27f4-4046-8712-759b3f47e48a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ed30d78-487b-468d-aa73-e3bb5e4b5d17', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '52c74fa2-27f4-4046-8712-759b3f47e48a', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72bdf079-cbb7-4a67-8666-4583db5d3cca', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '52c74fa2-27f4-4046-8712-759b3f47e48a', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('805468da-74ec-4b41-93c6-6bee7da7cd0b', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '91f36783-f411-4708-a88e-b30fb94d849a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0e8d9f5-6d48-4cef-9ef7-0730917a3d14', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '5eb167f7-80c1-4c71-9c63-b9d6994ec251', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bed9a100-fd78-4b56-bfc8-2f484b955947', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', '8b30e218-5562-41af-82ce-bf3f633d1f3d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('213e0b7e-5f3e-4e42-bdf6-30a0ac699b28', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80161fac-c749-4b08-8c84-0ebafd2d3a98', NULL, '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', '3706fd53-e952-408a-aedd-93ec6d5129be', '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b01e33b6-b72e-4ff8-bce3-5e4fee5d954d', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '553adc79-d3f6-4b92-88d3-8c9328e5a616', '31a9442f-92c2-4f7d-9895-a7095ee96952', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('166f5922-7578-4ecb-b9ac-b89136e7ef33', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', '553adc79-d3f6-4b92-88d3-8c9328e5a616', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4290306a-ac53-43a6-84a2-c234e41835a0', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '553adc79-d3f6-4b92-88d3-8c9328e5a616', '832cde07-7e08-41a0-84e0-201f12393e15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34d62e8e-b3d7-468b-a291-fc969c3b9cb0', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '4e1db019-7622-4ba1-aec7-4046419a7b28', 'bacb714c-ac84-4f51-b8e3-fc74b27e1388', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d196d344-99a6-4eda-8a2c-9a589cd035dd', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '4e1db019-7622-4ba1-aec7-4046419a7b28', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1938ede4-bf20-4e00-af7c-e2824876b1c8', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '832cde07-7e08-41a0-84e0-201f12393e15', '4e1db019-7622-4ba1-aec7-4046419a7b28', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5d6d973a-91c3-446a-8265-c561784b9469', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '4e1db019-7622-4ba1-aec7-4046419a7b28', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e37e4ee5-9e16-48d3-8f4f-a830266ea4f8', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '4e1db019-7622-4ba1-aec7-4046419a7b28', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aabbd5f7-d31b-41e3-a111-736caf90ba92', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '832cde07-7e08-41a0-84e0-201f12393e15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('13193ab0-7409-4371-9d99-43fc3d4b3c38', '8363ec62-6d90-4dd9-940b-6073b3246c39', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '2a60ab65-5d4d-49bf-b184-3b1ef563bd62', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87762c8c-7d03-493c-a236-12373e0eee27', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, '4e4469ab-f0e8-4927-a374-33384a97811f', '4f6ce070-55e4-4d2c-9429-5d4b3fa25077', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99fc01f9-b91b-4df6-a9eb-35c880f38117', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '4e4469ab-f0e8-4927-a374-33384a97811f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd064544-7017-4079-954e-2557cb22467c', NULL, '4e4469ab-f0e8-4927-a374-33384a97811f', '3706fd53-e952-408a-aedd-93ec6d5129be', '4e4469ab-f0e8-4927-a374-33384a97811f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c12808fb-f852-4149-8745-207250682761', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', '274595e4-31af-488a-997e-688d10886a47', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b19b89e1-320b-4676-b2e1-878d02e24a0c', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, '4e4469ab-f0e8-4927-a374-33384a97811f', 'f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96fce452-6a70-41b3-b800-a0a9aa31461a', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', 'c110be44-7852-4eaa-b52a-c87a93de1076', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07568fe6-b570-4eb9-b88e-9eeab35ca495', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', '596f965f-b224-495b-9f5f-5150af69979f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af0c2637-5a4b-46ee-a5d1-dc6d671266bb', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6de23849-34f4-4c8c-b947-9a8e40f7c7a7', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'c110be44-7852-4eaa-b52a-c87a93de1076', 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('470a225c-108e-4d1d-8ea2-483a412b9bbf', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cd11068c-9a45-48e7-808e-fb0dd02f45b9', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, 'b9ad5d7e-cf8d-4265-9271-2e32128b69d2', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dff92d19-dc34-4296-a0d7-91b0d9631d30', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'c110be44-7852-4eaa-b52a-c87a93de1076', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec2adc5b-1930-45b7-86c7-2accc5f02e6a', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '4e4469ab-f0e8-4927-a374-33384a97811f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35ab9b66-1ade-4b49-bb31-ebe516a34c67', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', 'e77c42c3-559a-44af-90cd-304eab1646a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('750eda48-2032-4eb7-842e-f212a05cb566', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9a2a51d9-3e9a-4524-9093-b622c3183afc', NULL, 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', '3706fd53-e952-408a-aedd-93ec6d5129be', 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('290221cd-e520-4a1c-8119-df58ec4dfae0', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, 'ba6c1883-e891-4628-bea0-78b9787b1403', '0ab92d43-0a98-4d77-9f65-44d74acfe5b8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('92df1b96-88c6-436f-9a5d-9590b4e1a0b1', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', 'ba6c1883-e891-4628-bea0-78b9787b1403', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6fef9941-52e9-4692-aa2b-e986773bacef', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, 'ba6c1883-e891-4628-bea0-78b9787b1403', '3877cf69-dfcc-4ff3-83a1-65ef1471f919', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc3ccd82-fa75-402e-a188-337c8f44c64d', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '4d8fb33e-f5de-4716-a301-a753f59c5aed', 'f6542fe1-149a-4244-b812-18ad82ff555f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('47dc5cdb-3e87-4e5d-950c-16ba19152b64', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '4d8fb33e-f5de-4716-a301-a753f59c5aed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b88a2bef-44ca-479c-8eef-704a5e217691', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '3877cf69-dfcc-4ff3-83a1-65ef1471f919', '4d8fb33e-f5de-4716-a301-a753f59c5aed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0aa8661-c85f-4de9-8ca1-cf86c25d15f7', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '4d8fb33e-f5de-4716-a301-a753f59c5aed', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2dc93f8b-9342-4f0c-8031-9340353d364d', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '4d8fb33e-f5de-4716-a301-a753f59c5aed', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('410cf3aa-8db7-4683-9fec-069ab6073afd', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '3877cf69-dfcc-4ff3-83a1-65ef1471f919', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d4ee96b0-fd17-4bbd-b1e8-98f9ce015c9e', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('869b3806-564d-4c47-a7ca-bb7285365647', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '80da5984-53fc-4439-a4b2-2aa030416ddf', '2715a520-f38d-486b-9053-055f6289c966', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('774a242d-e8b0-416f-9c72-a68ffebe0315', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '80da5984-53fc-4439-a4b2-2aa030416ddf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45130952-0637-4191-88e6-9398918afd0d', NULL, '80da5984-53fc-4439-a4b2-2aa030416ddf', '3706fd53-e952-408a-aedd-93ec6d5129be', '80da5984-53fc-4439-a4b2-2aa030416ddf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('face9f8a-f956-4f10-a47c-0f7af36fda49', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', '1a09398f-873b-4c9a-9392-c129ccf0d636', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('22d3b5e6-c4d4-45cd-99da-8008b2040278', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '80da5984-53fc-4439-a4b2-2aa030416ddf', '8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0dd85e2-83d4-4f03-b24a-db9db12cf607', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', '46a6fc92-c738-40d2-be20-7762997fdd21', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dac85b6b-4dd2-42b2-a151-b8dfce5b2bd5', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', '44074e80-79cc-4965-9525-29ed20419544', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3878bbdd-11c5-47b0-9e20-c70896c918cb', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b63a093-30f1-4628-80e9-a7baf79a4ebc', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '46a6fc92-c738-40d2-be20-7762997fdd21', '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd33e269-1be7-4616-b094-5e0ae35a65a7', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('26b6187d-24dd-4f65-b5a4-a6d8095a4c16', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c9e8265f-376e-454c-a97b-aff7a2e3cf3d', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '46a6fc92-c738-40d2-be20-7762997fdd21', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('313114d1-83cc-4289-959b-e5068b98e0ea', 'a13af5de-4315-46dd-ae08-427ea72b35a0', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '80da5984-53fc-4439-a4b2-2aa030416ddf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d114921e-f2b3-4530-aeac-c318b0456251', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '201bce64-1c53-4047-bfd3-1892e4bb545f', 'ab127630-3367-4898-b0d7-f3ef0f6fb7cf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('549a494a-cb4c-4b9e-ae81-c386e0cd0ab1', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '201bce64-1c53-4047-bfd3-1892e4bb545f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c48c846e-f9c3-43c7-adea-e54cddfe9f2a', NULL, '201bce64-1c53-4047-bfd3-1892e4bb545f', '3706fd53-e952-408a-aedd-93ec6d5129be', '201bce64-1c53-4047-bfd3-1892e4bb545f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01aa4b8c-b7d7-446b-80a8-d2ed6eaeb321', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '5927cb7b-54a9-429d-a229-d3ab87cccecb', '53f0c6bb-a76b-4f8d-81f9-a476c9106436', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd21baf1-92df-4d7b-9b61-ac7870a870a5', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '201bce64-1c53-4047-bfd3-1892e4bb545f', '5927cb7b-54a9-429d-a229-d3ab87cccecb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db27b1dc-0c50-4cf4-a029-1496adfdbcd0', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '5927cb7b-54a9-429d-a229-d3ab87cccecb', 'b2c4c782-4afe-4518-8c92-0de8c70b70b2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d9dc0aac-67e0-4844-a34f-5f5485f9fb49', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '5a04d74f-230c-451d-ad05-3f08d0e95b0b', '88d7ad95-2568-4cfe-8f1c-e09ac9fe8983', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b50edc0-4338-44b7-8053-be59f47bf734', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '4241127c-1c6d-41b4-9350-3aa73785f6c5', '5a04d74f-230c-451d-ad05-3f08d0e95b0b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('31f4ead0-bcc1-4092-a334-0252cb746d85', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, 'b2c4c782-4afe-4518-8c92-0de8c70b70b2', '5a04d74f-230c-451d-ad05-3f08d0e95b0b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bca29c27-e651-4eaa-823b-e6f257666696', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '5a04d74f-230c-451d-ad05-3f08d0e95b0b', '206fcdf2-c22e-480f-9029-42183cc2990e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('03d88972-e76d-48da-8474-86285c42fb0a', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '5a04d74f-230c-451d-ad05-3f08d0e95b0b', 'bdeffe17-405f-4ad0-8131-82728ea0e382', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('020a2ccd-31a8-4a54-8dbe-2acbd6bac42f', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', 'b2c4c782-4afe-4518-8c92-0de8c70b70b2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01125877-8fa2-42f1-a7df-a0dc6e7a6789', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', NULL, '1373e547-4804-4c8d-9014-ce51c65f3a06', '201bce64-1c53-4047-bfd3-1892e4bb545f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ea51bc6-c651-4d38-bf2a-ab9686d376ca', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, '32326817-2750-452c-8898-bcb42c36d85f', 'dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('282e731f-a9ff-4f44-9c93-431614440eb3', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '32326817-2750-452c-8898-bcb42c36d85f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ed063cd-8a99-4619-913e-961b3c5d538b', NULL, '32326817-2750-452c-8898-bcb42c36d85f', '3706fd53-e952-408a-aedd-93ec6d5129be', '32326817-2750-452c-8898-bcb42c36d85f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('696f7628-61c5-4406-820d-e85d8774e048', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'f7c2a405-965c-48a4-aecb-4312952d072e', '138ab6b6-1b04-4565-bbcf-db30047e0050', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('803c73ee-d210-430d-939d-47e2ec8b4bf0', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, '32326817-2750-452c-8898-bcb42c36d85f', 'f7c2a405-965c-48a4-aecb-4312952d072e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd56533a-5068-4349-837b-7847a26884b0', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'f7c2a405-965c-48a4-aecb-4312952d072e', 'a67d167a-e0da-4fe0-b2a1-cc320687f44a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cc35556d-69d7-40f7-9d44-103a60e2d871', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'ab46de32-5a21-4029-b5c2-517f6d6002c3', 'beec505c-c47c-46ff-bdb5-7fe04a5595c6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41500a4e-22af-47f9-a4f4-8af1b28c4c33', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', 'ab46de32-5a21-4029-b5c2-517f6d6002c3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6d9a0688-78d3-499e-89cb-3cec3597c28b', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'a67d167a-e0da-4fe0-b2a1-cc320687f44a', 'ab46de32-5a21-4029-b5c2-517f6d6002c3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d444fb7-5554-4721-ba46-9b3d7fa1255b', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'ab46de32-5a21-4029-b5c2-517f6d6002c3', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5b99af89-725d-472e-996f-8a0cabbddef1', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'ab46de32-5a21-4029-b5c2-517f6d6002c3', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3376d95-4f15-4c1d-94a5-1cb9ecaa819d', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, 'ab46de32-5a21-4029-b5c2-517f6d6002c3', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d21c8c1e-b2f3-4aa6-8e1d-15fdbaaf521e', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', 'a67d167a-e0da-4fe0-b2a1-cc320687f44a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1ab8227-6ba0-4a77-a029-625d58c33d7e', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', '32326817-2750-452c-8898-bcb42c36d85f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('711505a2-74a7-46e5-bcf7-f78f7abe07c2', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, 'd5048fcc-cb35-4f37-bfdc-611473026b50', 'ebf101f3-6206-4cd7-a5df-276dcec51cba', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6400872d-bfea-4616-92c5-3a5b9e49b568', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'd5048fcc-cb35-4f37-bfdc-611473026b50', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1b459f37-35d9-461e-b10f-619a69fd5d1f', NULL, 'd5048fcc-cb35-4f37-bfdc-611473026b50', '3706fd53-e952-408a-aedd-93ec6d5129be', 'd5048fcc-cb35-4f37-bfdc-611473026b50', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2bdd1162-d22a-41f1-8d62-76d00859b2dd', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', '31faa035-267f-46d2-b9b1-af688c393431', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1069eeff-cd63-4704-9fb0-5d90f52e2d1f', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, 'd5048fcc-cb35-4f37-bfdc-611473026b50', '2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b6a0e6c-a348-4012-afcd-31559085775a', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', '13854f26-4d9d-411f-a6a8-d1cf8c267a32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3fa17011-0e90-454f-943c-f287b530fb2a', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '44900785-555c-468f-9aa1-277c191fc3a6', '2b33fc20-f3b2-474c-9d9e-40be8240e900', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79f93e0c-49f6-4906-a2b8-d95b28c23d9f', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', '44900785-555c-468f-9aa1-277c191fc3a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b98cf31-9486-4214-a564-1f60b7a71abb', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '13854f26-4d9d-411f-a6a8-d1cf8c267a32', '44900785-555c-468f-9aa1-277c191fc3a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e524f54-2607-45cd-a168-6e9d84211128', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '44900785-555c-468f-9aa1-277c191fc3a6', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('05854007-d696-4479-a4fe-abece95d2523', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '44900785-555c-468f-9aa1-277c191fc3a6', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a23ef302-960c-4bfb-885e-116acbddeaba', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '44900785-555c-468f-9aa1-277c191fc3a6', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ba50a550-d607-4a56-94a9-e41246052b1e', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '13854f26-4d9d-411f-a6a8-d1cf8c267a32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc55d2f6-b265-44bb-a98e-b7c3592e3291', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'd5048fcc-cb35-4f37-bfdc-611473026b50', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbe1cefb-01f0-4b91-8cb0-6e2c52397406', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'a24b3dcc-92b3-475f-8741-4399f604e189', '36c7d299-20b9-47b4-a2ed-bd7031ad3dd1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b644db95-825b-45ad-9154-7c6eb6ff1acd', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'a24b3dcc-92b3-475f-8741-4399f604e189', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4755567d-e545-4f6d-b64a-963637a12b87', NULL, 'a24b3dcc-92b3-475f-8741-4399f604e189', '3706fd53-e952-408a-aedd-93ec6d5129be', 'a24b3dcc-92b3-475f-8741-4399f604e189', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('450d6656-4d24-44d4-b9ce-7423e413dbfb', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, '1d6da0f9-048c-4b62-bedd-5f4d4d35b284', '95ad7ff4-f585-48c5-945a-1a87c3bb2229', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6479f241-dfad-499f-bc9e-45ccfa2f19eb', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'a24b3dcc-92b3-475f-8741-4399f604e189', '1d6da0f9-048c-4b62-bedd-5f4d4d35b284', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76b61779-3f11-44af-aab5-48fa969c9a5b', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, '1d6da0f9-048c-4b62-bedd-5f4d4d35b284', '33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f3c72143-eeca-460a-a7cc-6f9220c810af', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'eebc57f5-8fbd-4665-9328-78b0a6600478', '1be5be35-a23a-4f02-967b-f4a7237f482a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a16d0761-a5ec-4dcb-8921-41d145e326dd', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', 'eebc57f5-8fbd-4665-9328-78b0a6600478', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3fe5ffb0-c3a5-45b6-9f8f-25c200062b8d', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, '33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', 'eebc57f5-8fbd-4665-9328-78b0a6600478', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fbb0d745-15bc-4e97-a72d-383ff3ce3b91', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'eebc57f5-8fbd-4665-9328-78b0a6600478', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5205f110-721f-4e35-a47b-94b36cf3c7f2', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'eebc57f5-8fbd-4665-9328-78b0a6600478', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('97c8d585-7e82-439a-b062-a010baf72200', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, 'eebc57f5-8fbd-4665-9328-78b0a6600478', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b9e5987-ef87-43a0-ab02-aa74a30a81a8', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b66437d8-25cc-48f6-9fed-56ebb854d5dd', '18124f89-8ce6-4813-8efe-3ed47b7eb453', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'a24b3dcc-92b3-475f-8741-4399f604e189', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f47d3670-a996-43b9-ac56-bc64167bf8e9', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, 'cf88430b-e0a1-431e-9912-098933e6771c', 'eb9181ce-7b72-4ed9-93aa-49eb66db32eb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf388cd5-754d-4a67-a900-74c8ae8d0763', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'cf88430b-e0a1-431e-9912-098933e6771c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04ee36e9-7e18-455b-bec1-f850ccc4fa03', NULL, 'cf88430b-e0a1-431e-9912-098933e6771c', '3706fd53-e952-408a-aedd-93ec6d5129be', 'cf88430b-e0a1-431e-9912-098933e6771c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b8521069-8984-42f5-ad51-92f0bf13da89', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', 'f9768956-c483-4cf1-852d-b6767a8d96cc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('832b6b8c-1734-43e9-b1a9-15b3fbf6bf25', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, 'cf88430b-e0a1-431e-9912-098933e6771c', '5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('86891920-aabe-4630-a89e-4bce541e351c', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', '12a30425-8c0e-4e0d-b9ae-da96e2776217', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df32434f-3f53-4421-9a54-91a734df8b09', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '917b274c-a8da-403c-9ac2-5be884f4a47f', 'a37b1549-de63-4830-81ab-816dbea5ddf9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('da816bce-54d8-4bfd-be4a-107ff0e28ae9', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, 'd3aa37e9-88d7-4099-8fa8-0bb25f6db328', '917b274c-a8da-403c-9ac2-5be884f4a47f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b905937-6603-4649-b2fc-f3c294a5506e', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '12a30425-8c0e-4e0d-b9ae-da96e2776217', '917b274c-a8da-403c-9ac2-5be884f4a47f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('601bf4bf-ed9e-4d04-bfcc-f50e7d9720fc', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '917b274c-a8da-403c-9ac2-5be884f4a47f', '3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d18a77de-532d-44d3-8759-87b41db913e9', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '917b274c-a8da-403c-9ac2-5be884f4a47f', 'e97003a9-9162-4142-8d08-814e6c8fabd9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8629ae4f-a025-4264-a2ad-24cdb50f24fd', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '917b274c-a8da-403c-9ac2-5be884f4a47f', '96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec402129-b125-44df-8dd1-919c43709a99', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '957da54d-43eb-45d5-a3c4-34976d178bf3', '12a30425-8c0e-4e0d-b9ae-da96e2776217', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b986a66d-e06f-4c7c-a71b-b8ba4dd9ffd8', 'cbda6432-b849-4787-84ab-88e680dbfa72', NULL, '95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'cf88430b-e0a1-431e-9912-098933e6771c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34b11791-5906-4753-b722-7fa782ef8ef2', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '7bddc04e-775b-48f6-acb1-c1c9e638f836', '283a7da7-7cf5-489b-bd81-a370cd694f3a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f5db57a6-93dd-4658-b13b-827f28d9ef59', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7bddc04e-775b-48f6-acb1-c1c9e638f836', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75685f6f-2403-40ef-b08b-1625bd699a13', NULL, '7bddc04e-775b-48f6-acb1-c1c9e638f836', '3706fd53-e952-408a-aedd-93ec6d5129be', '7bddc04e-775b-48f6-acb1-c1c9e638f836', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d34d2490-26a3-40dd-8417-faec7508092e', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'd8668032-3755-4ef6-8ea7-7c34e0109e25', 'fe2d0171-effb-42e9-ad87-d877454fa221', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75f5c8b1-9e1c-4dbf-85c8-c119cfe29326', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '7bddc04e-775b-48f6-acb1-c1c9e638f836', 'd8668032-3755-4ef6-8ea7-7c34e0109e25', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f93454ce-5594-4cc7-a797-35fc38e745a3', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'd8668032-3755-4ef6-8ea7-7c34e0109e25', '9dc88526-27f4-4c56-aef0-740429a8c457', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('541ddc9b-d0eb-4f83-a647-f4047f2135db', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'c4f3311d-618c-4e1b-9e0e-925465a5f932', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb7d467d-75bb-443f-897b-124fa953f729', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a0391c4f-dff7-4778-a463-002d9e935bbd', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '9dc88526-27f4-4c56-aef0-740429a8c457', '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4652cf4f-b896-4c22-bea8-a0ce0f862fc0', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'ed0f7762-a094-4a88-abde-8472da33bcfb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c8c5f426-06e7-4ad2-a82b-048f51ac1beb', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b043c952-cab2-4c4c-b6b6-668548bac175', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'b29939d1-67c0-4527-88fd-41812023f402', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e109da8-4793-473a-9a19-ec9a228f9eea', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'd8668032-3755-4ef6-8ea7-7c34e0109e25', 'a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6d9e156-e05a-4104-8be8-16d50b6450f2', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '9dc88526-27f4-4c56-aef0-740429a8c457', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b381a17d-1961-4aec-9ce1-b475906f1ac0', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '7bddc04e-775b-48f6-acb1-c1c9e638f836', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c7f8f52-49c5-4f65-b0e9-2620f0c113bc', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, 'ec817efa-d1de-4264-91e4-608b736b59fd', 'f276aa53-a904-46ec-863b-18e593fd2c3e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c2534fb6-fa15-41a5-9d0c-8445406cdd70', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'ec817efa-d1de-4264-91e4-608b736b59fd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e22b72b0-fcf6-4b88-9166-2d94b2496746', NULL, 'ec817efa-d1de-4264-91e4-608b736b59fd', '3706fd53-e952-408a-aedd-93ec6d5129be', 'ec817efa-d1de-4264-91e4-608b736b59fd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b641e4cf-6ea1-474e-b301-1f468f0373ba', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '0fae86ec-61fc-4f23-9713-a51f3f49505d', '17df9716-97f3-4970-813b-d144044d718f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f61ec4c4-d206-4ee7-8722-062ba7b07b79', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, 'ec817efa-d1de-4264-91e4-608b736b59fd', '0fae86ec-61fc-4f23-9713-a51f3f49505d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d629a3a2-6161-48ce-a520-646f49c89e15', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '0fae86ec-61fc-4f23-9713-a51f3f49505d', '57070af3-92a3-4285-b6e8-8644989f8fce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4a55cc2e-66f0-4d08-aff1-67405a9ae037', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '087d73fd-3c94-4735-b59a-189efda4a80e', '82813289-dc57-4c85-8c73-8e7f71966bbc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c2ddc22-9324-4687-bd2c-6b59c22dc953', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', '087d73fd-3c94-4735-b59a-189efda4a80e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf80cf56-1b0d-4a25-8b71-a86863d888de', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '57070af3-92a3-4285-b6e8-8644989f8fce', '087d73fd-3c94-4735-b59a-189efda4a80e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('afda5e1d-620c-4bff-a0cd-f321fb6b8580', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '087d73fd-3c94-4735-b59a-189efda4a80e', 'ed0f7762-a094-4a88-abde-8472da33bcfb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a9a302d7-c9e3-4025-8c2a-a0007c270277', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '087d73fd-3c94-4735-b59a-189efda4a80e', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1bd5d7d2-6de0-4b56-b53a-86b113907e3c', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '087d73fd-3c94-4735-b59a-189efda4a80e', 'b29939d1-67c0-4527-88fd-41812023f402', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c75fd2c-8206-4872-8c63-78da5890be1b', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '57070af3-92a3-4285-b6e8-8644989f8fce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fea36da2-ee0d-4001-8c9f-e7e17f3654c3', '4761d35a-2de3-4415-a91d-f53d15162aea', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'ec817efa-d1de-4264-91e4-608b736b59fd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0a6c8d17-c23e-4caa-8966-9911542ccd0f', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '6d7c3c90-cec2-472a-b143-3f730bb92d11', '54ab8484-47e5-432c-afd4-7791561e09a7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('688a5723-8b60-4795-8993-7879f8fbe8f2', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '6d7c3c90-cec2-472a-b143-3f730bb92d11', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('459eda2a-d5c1-4328-aee8-952a50b2d3a1', NULL, '6d7c3c90-cec2-472a-b143-3f730bb92d11', '3706fd53-e952-408a-aedd-93ec6d5129be', '6d7c3c90-cec2-472a-b143-3f730bb92d11', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9d5a0b69-d7af-41a4-9d64-847c56a45de8', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '0e9f7adf-90bd-4ec9-bf40-82963cd51410', '846820c5-9147-4f79-9b06-62110498d191', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe8a68e5-e01e-4402-b135-5b94ce2f6d89', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '6d7c3c90-cec2-472a-b143-3f730bb92d11', '0e9f7adf-90bd-4ec9-bf40-82963cd51410', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d3743c67-560e-4f22-9090-32a0c779b346', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '0e9f7adf-90bd-4ec9-bf40-82963cd51410', '54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84b5def8-230d-4b1d-b2f2-2789341c1eaf', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'd5007585-6703-493f-a24d-f99f4fb1b09c', '7cfdc7ad-f7bc-42d1-9b72-ce871adf665b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8a643ea9-487d-4bc5-bee0-394c5c62d309', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', 'd5007585-6703-493f-a24d-f99f4fb1b09c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbf2917f-3aa0-405f-b6bb-2d0e7f080cbb', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', 'd5007585-6703-493f-a24d-f99f4fb1b09c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0cdc2ac-fe93-44f2-8f07-72f307737241', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'd5007585-6703-493f-a24d-f99f4fb1b09c', 'ed0f7762-a094-4a88-abde-8472da33bcfb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34c5eff9-432f-4da6-af1e-9944aa43a831', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'd5007585-6703-493f-a24d-f99f4fb1b09c', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('493c6d1d-d431-4d2f-8dc1-560810ef9f70', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'd5007585-6703-493f-a24d-f99f4fb1b09c', 'b29939d1-67c0-4527-88fd-41812023f402', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fed98897-4115-4492-ba35-be1025525650', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8db51064-73b9-4a5c-8051-5ab121cd52c5', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '6d7c3c90-cec2-472a-b143-3f730bb92d11', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e2c18c6-89af-4344-b9f9-58b2a860eff9', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '330cd455-c002-4416-8074-feb6c6b4849d', 'b0f7eade-7384-445b-9f6a-76f19007d9b7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58f9a354-5b5f-4740-9314-533ce8e92515', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '330cd455-c002-4416-8074-feb6c6b4849d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d621455c-aa20-4281-aa4f-d06346979700', NULL, '330cd455-c002-4416-8074-feb6c6b4849d', '3706fd53-e952-408a-aedd-93ec6d5129be', '330cd455-c002-4416-8074-feb6c6b4849d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d4007d15-842b-4bb6-8424-02102c1b6610', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, 'e2eddb4e-842b-450a-a9a4-54a3875b33c5', '4a4b0f7b-8506-4ed5-be19-7c0baa476c45', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e78f06d6-b048-4d2e-b189-c90c3081af1c', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '330cd455-c002-4416-8074-feb6c6b4849d', 'e2eddb4e-842b-450a-a9a4-54a3875b33c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('522ba310-4163-4c47-8afa-f69784d4545e', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, 'e2eddb4e-842b-450a-a9a4-54a3875b33c5', '256a2cac-4d33-46c0-833c-fd12d91af365', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('279aebd0-8e1d-4322-86c4-1b19dfef89e1', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', '815ba931-a309-42fc-8865-b077937d4bd5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dfff69c7-ce5b-4b67-a425-2b649e7cec7c', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, 'ba7a634b-c352-418c-a8c0-58918f32f8a7', '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('05bef46b-e96c-485d-a6b9-9d80d682da9a', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '256a2cac-4d33-46c0-833c-fd12d91af365', '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54ababde-0fa4-4e1b-973b-ac63cc1f610a', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', 'ed0f7762-a094-4a88-abde-8472da33bcfb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67a037de-9171-4712-af63-3d455334e3a6', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7527a2d-767e-4282-ace1-499ec24c6346', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', 'b29939d1-67c0-4527-88fd-41812023f402', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7de75775-7af6-43cd-830c-13e8789fd9f2', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, '2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '256a2cac-4d33-46c0-833c-fd12d91af365', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d30e86da-adad-4745-8a48-e5be9b0f9d76', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '330cd455-c002-4416-8074-feb6c6b4849d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc0c3692-931f-47cd-a978-6b047013867e', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '34bbf849-5720-4440-bf30-378dd9748533', 'd7dd1750-2c6a-48b1-bfa7-ad708c3df73a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71496d88-e1c8-4873-af0c-2844c46002e0', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '34bbf849-5720-4440-bf30-378dd9748533', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2a50664-25d9-46ab-837d-becb88e61928', NULL, '34bbf849-5720-4440-bf30-378dd9748533', '3706fd53-e952-408a-aedd-93ec6d5129be', '34bbf849-5720-4440-bf30-378dd9748533', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d029e4df-1abc-450f-992c-f533359f5e8e', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '4d252783-00e1-4fec-a661-ec1154d98a2c', '20af1fdc-7bf2-4f7c-941d-5294057a2148', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7db91226-ca55-49e2-9092-61070d586bc7', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '34bbf849-5720-4440-bf30-378dd9748533', '4d252783-00e1-4fec-a661-ec1154d98a2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('482c8a90-0346-46dc-967e-bf83a0073a4e', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '4d252783-00e1-4fec-a661-ec1154d98a2c', '830e7013-1330-4974-925e-20e142b148fb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8af3c1cf-a2be-4bef-855f-795538afc814', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', 'd0bcff97-900b-4660-9245-993dee9485eb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('41ab30df-d7a0-45d4-9c5c-2ddbc5175fa8', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd0ab251-a266-4d40-8d7a-c313d6b3f980', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '830e7013-1330-4974-925e-20e142b148fb', '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c373196d-e4d9-4972-8993-cb5c1167ec97', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', '67b756a8-aff9-439d-8ac8-b8965b63ac32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('51279ced-5bad-4531-86c3-c589a640dd86', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b72c665-ba86-405a-8ab6-e9afd3404b9b', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '85b69ad4-c6cb-4ef4-8d96-94abd80c9352', '814e38c8-c053-4c27-9487-997cf318a550', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d822aedb-9ebd-4813-b0f2-f21ba2abfef6', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', '830e7013-1330-4974-925e-20e142b148fb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c65c112f-6b3e-49e4-adac-342db3aaec5e', '4dbf555d-3375-442e-a87d-815d1492af55', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '34bbf849-5720-4440-bf30-378dd9748533', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3a970d4-3ece-4205-8b85-e5e409b25f1f', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', '36e09c9c-05d3-46fd-ba19-91e3dbb1ded0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('010c767c-b0b7-4368-974d-e840e9af432e', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68f695bb-bd44-4a4a-8c4c-b2ee85778c8b', NULL, '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', '3706fd53-e952-408a-aedd-93ec6d5129be', '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('19026f01-4f3d-4272-9bf5-1f3aa61ee0d1', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'aab86d81-273f-48e2-91ec-8379a4097dea', 'ae3d0091-aa98-44a3-adbb-2552b6179e97', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f429870b-65ce-4de9-949e-cef531e9b9e6', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', 'aab86d81-273f-48e2-91ec-8379a4097dea', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25adbcc6-4ec3-4740-8bc4-95a703509008', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'aab86d81-273f-48e2-91ec-8379a4097dea', 'e16ceaa4-25a8-449a-9d9c-59a87fdc228a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('04c69432-1659-4037-99db-a715d90d4a31', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '5885b073-ed04-4ac7-9f4b-664507df0de1', '7ac91a3d-9409-471f-b6f6-8f50ea03a292', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('930a02fa-7b02-489e-a327-6b748881ab5b', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', '5885b073-ed04-4ac7-9f4b-664507df0de1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1337009b-a5a6-46a4-8fa1-04094d858e72', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'e16ceaa4-25a8-449a-9d9c-59a87fdc228a', '5885b073-ed04-4ac7-9f4b-664507df0de1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0ceaf7d3-822e-497e-a790-7a876018d747', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '5885b073-ed04-4ac7-9f4b-664507df0de1', '67b756a8-aff9-439d-8ac8-b8965b63ac32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e465d748-4151-4c5a-9786-7a2abac4a32f', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '5885b073-ed04-4ac7-9f4b-664507df0de1', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('28f51aaa-a34d-472c-b28b-a67e469b585d', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '5885b073-ed04-4ac7-9f4b-664507df0de1', '814e38c8-c053-4c27-9487-997cf318a550', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd90ce06-c899-4c68-8bea-367c8d5d20be', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', 'e16ceaa4-25a8-449a-9d9c-59a87fdc228a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('64abbebf-3e7a-49f7-95d4-b8eb8cb2d9a6', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '1d4bc5a7-76c0-49a2-93dd-22e0554d886f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e37467aa-eee1-4f42-aac8-fa3219b8c712', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '1a2692a7-05c3-433a-990c-54a184a91661', 'b0a82131-7ecd-4685-be5a-89dd1c4cc7de', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('774d40b1-0544-4e8f-a6d9-feeae437ec88', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1a2692a7-05c3-433a-990c-54a184a91661', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0f85a127-53ac-4858-841e-bdbb56283a00', NULL, '1a2692a7-05c3-433a-990c-54a184a91661', '3706fd53-e952-408a-aedd-93ec6d5129be', '1a2692a7-05c3-433a-990c-54a184a91661', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a119e799-70dd-4717-a1bd-a35f90d15523', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'b27f42df-1a56-4626-a3cf-1eb46e7e8770', '0897f76b-9b66-45ae-a884-5c7edd121433', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8535405b-0693-40f0-b2b8-8c088e2aa0be', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '1a2692a7-05c3-433a-990c-54a184a91661', 'b27f42df-1a56-4626-a3cf-1eb46e7e8770', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc5cd623-3012-46ed-bcfc-48022264d99e', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'b27f42df-1a56-4626-a3cf-1eb46e7e8770', 'aa81a9b0-86ef-4ebe-98d3-54359961608d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('25c8818e-bb35-48a0-b4ac-3c6f1bd40298', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '51727d0c-b455-4171-9bc3-23ff5c73ed81', '4d79f2a1-1130-4416-8c72-b6cc85740644', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a864b583-edb7-464f-921f-c56ca092edad', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', '51727d0c-b455-4171-9bc3-23ff5c73ed81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b03eb30c-1c1d-480e-b772-619994aec55e', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'aa81a9b0-86ef-4ebe-98d3-54359961608d', '51727d0c-b455-4171-9bc3-23ff5c73ed81', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d8ac1b4c-0a68-49b7-bc54-4efa3f22acca', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '51727d0c-b455-4171-9bc3-23ff5c73ed81', '67b756a8-aff9-439d-8ac8-b8965b63ac32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f21beb4a-baab-4547-977a-7f91103b548b', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '51727d0c-b455-4171-9bc3-23ff5c73ed81', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa89309d-7016-4782-8076-26c126b8fe5f', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '51727d0c-b455-4171-9bc3-23ff5c73ed81', '814e38c8-c053-4c27-9487-997cf318a550', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d1b286c-9f93-45a5-9ccf-6d2ce623c427', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', 'aa81a9b0-86ef-4ebe-98d3-54359961608d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3580f37b-438d-415e-9c63-c10f78c769e6', 'e74992df-66a8-4572-9e55-ec7b210f04e0', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '1a2692a7-05c3-433a-990c-54a184a91661', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8fb85ae7-6857-4fde-a081-155245d8eab1', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', '44a911af-8a2f-431f-9e1e-004746901334', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a2c9543c-270a-4401-a46d-63c780af7d7b', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('060a3faf-27c1-420c-bae4-5f8eff13d866', NULL, 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', '3706fd53-e952-408a-aedd-93ec6d5129be', 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49cc28f1-0933-4f2d-a7b0-ee521012359f', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'af3322a3-54cc-4315-b815-607a8c362d2e', 'c885871c-5f3b-4a02-a550-f962132d898b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7f93905-e0a2-495f-ab86-a028e30f82fd', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', 'af3322a3-54cc-4315-b815-607a8c362d2e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b21d98df-7db5-4df5-b481-393062d2133f', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'af3322a3-54cc-4315-b815-607a8c362d2e', 'dc730495-43f8-42be-af37-a084da0f568e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59ac54a3-5532-4652-a621-4ef9c6c7490a', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, '8ea7ce48-b945-4053-8255-be69b2aa688d', 'cfdfa9ee-7570-4a4f-bad4-0e18fdff5004', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d279712e-e2a3-495c-aeb0-e881ff3db933', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'fdcffa04-a455-4869-ab8f-2f2fa05e4b02', '8ea7ce48-b945-4053-8255-be69b2aa688d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c2723b2-c46c-4eff-ba9c-ea0773327d33', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'dc730495-43f8-42be-af37-a084da0f568e', '8ea7ce48-b945-4053-8255-be69b2aa688d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cad13977-cb2d-427c-a558-7755afa1ac4b', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, '8ea7ce48-b945-4053-8255-be69b2aa688d', '67b756a8-aff9-439d-8ac8-b8965b63ac32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('54cc9e09-e776-4fbd-9e4a-3f9393b8dff4', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, '8ea7ce48-b945-4053-8255-be69b2aa688d', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('764751d6-792b-46c2-8df1-b55e317852c2', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, '8ea7ce48-b945-4053-8255-be69b2aa688d', '814e38c8-c053-4c27-9487-997cf318a550', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b9fd4d4-d98a-45b0-8901-b03a9865b31a', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, '5f936257-6096-4792-a496-b92e46d93d0a', 'dc730495-43f8-42be-af37-a084da0f568e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a6954b44-80a1-4de4-993c-be0c0aace38a', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'e062ff79-b8a3-4f75-8e9f-ae3b31f92022', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('243f16ba-3250-4bba-ae2b-95ceaf3fa138', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', 'f7eab9a0-7f14-487c-9434-669dca849b40', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1122e7d5-c3e4-4212-aef9-15f1b147fe30', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('71b37f6f-05ba-43d4-9d42-cc421d9fca97', NULL, '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', '3706fd53-e952-408a-aedd-93ec6d5129be', '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0e431e76-37ba-4074-b377-106fb435cd6a', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '656d1c2d-2ad1-42df-9774-62e931e3bb0e', '819393f7-e96d-499b-8663-3adaaf1b0a73', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53dbd2dc-766f-4223-a777-e4b44a598be5', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', '656d1c2d-2ad1-42df-9774-62e931e3bb0e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0977ed6c-1fb6-48f0-b7c7-b4807c5bb672', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '656d1c2d-2ad1-42df-9774-62e931e3bb0e', '7c142ae8-d190-4c1f-aa85-24f12eeefc9f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c36ef648-581e-40b6-9f92-30be50403890', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3abf8555-9c07-447d-af5b-47bacb517ad5', 'f3d00781-37e2-4b9a-8107-bdc123df38d7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef219bf7-5838-4fe9-8a6c-74d76637e6e5', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', '3abf8555-9c07-447d-af5b-47bacb517ad5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f60bb8d7-0347-4230-9b72-80808087df82', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '7c142ae8-d190-4c1f-aa85-24f12eeefc9f', '3abf8555-9c07-447d-af5b-47bacb517ad5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2472c680-5e4d-4a27-bd39-0dfb5198f2d3', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3abf8555-9c07-447d-af5b-47bacb517ad5', '7454ce37-a2ba-4f52-a5da-2190203ca089', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2efb9a32-db0b-4d3e-8488-71a6ba91d792', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3abf8555-9c07-447d-af5b-47bacb517ad5', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8e95ae46-bb81-4895-97b3-90c50307a381', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, '3abf8555-9c07-447d-af5b-47bacb517ad5', '779e4c3b-97f0-4218-8eab-5575a6afa54a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79603765-e912-4ce3-9f88-70645bafa009', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', '7c142ae8-d190-4c1f-aa85-24f12eeefc9f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eda5060e-6818-415e-afaf-49ad637375b1', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '3df1d2db-6ed7-4d0a-ae22-6e90140ca432', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b60442b9-5c5f-4d82-bf66-8eb20ca9b708', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '89218636-1f65-41ed-b729-d5967f17d33e', 'cbff4b85-4722-4e87-8adb-34923d9987c0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e142a048-63a4-4c13-bffa-8cad6d6f9f68', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '89218636-1f65-41ed-b729-d5967f17d33e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d47adf1c-911c-4340-96a3-69e98005dfe1', NULL, '89218636-1f65-41ed-b729-d5967f17d33e', '3706fd53-e952-408a-aedd-93ec6d5129be', '89218636-1f65-41ed-b729-d5967f17d33e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('badcbce7-e648-4f6f-900a-796cee8ef977', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '52ae0923-db99-48e9-95b5-d6884b6d4642', '6f009e98-a9a4-4d93-92e2-e955d04bb7e4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cbdc254f-7d1b-4836-80a0-7e4bca791478', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '89218636-1f65-41ed-b729-d5967f17d33e', '52ae0923-db99-48e9-95b5-d6884b6d4642', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c38c5ce9-bed2-465a-9d34-71a63868e2f7', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '52ae0923-db99-48e9-95b5-d6884b6d4642', '58769cf3-490e-4d20-8255-3e0854d8384b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7bd30426-477a-42ae-9fea-53e31754a3a5', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '212a3a64-9d05-44ae-a394-e335cb98cdf7', '21a21577-f8e6-4856-8c80-996000f525c9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66bd8d3a-ecd2-4db1-a54c-d614df92bc66', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '60297e5d-2f7d-4734-9a25-f2639ffb7fb4', '212a3a64-9d05-44ae-a394-e335cb98cdf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b69b4a82-d843-4121-b4a6-22b5223d4832', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '58769cf3-490e-4d20-8255-3e0854d8384b', '212a3a64-9d05-44ae-a394-e335cb98cdf7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a4ad26e-9bdd-4202-bf55-d3a23dd92889', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '212a3a64-9d05-44ae-a394-e335cb98cdf7', '7454ce37-a2ba-4f52-a5da-2190203ca089', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de10b491-4a7f-411f-976b-c1a71d76e4aa', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '212a3a64-9d05-44ae-a394-e335cb98cdf7', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('443baeb4-d1b5-4ff8-9f6e-80630b9064f3', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, '212a3a64-9d05-44ae-a394-e335cb98cdf7', '779e4c3b-97f0-4218-8eab-5575a6afa54a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ae35d44c-8134-4128-a4cb-ebf18b227ced', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', '58769cf3-490e-4d20-8255-3e0854d8384b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21b13641-89e2-4a8f-9d9a-2e6f3cbafe35', '047364a5-9dcb-4027-a94c-e35f4646860e', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', '89218636-1f65-41ed-b729-d5967f17d33e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('327d53e3-9645-413b-a8b9-1abf80ef6caf', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', '160977ed-ef11-43d8-9ff7-af86c743d2ab', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eda23614-3b16-4346-b096-0db44dd02912', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de5b93fc-d1c5-4d4e-be69-e0187b58b96f', NULL, 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', '3706fd53-e952-408a-aedd-93ec6d5129be', 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0f9ae70-cf38-40c4-bb77-8a65344f1d24', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, '9a4fdac1-5925-464e-848b-1532c780ebdf', 'd94fd859-6e03-44a1-ac1d-059ed72e23d3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('85eda66a-0840-4cba-8b1b-0ec996e7ea1a', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', '9a4fdac1-5925-464e-848b-1532c780ebdf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2e20ecf3-6dfc-4e0a-8587-a2f9f76949a1', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, '9a4fdac1-5925-464e-848b-1532c780ebdf', 'e108043f-3dcd-498c-9560-cde4ed35680e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c944cfbc-96e9-4936-acc1-fd156480f511', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', 'ebb468b1-047a-492c-a76c-5031645e7824', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('62f3ce10-f42c-4106-a6ea-40aa0e018eed', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'da9600c2-7dcc-4a7d-87f1-33f4a441e807', 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fe21ec9-c4cd-462d-8754-e16bbf8a180a', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'e108043f-3dcd-498c-9560-cde4ed35680e', 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fa4aad7d-a9e0-40a4-9075-10e1bab8f777', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', 'f1afc7a2-588d-4b7e-9975-7b0eda21f846', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4200700a-6aa6-4949-80e8-a2ccbe1de26e', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', '95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('407d18e1-5185-41fd-9073-afe3b884826c', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'ac5044f1-1f16-43fa-afe2-24d80506ae5b', '779e4c3b-97f0-4218-8eab-5575a6afa54a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3b1cf5ad-8b58-4229-a6db-e9927917d0dc', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'de10229b-be9d-45dc-b1bf-8f832ebffe68', 'e108043f-3dcd-498c-9560-cde4ed35680e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d84e7cc1-e0f0-47ba-a815-56e1817601ab', '08e80808-fb86-4503-ab9b-9652af82d5b5', NULL, 'e03da822-f071-4c66-890f-f93a458aec28', 'cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('45db4d06-7181-409f-89d2-fb2135f4eac0', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '1b453f97-a12c-4d51-bf95-2e782b425385', 'a2effc4a-acdc-4660-973d-e5313a9df528', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6dbff4f0-9c28-498d-918b-cee99b6d3aa4', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', '42491f82-8223-4dbf-8660-688e35fc5694', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d589ebc2-533a-442d-959d-ccaddaad53b3', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '3b195996-371c-41e4-9b66-a50553582e17', 'aaaf21f7-baff-4867-b84f-36a16f0fcbf1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3900e6fa-5de9-4c36-a9e6-a17103f97901', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '1b453f97-a12c-4d51-bf95-2e782b425385', '66b246c1-b389-40b7-b238-48903a3dae95', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c21da043-c691-4c28-a26d-4db1c008d239', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', 'ddcec555-0f99-4cec-9d45-b0ddd4e7fb26', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5d88362-dfd3-4039-b867-4a7466a8b34a', '91b63591-b1e2-4c65-8ad2-c607be4c1238', NULL, '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', '76d3e38c-0889-4169-814d-5f7e36c0c767', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('23fe6f7c-4bd4-4450-9cd0-5e2f26b0f3e4', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, '7db53bc9-99f3-478e-abb0-437dcbd32051', '4d9e1a7c-84fa-43c7-a1d7-e898b20df129', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('be124201-7708-49e7-9cbe-6e129694e33a', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, 'e37e21bc-4d4f-4d41-8c24-399be1680a15', '8c236a58-3fab-421e-b8a3-6c9df1269fed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dd3c3ef8-59bd-4633-9555-cdf9c6440489', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, '9771d06d-8352-404c-aaba-743800e621e9', 'a4b5890e-c3d9-4eda-8a8c-3ebc20a39061', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('12748785-e835-4f51-ac95-ee436ca09f2c', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, '7db53bc9-99f3-478e-abb0-437dcbd32051', 'f35bc896-c93b-42ca-994d-4f5f4e2e5b5f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f4cb4de-0905-4b8a-86d0-a4066d2b5d01', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, 'b34392da-5070-40dd-ab44-d411a9742f6d', 'a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72c6fe2f-604a-4512-aada-2d1e36242727', 'db7f287e-dfd7-4627-88e3-407cac226472', NULL, 'b34392da-5070-40dd-ab44-d411a9742f6d', '6372e9ae-f522-468e-95b5-06a527854b0f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c962f39e-7dd6-4cf9-a532-952952bdbd58', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', '35f61da7-bd75-4482-ad05-d50ba7e099ca', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c137a79c-b6ab-45fe-863b-992198c9d355', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', '3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('40fa767a-79ed-4981-996f-f6a0bcb00df4', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', 'd5009976-c8c8-4d64-b39e-08f019999ae9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('06e50120-1cfd-43d9-9f05-d69054dab845', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, '0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', '9f2f2eae-80dc-49c7-810a-69b10fcc3421', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('07ec525f-703b-4d10-a693-4ef61afe606a', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, 'f3af3c81-a512-47ea-8b47-0386291e6590', '42557861-103c-4fb7-b3c6-0acd3d7737c2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ef3b8c5-8286-42fe-bf20-011d1f5931e4', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', NULL, 'f3af3c81-a512-47ea-8b47-0386291e6590', '85dbc28b-c5c3-4914-b645-a36056f4cf17', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('14c82607-a49e-45fa-aa03-92c48062069c', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, 'b26cca89-03f0-4498-bf64-7385c0b7244a', '45cfb9f8-8e5e-438d-90f7-6b1ee872c003', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d276fd29-2bdd-4567-9276-5996c2c75389', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', 'ac1f7518-f255-47bd-bf31-29d3cd2bb57a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b1bd4e7c-e01c-406a-b272-bf5a51e749d4', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, '76968391-174d-4530-b310-1244c4b1897a', 'b45ba485-ee82-447e-8a4d-42679a233455', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e0e072c2-8f36-4c5c-9948-0e8ce20b00e6', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, 'b26cca89-03f0-4498-bf64-7385c0b7244a', 'ac9bd6e7-e7b5-4f25-a873-79ff3436fa66', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('465d0cea-7e8b-47b3-9a57-93a283ae5582', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, '863eea7c-8b49-494a-9654-9963f2dbb4e5', '52d12930-5ca0-4344-bf72-32faf8dc5d9c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6821e41f-9460-485c-9b29-7017ab5668df', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', NULL, '863eea7c-8b49-494a-9654-9963f2dbb4e5', 'ba038cc8-3ca3-4c25-9805-08eef60945b5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d1d4277-038f-4ee0-a7a7-e2eda624508a', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'b5be48c3-0721-406c-bf86-b7dc1d6a7016', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d74caa2-f602-4234-aeac-cfeb0c8b2695', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', 'ba8ff028-06d6-4536-8e79-6c46f8e4b9a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('772c9fde-aea0-425e-aa68-9c2141974334', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, 'f101cc07-ed84-4e34-9f70-62ec6a646e81', '470fa9af-f292-4516-be71-346b1e987d83', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a9cff2c-733b-41a8-a37c-d1853a3d5913', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, '7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'e62715a8-2e69-4a59-806e-000886fedd92', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('500200b0-6973-4ae5-85cd-7386c6f9465b', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', '0f8fd73f-526c-4e76-a5f1-043e44386cc3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2548a412-57f7-41fa-9d02-1790339303be', '58ca016b-15ea-41e3-80ba-2603bf736619', NULL, '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', '0e0eb247-f0a2-435b-b44c-34ffc5ecfda6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b3544903-2ae4-4b16-84f7-01adc31301f8', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, '5242e0b6-12e3-4a59-bf06-de114cb69ff4', '1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('889edabb-a1de-44f3-8051-788e2e6b61c2', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, 'c85e8116-355e-408a-93fa-c699da2a76f3', '57130e2a-328a-4402-bd54-a76cb815503c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96ae4fa2-366d-42fd-b690-f0c1e50d547a', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, 'b8350678-d30a-422a-bb5d-79c65af2f890', '0baaa10d-4abf-42df-9689-d6d72a9cc418', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('91d8e718-9d56-47f8-8aaa-66db5bf22f91', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, '5242e0b6-12e3-4a59-bf06-de114cb69ff4', '7c958983-efb4-4117-a2a6-4a3d35c233b5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68f4fe6b-261d-448c-bce0-adff94a81deb', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'c9732223-5e57-4d36-b412-91122ecb900f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('95012cd0-a5ed-4671-a445-782b25924c4c', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', NULL, '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'a1476e12-e8fd-4bdc-a1a1-68177652431d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e17b347d-7ad8-422a-9418-1c55851e6e63', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, '0726dd6c-118e-4cbc-9077-d4dcb0e61643', 'b12dcf3d-9b06-4d32-938c-209adc18ce37', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0b5748b-2977-41d8-b60c-4cd0cdf6227e', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, 'd04aeefe-4ba4-466f-a563-b811674c6de9', 'daeaae1b-5d88-45a8-8697-cd2e22e519a4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('15aaed6e-7f22-4d6e-b2b3-30466982b87b', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, '8dfb5e53-1554-4e5c-a045-85121ce4bd71', 'fd07e597-fc5d-4c64-b491-76a5420aec78', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('66111571-a50d-45ce-894e-8c9fa6fc3ae8', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, '0726dd6c-118e-4cbc-9077-d4dcb0e61643', 'ecde7ac8-3b81-4864-8b26-2e07cdc49190', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('87d42752-e7b0-44e5-837e-0b58675d5d57', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', 'fc871f18-a6a5-4cb7-9f23-fee703a845c4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa201d37-3a49-454e-a630-16cfa631aa89', '25b8066a-59fd-4733-90f2-8ea80c826fff', NULL, '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', '1e643070-dafa-46db-8294-fecd8249232e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e25cf8b4-6034-4849-854b-d94e4dd4a2fc', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, '256083e7-90ac-4f38-9bc1-deedb0f78d2c', '08c5e34a-9a18-445b-9fbb-85a3ff34927b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0f7b382-1feb-40be-9537-b27801c05498', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, '33a45f49-ac74-4444-a193-2ed1e0be110d', '71520b2b-f697-4135-a748-8ba36939915d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a340ffd7-89fd-462a-9c8d-53e6446f6b4b', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, '28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'ffbddcbf-8922-4b3f-9248-47b86638a1b6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec59d5b3-2b86-4122-a4b4-602b1a0cabbd', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, '256083e7-90ac-4f38-9bc1-deedb0f78d2c', '07b70014-fbf6-480a-a128-6dadf6ea6c49', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('269cf1ee-af0c-4446-85c4-bead23beac87', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, 'f93693fa-7dc5-4513-8537-be9541d6e5dc', '193ceb34-df58-46b9-92e5-62ce50a367c9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('854cef44-9dd6-413c-99f1-34f4f09e727c', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', NULL, 'f93693fa-7dc5-4513-8537-be9541d6e5dc', 'c198dbfe-def4-43ff-ae55-8e0a58f068c7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fbcdbc8e-c599-43b4-85cc-4853a56dc0dd', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '3b195996-371c-41e4-9b66-a50553582e17', '0f5c3f08-d249-404a-b740-d759fced2d09', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67d27951-28c5-4bc7-932e-87ef90fa8d4e', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', '6c0656b5-472b-4859-af3a-b8f1c53231a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('24044b00-dcd1-4b61-92bf-40dfded44629', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '6c0656b5-472b-4859-af3a-b8f1c53231a5', '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e3cb6e12-2d16-416b-9121-73ba15fa74c1', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '98d81696-7c71-4ffe-bfc2-1fea37613440', '5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4b8e69b8-385c-4148-8487-927bad14fd5c', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', '68136a56-de73-425b-bc05-ab6fed1cdfd1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d2aa1bd-9da9-4906-9e3f-46b26aab00ad', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', NULL, '0f5c3f08-d249-404a-b740-d759fced2d09', '43c48616-3e31-4bed-9727-f9e6d6447378', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5bf37920-28fd-4ed4-86ed-b43c3d049f68', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, '9771d06d-8352-404c-aaba-743800e621e9', 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de2295a1-4150-4761-8fd3-7e80e29c7ceb', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, 'b34392da-5070-40dd-ab44-d411a9742f6d', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d38557f0-0b84-4ba4-bb4e-bb869d15e5e5', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', 'e37e21bc-4d4f-4d41-8c24-399be1680a15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d23335f1-253d-4772-8afb-8bd754a70442', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, '0d96a253-347e-4903-9db9-b362335e4341', 'a6a56680-46da-47fa-b5a0-5012f91bb3d9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d786be06-bb72-43ce-9600-b77a9d8b6d74', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, '42f0c634-d86b-4129-822b-f103cd6e0755', 'ca68370e-d560-42ec-bb93-b14df8eacdd8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5c1c68dd-959c-418e-977b-f8e53b84d588', '84d4763e-0133-4d81-946b-fb64d1a3fd26', NULL, 'ba80c834-f5a8-4243-98a6-9a3be63c4f47', '48f6d390-367b-4e7c-ab30-c2e7009248a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('633f0e7b-90cd-474c-a9ac-a97a1d91c075', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', '3010c421-5c96-4f0d-b214-c773e0915564', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf2fdad1-c055-46da-aacb-656703ee3e86', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, 'f3af3c81-a512-47ea-8b47-0386291e6590', '270aac69-03bb-4429-b925-3019bd92cf32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dfbc7ea6-1400-47f9-8ebf-f7dee78aa28a', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, '270aac69-03bb-4429-b925-3019bd92cf32', 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d37a820-124b-4c74-8445-09e712c1f403', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, 'dc8ae2b6-d20e-4592-8356-3547bcc58f80', 'cd8e900a-3f5f-4b54-abdd-72b79c3f3203', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8d29d43c-bbf5-425a-b6e5-1a145ace1c01', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, '7d632200-5506-4856-a3c0-d806b1ee708b', 'f47459e8-dfd5-41e2-8b4b-c7999197f56e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d70a1cb5-cf04-4190-9eea-dbd80c16c4d2', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', NULL, '3010c421-5c96-4f0d-b214-c773e0915564', 'cddce99f-aca2-44e6-aa84-b1fc98c35c8a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d163cdba-ab70-4256-ad3f-d971748540e6', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, '76968391-174d-4530-b310-1244c4b1897a', '8255ff29-5961-496b-9fda-c71078e47e51', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98ee8921-16e1-434b-8887-aff3718c8f18', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, '863eea7c-8b49-494a-9654-9963f2dbb4e5', 'fe0228ea-649c-45a4-b729-181aba7f3294', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58918d45-f28a-478a-a871-2afee40c3c79', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, 'fe0228ea-649c-45a4-b729-181aba7f3294', 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('874563ee-3587-4569-b418-9f080682f631', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, 'eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', '4386a60e-d5b7-4f36-bd53-1de1e52ea755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a52465da-bde2-4c5f-96f8-ccfc3d97f1e1', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, 'f218c4d9-d10b-4445-b381-b73a71f5848c', 'e19225c5-a87b-464e-8c63-3f52a45b107f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b4e45383-d41c-44e1-a227-94b7e34b1cfe', '67c2d793-212f-4ce0-a750-b18224a93c73', NULL, '8255ff29-5961-496b-9fda-c71078e47e51', 'ab491da9-8661-485f-90f4-a85c7f3310f6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('db8ecbf3-1287-46b1-a205-d91a8305d8fc', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, 'f101cc07-ed84-4e34-9f70-62ec6a646e81', '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dab47748-a3c4-4eac-8c99-9213bb8d3541', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', '7e71f107-6953-42c7-a560-dc9036094198', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('58820fb8-453c-4209-aaf0-9e7b125b0ce0', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, '7e71f107-6953-42c7-a560-dc9036094198', '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1cd2ca9-d31d-40f3-9ce3-94b08d9b4c38', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, '3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', 'b0214c88-ae13-4faf-9870-01872398bbab', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('75781d3a-e6f0-4e6e-bcb1-91ac1f28de4b', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, '51bb98dd-9201-40e4-b008-221337eeb471', '9398d762-ff69-44a0-a07f-2149bf07bb4f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d5b448f7-a22c-4470-8289-f451c32187a0', '3692b171-10ef-4f20-97de-ed5fa562ca46', NULL, '6ec65964-76d1-4e7d-aacc-6a18e4eadf67', 'eebe4432-38e2-44dc-85c6-995cbecd173b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5178fb97-8a32-41b3-831e-db6dd08a5bc2', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, 'b8350678-d30a-422a-bb5d-79c65af2f890', 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a77cc0db-2956-44a5-8824-78e2354c8428', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, '0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d448cac-f8dc-423c-9a1e-a1c1c9c1f1d2', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, 'bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', 'c85e8116-355e-408a-93fa-c699da2a76f3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('069de646-00f2-401b-8d34-976428e4f868', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, '3de42185-1e32-4936-b305-d990b85c45c2', 'f1838834-17f4-45ae-823d-cfd97b9ad7d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('634ae328-cc40-4bb1-9c5f-0aed06ed0a2c', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, '07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', '94815866-8e0d-4177-9026-3fdad0866fc2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('631ea533-9bc0-4935-aad9-376cf672e370', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', NULL, 'bb8fc553-9dbe-4ea5-a3ea-02d129841f68', 'c9448020-2d88-456d-827c-0b24917a78c6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6dcce6d4-feb6-4a43-99af-2b85bea67e0d', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, '8dfb5e53-1554-4e5c-a045-85121ce4bd71', '834d7138-e338-4517-aacb-1c6319fa34d8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('118241f6-e1f6-42ad-9ba7-e0450e4f74d7', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', 'e6409531-6513-43a9-84a7-eff44b18285a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c787f3a6-d143-4fa1-99bf-6232351dc221', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, 'e6409531-6513-43a9-84a7-eff44b18285a', 'd04aeefe-4ba4-466f-a563-b811674c6de9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('192cdc24-cc97-4cef-a33d-ce6f0574e3fc', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, 'e5871fb2-3928-4139-9468-10f0f12d5e5f', '8b8b38a3-679a-4331-962c-c540eada4c22', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4e9d7489-d21e-4fed-aad7-035614acf3ed', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'a59c2244-46ef-42ce-9a35-9efeb0a02068', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bda55f4c-43bb-443e-b853-b4716ae85897', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', NULL, '834d7138-e338-4517-aacb-1c6319fa34d8', '4556335e-4c02-4879-a850-cc792db27b5b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('15e635e4-4269-4feb-829c-120b0df1861c', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, '28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('133dcb7b-48f7-4b23-a5db-b092084e0726', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, 'f93693fa-7dc5-4513-8537-be9541d6e5dc', '6e7feeb7-4891-4ea3-96b6-00d883da37c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c7a832b-fafa-433d-bc00-8d082a9cf8de', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, '6e7feeb7-4891-4ea3-96b6-00d883da37c5', '33a45f49-ac74-4444-a193-2ed1e0be110d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('33350472-45ed-4180-bc0c-4bdd58ebe062', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, 'd5a60c82-347b-4ebb-b95f-afff297bf966', '88eaec32-bd9e-4fd9-973d-1aaa932c8115', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d240af3f-e83e-4cc5-8bcb-35fefcb4eb39', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, '1ed7ff07-778c-4920-a550-563b27223228', '62c26e94-cc22-4558-9bee-8ec8e6d29b95', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('82cc5748-33be-4c93-807a-65645f980b3e', 'ade3baa7-760f-488b-962d-7e365ad1402f', NULL, 'bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', 'a0c34da0-2ce5-4877-8172-1306a2599c87', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe68c4df-a2af-4751-acb5-8bcac36abf8b', NULL, '5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', '3706fd53-e952-408a-aedd-93ec6d5129be', '5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d52457c6-dd11-4e4f-b98c-fc4ef145f4b2', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '14e4dbf5-5fa3-4010-91e0-c56e71623ba9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f35e02ca-b71a-418e-b942-920580b39932', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '359f9b02-63f0-47eb-955b-52a344462735', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9e05c2de-12c7-4065-9ae5-02773dffc646', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', '0eabdcfb-e308-4e52-8c7f-27643332c947', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a8db9091-2b28-4f65-931d-4111ebfcb13f', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '3b195996-371c-41e4-9b66-a50553582e17', '0eabdcfb-e308-4e52-8c7f-27643332c947', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('811dde92-bb69-4530-9989-c78422f69805', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '05d18d2f-a5be-4b65-9e78-8fa91db4c68f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7bd909a9-e3a5-4f7d-87b6-54263713d4e7', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '345b8b7b-a948-446f-949a-2a903b460032', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fed61c45-c1e4-4f84-9194-de069d3b53da', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', '345b8b7b-a948-446f-949a-2a903b460032', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c3293bca-6879-4d1c-bf2d-d48595971608', 'f97e9751-6e67-40fb-b840-b818dc69afcf', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('949cf562-60aa-4323-b75e-580d318e6bca', NULL, NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', 'f049b588-1279-40e7-be2d-2e691e8a4090', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed631e28-2c9a-4a4f-9540-c3b1af10d5dc', NULL, NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', 'a41ad44b-e566-492a-b2b7-9a1ed2bdd18b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1585e8b-446a-460e-833e-1d9433ae70ad', NULL, '39bc569a-8594-4a3e-954f-3055b382af9a', '3706fd53-e952-408a-aedd-93ec6d5129be', '39bc569a-8594-4a3e-954f-3055b382af9a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('01a32603-f9bb-454b-baf0-d7c39ed5e584', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '5879bb5b-1171-41e2-bff7-707e18fc0582', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0fa636e-9a00-40e1-8e5e-12c885f91cb7', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'a277424f-d7f0-4568-8cd9-5299a13d0f4e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6676bb28-ea3c-496f-8a74-ba255c27f47b', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, '39bc569a-8594-4a3e-954f-3055b382af9a', '6df50d79-b958-456a-ac84-a8786f0f18a7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a4e394f5-8eee-4cd7-ae31-ac8848eed47d', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, '9771d06d-8352-404c-aaba-743800e621e9', '6df50d79-b958-456a-ac84-a8786f0f18a7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c36a1b03-32bc-4c21-8b98-dfb6ea6d2de4', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', '66c939e9-0515-4cb0-ab1a-8dcd9243c53f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b37d7ad-4248-4de2-9d59-67364db91066', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('96b83c48-cd0d-416c-8e7d-0c4cc652afe5', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, 'b34392da-5070-40dd-ab44-d411a9742f6d', 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ce2c8b8a-09c3-40c5-ba23-0f632d49dfec', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'e37e21bc-4d4f-4d41-8c24-399be1680a15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b53df30d-a8a0-4485-bbd6-c827ac428ee6', NULL, NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'ad1241d8-512f-4589-aed2-958e1fd6441b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ccf1a982-03c0-4069-a93f-48efe0edc4fd', NULL, NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '39a2eb59-2ba9-486d-8146-0a9a4d85769b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5db7b9ab-85de-4337-9d4f-d8dfad2276c1', NULL, '539a38db-5f7d-4bbc-896d-616bd32f0f06', '3706fd53-e952-408a-aedd-93ec6d5129be', '539a38db-5f7d-4bbc-896d-616bd32f0f06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('725794f0-c526-4854-b498-401caec8b1b5', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '209720a4-ab91-4b78-9fc0-ad5780a97934', '17e8a223-4aa0-4e35-aca3-f381f9ce1328', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('702ad75d-7582-41db-ad5d-7df4a8ac6e4b', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '209720a4-ab91-4b78-9fc0-ad5780a97934', 'a24d0918-c78b-44a2-8c90-965940f30b95', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99a93554-7343-44de-987b-a35b06c8a8a6', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '539a38db-5f7d-4bbc-896d-616bd32f0f06', '209720a4-ab91-4b78-9fc0-ad5780a97934', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('99de5054-1c52-481d-9536-d39795f0ce19', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, 'cb295fdb-e294-4b05-944e-f0a4929ebeeb', '209720a4-ab91-4b78-9fc0-ad5780a97934', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f7000b2a-f204-46a1-9689-d355cf929bb9', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', '10971aec-daed-47b5-8514-f88f9ca1016c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af8fadc7-e1f9-4d47-9581-5d8805d4f6d8', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '209720a4-ab91-4b78-9fc0-ad5780a97934', '34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7a45f88b-2b3e-471f-9ded-45b3cf3520f9', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, 'f3af3c81-a512-47ea-8b47-0386291e6590', '34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('68707555-e302-4a1d-9bf1-f7f06686a8fd', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', NULL, '34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', 'a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d6832b5b-41f8-40cb-99ca-7456ea3c9c20', NULL, NULL, '209720a4-ab91-4b78-9fc0-ad5780a97934', 'e0c2115c-f70e-4c77-87a7-d1f524f47df4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('022c8d18-6746-49bf-b153-1a10c788debd', NULL, NULL, '209720a4-ab91-4b78-9fc0-ad5780a97934', '6cfb3c88-43bd-41a3-9c01-29bbcb67752e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a74df0e5-a5a6-4e0e-8969-7058dc5ed655', NULL, '2bb03c85-0eba-4ef2-be45-7bd03fb60936', '3706fd53-e952-408a-aedd-93ec6d5129be', '2bb03c85-0eba-4ef2-be45-7bd03fb60936', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c9949370-fd5c-47b3-9697-82cdd744085d', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '7e91e09c-a072-44b1-af1f-bc1e6430d371', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd96b18b-eea4-4e2e-9035-0f23fd1e5a46', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '4dc88a9e-38e7-426b-a598-f246cef849ed', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ad75c325-6003-4329-bb7f-8ab63e0aacf0', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '2bb03c85-0eba-4ef2-be45-7bd03fb60936', '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('21a9c4a3-8b53-49ab-a851-3d99572abcbd', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '76968391-174d-4530-b310-1244c4b1897a', '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a01050f-832f-45d3-8fb4-05fae7151156', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', '7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ef29ef0c-c3c2-47e6-b046-e86081456208', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '5fd54e69-2513-4413-95d6-dde58ed6d8ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72d3e92d-21c2-4de7-86b8-42fd12445585', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '863eea7c-8b49-494a-9654-9963f2dbb4e5', '5fd54e69-2513-4413-95d6-dde58ed6d8ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46587926-e3fb-49a4-a5e8-2c980833071f', 'af682fb0-f06d-4a2b-affb-40487a079a70', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'b67105de-0348-4d4c-8ccc-aab9ed905eb6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcb7676b-137a-4769-9823-979963f60316', NULL, NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '3333c620-ed65-4a4a-af0b-71106e0b5b30', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4ac63eeb-7776-4255-829b-cb5a29f9de16', NULL, NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', 'f8591833-ef9e-42fd-b91b-f66b56267b0a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5e9523d8-2ad4-4d64-b686-57576aa20f77', NULL, '0ee9e55c-9b0f-41fc-9bd5-981f124846d3', '3706fd53-e952-408a-aedd-93ec6d5129be', '0ee9e55c-9b0f-41fc-9bd5-981f124846d3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1766a9c6-2146-4c3e-a857-ea04e8f44164', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', '51da6c66-df21-4619-bb68-2538c6ef2c31', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('956a5f3f-c580-4e65-aae5-43fd79a449b1', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', 'a16e2346-b56a-4ea3-b07b-f5f494b2b42b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2a2e5b9-cbc3-4a1c-b1e1-a562ab5d95d8', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, '0ee9e55c-9b0f-41fc-9bd5-981f124846d3', 'bf27b482-99fb-43fe-8789-b926b9131a32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3fd89676-3561-4958-a6c4-35ef51e64316', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, 'f101cc07-ed84-4e34-9f70-62ec6a646e81', 'bf27b482-99fb-43fe-8789-b926b9131a32', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('523208c9-177d-457e-873c-2ef5dcc79132', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, '1d24331c-d029-4539-8b40-2b891f6a75a9', '7514b6f6-f31f-4397-bb3d-eefe138ebb9d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09a84d00-9a3e-462f-84b3-e957d0c8fd39', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', '1d24331c-d029-4539-8b40-2b891f6a75a9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('509316eb-0cd6-4d50-a8ff-8e8ac1d98928', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, '1d4c6f1f-200f-4a68-ae7b-6fda13687e41', '1d24331c-d029-4539-8b40-2b891f6a75a9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0a81e14-722d-4f40-b3dd-5ebc7b5b3df3', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', NULL, '1d24331c-d029-4539-8b40-2b891f6a75a9', '53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20538e3b-737b-40f6-aa1b-b0ede047f65e', NULL, NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', '0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9ee673c2-196b-4f00-b226-4b5978063f56', NULL, NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', 'bf58a617-cb18-42a8-b34a-56b584e6daf1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ec90a9db-bff2-4777-8e96-b791e4c05729', NULL, '0860ac5c-ce03-4f7b-abcb-562676bca90d', '3706fd53-e952-408a-aedd-93ec6d5129be', '0860ac5c-ce03-4f7b-abcb-562676bca90d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('55a00373-09ec-4006-a3c0-3ec42352dca4', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'd3e00370-8788-4a7c-83d6-693a01ccac0f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81e14d92-f7fe-4f0c-945e-5805f8e7e7a8', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'fd972637-8015-4a7a-9591-683814d6dc1c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c961c759-99a7-49e0-8bca-f2965cb44f2e', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '0860ac5c-ce03-4f7b-abcb-562676bca90d', '173a65d3-7eb4-4910-a83f-08ce5ed65583', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ea574bc-77f5-4161-9382-50c091378fc6', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '8dfb5e53-1554-4e5c-a045-85121ce4bd71', '173a65d3-7eb4-4910-a83f-08ce5ed65583', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df45901b-777d-4579-ad7d-4412d63a3b3b', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', 'c1f4725e-747e-4d03-8a86-b2f4fa4459ee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6c52b4b-949a-4d5f-a1e6-60f132463f2e', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9c6410ef-986a-4475-93bb-19ed17429a79', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '13a3ca39-6352-48e1-b1fb-82f3fc5558f2', '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1e9bd925-2f8e-4ce7-b2bd-50814738eff6', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', NULL, '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', 'd04aeefe-4ba4-466f-a563-b811674c6de9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('164cba6b-2aa2-4ace-b9a5-9efdd016aa02', NULL, NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('23915a94-192d-4217-8cd4-fee7bd301f5d', NULL, NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'e2c9d05c-4e79-48cf-8093-e8fa4b0a655e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('baecfc84-663c-40b8-972d-e84a89fd2dd4', NULL, '79cf3f87-a87d-40d8-a91a-cdd257866de7', '3706fd53-e952-408a-aedd-93ec6d5129be', '79cf3f87-a87d-40d8-a91a-cdd257866de7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9daa29f8-e2cc-47ed-bd9f-b382cccd8b99', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('70d57a02-1537-46d0-a900-51f461152cd1', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '48607eac-4413-48eb-9b01-bd264a9b607c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('beffc78a-2738-4b01-87a5-168e0acd253c', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, '79cf3f87-a87d-40d8-a91a-cdd257866de7', 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d0557e4-0a48-443e-8a26-99cb0e411fa6', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, '28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('adecdbe8-eb20-4782-b977-0ee777193a68', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', 'fc0b7f19-723c-46f3-b40c-a8973fb5cce6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4abce187-6e61-41b6-91c4-04d9f4f44323', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d6bab91-b2e2-4662-b802-72d42948d878', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, 'f93693fa-7dc5-4513-8537-be9541d6e5dc', '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aa6f9a2d-c1c5-48d4-9fac-0ecabf17edf4', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', NULL, '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', '33a45f49-ac74-4444-a193-2ed1e0be110d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fd3f1211-bf61-49a3-9691-1bdd5c95d90d', NULL, NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', 'e131dff7-b974-4e12-8324-732296676146', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7f536e71-b099-442e-b004-698fe14198c9', NULL, NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '99188a87-efa3-4365-9135-700c0899d0dc', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e6ac71d5-f63f-4d77-8379-9a7805e8d117', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, '30ec4923-e756-46cf-ac20-79065a4f36bd', '59adeeef-e54c-4b26-8a36-f4dbe0b05273', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('466eb9f7-9139-4e30-a2bd-966888e498ea', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '30ec4923-e756-46cf-ac20-79065a4f36bd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a968bc32-85be-46f4-9a88-228adbe2d5c1', NULL, '30ec4923-e756-46cf-ac20-79065a4f36bd', '3706fd53-e952-408a-aedd-93ec6d5129be', '30ec4923-e756-46cf-ac20-79065a4f36bd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0261acc-fdce-44a4-9c1a-f9500ee85839', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, '0ae403ca-5143-44f0-b997-be330a72ee97', '01635d74-7e94-46e0-aba2-a1c8d471aaff', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c6cdea8d-a1f7-4136-8fd2-66d0aee4a994', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, '30ec4923-e756-46cf-ac20-79065a4f36bd', '0ae403ca-5143-44f0-b997-be330a72ee97', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ed11e005-8563-4462-89aa-b090c3065c03', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, 'aca34128-8a96-494d-a9e7-4e891208b023', '2f8771ba-3650-43d8-af99-ffc413066a42', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b0f5c01-a564-4ccc-8bb3-d1716665bcca', '9b403ef6-3fae-4698-9b21-2627c51fa254', NULL, '0ae403ca-5143-44f0-b997-be330a72ee97', 'aca34128-8a96-494d-a9e7-4e891208b023', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('210d5d54-1715-49bf-9934-c44ee016281a', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', '59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d2ae3143-a8c1-4493-90b4-deb8ee7cc5bb', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09ea6e4e-ab32-45b7-bd7d-b2e6691290f4', NULL, '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', '3706fd53-e952-408a-aedd-93ec6d5129be', '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('69612d77-058f-44ae-b8e9-5657d6ab718f', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, '5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', '0aa2520b-5481-4d8c-a478-964e4441d5e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('09dc6fbc-fb45-473e-97af-1bc4e973b91d', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, '2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', '5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fca5d327-f653-4649-b1dd-3deb5b55fc68', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, '89ac1223-5561-4835-8c9d-681ab874a47a', 'f5f51c10-010d-4d5b-bb8e-b2dc353ba051', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('29bd21b9-2cf9-49e6-94ec-17eefad89b94', 'f9811182-d400-43e0-ba9e-de745c9e82a3', NULL, '5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', '89ac1223-5561-4835-8c9d-681ab874a47a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79f35b59-eee1-4929-9cea-0bb600b9a157', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', 'd71a8b9b-b0da-4675-a6c5-45d2664c70f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('20464d07-6b81-4746-85fb-3c4f4ed87bd2', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cbd6eb58-0ac6-41ea-98b9-82bf5d5b5428', NULL, '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', '3706fd53-e952-408a-aedd-93ec6d5129be', '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c3e19f3-5e89-4bbc-a577-ca82951fe335', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, '03089301-5a05-4c2d-abf3-b95267b2edef', 'b32ebf6e-d5bb-4b03-9d03-10bcec3a6172', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1fdbeb95-1bb7-4fb5-b9d1-e417e1c38f37', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, '9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', '03089301-5a05-4c2d-abf3-b95267b2edef', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('385d12e6-e689-491a-b503-5b699e008380', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, 'b204ae10-065f-4969-aedd-4c25602a821c', '5fdcc08b-295c-4853-957d-d171b1accd40', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('564ef107-8d59-4db0-a926-e22f65276242', '4924877c-c487-4e4d-8b14-901e9b6069ac', NULL, '03089301-5a05-4c2d-abf3-b95267b2edef', 'b204ae10-065f-4969-aedd-4c25602a821c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc94d775-510c-42fa-b5b0-fe4afe51d2e1', '831a608f-fefe-425b-b740-1786f856c680', NULL, 'e7101997-a1b9-43bd-93a7-8b24fd506f05', 'dfb1ef2c-af28-40d5-b625-9f157f1323d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5ed62729-d2a8-4e5f-a863-bc4df6a19b94', '831a608f-fefe-425b-b740-1786f856c680', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'e7101997-a1b9-43bd-93a7-8b24fd506f05', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('84b03919-d440-4956-9a4c-746b226836c2', NULL, 'e7101997-a1b9-43bd-93a7-8b24fd506f05', '3706fd53-e952-408a-aedd-93ec6d5129be', 'e7101997-a1b9-43bd-93a7-8b24fd506f05', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6ef83b69-925d-4f06-8e8f-4dea17c49543', '831a608f-fefe-425b-b740-1786f856c680', NULL, 'dceec9d4-d2a5-444e-a27b-4a16c01b155b', '2d5f609d-aac6-41b8-b7dc-ebb66f4b3833', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('268d211e-943a-4fe8-8f2f-cd150a8edc64', '831a608f-fefe-425b-b740-1786f856c680', NULL, 'e7101997-a1b9-43bd-93a7-8b24fd506f05', 'dceec9d4-d2a5-444e-a27b-4a16c01b155b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b69cb6a8-e8b1-40de-b6a2-ed8250be0dfc', '831a608f-fefe-425b-b740-1786f856c680', NULL, '3a07b077-aebc-48ad-ab29-6d375afab845', 'e4c728ed-535a-40cc-a460-3174b695f899', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('aff048df-13b6-4de7-beb6-20dce53d0f3b', '831a608f-fefe-425b-b740-1786f856c680', NULL, 'dceec9d4-d2a5-444e-a27b-4a16c01b155b', '3a07b077-aebc-48ad-ab29-6d375afab845', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e02f41ca-d599-4b1d-8dca-c73730eec80b', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', 'b491c0ef-e4c3-4692-94f3-bf13b2dfff8a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d79ad457-a8a4-4d4e-8c13-9f8bfabfa5e8', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7837d771-39f8-4519-9016-473396225565', NULL, 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', '3706fd53-e952-408a-aedd-93ec6d5129be', 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('03f2d39d-2345-4e7e-875f-7316003d16b9', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, '2a9d3ef1-e293-4301-914b-0ed781b63689', 'fdad2cc6-4985-4407-ade1-857bd91c5518', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('df47ac59-c0d0-489b-b8ef-3089743d378b', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, 'abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', '2a9d3ef1-e293-4301-914b-0ed781b63689', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7e387cb-6b6d-48b0-a0ca-732d2c821b3a', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, 'e1ddefd3-730f-4085-8651-a24dc88b7330', '1bf68e49-2a97-4686-a8b9-8cdb46475326', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7ff6ee8-21af-4fb7-8531-7f2102cdd928', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', NULL, '2a9d3ef1-e293-4301-914b-0ed781b63689', 'e1ddefd3-730f-4085-8651-a24dc88b7330', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7f710e1-4fff-4a34-950c-6ae91da5653a', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, '0bb4851a-2274-44cd-85ff-fc4b4710f602', 'ccb79609-4c10-4c53-bd5b-3a128e7f7ebf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c23a1c7-821d-4e7a-85e9-9e02a3618827', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0bb4851a-2274-44cd-85ff-fc4b4710f602', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fd1ae74-8b0f-4ac0-a1e7-d503452dc79c', NULL, '0bb4851a-2274-44cd-85ff-fc4b4710f602', '3706fd53-e952-408a-aedd-93ec6d5129be', '0bb4851a-2274-44cd-85ff-fc4b4710f602', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fbec2137-bead-4315-b323-cfab02e185a5', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, 'fdfd2976-fc7d-422e-8b5f-91f401927b18', '4e5c24fc-e3d1-49f7-963c-e386a72be2f8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e1a6da3c-dfc3-484f-8185-938c414326cb', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, '0bb4851a-2274-44cd-85ff-fc4b4710f602', 'fdfd2976-fc7d-422e-8b5f-91f401927b18', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dc28beaf-2488-4ab3-995e-2174df1954cb', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, 'ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', 'a8dc5128-f0db-4f0e-b599-a87eeb73603c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9cfb524c-ccf1-4171-8043-bf2116536699', '0bae3550-be89-4c0e-9ba4-01bae0419be0', NULL, 'fdfd2976-fc7d-422e-8b5f-91f401927b18', 'ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5127038b-2074-42f5-a599-7cdce776b05d', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', '0fd249e7-1454-4914-957a-b3ec7bf25bee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7b382b2e-1daa-4b6f-ad14-f765d768348e', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('46a43889-233e-4322-97a7-77fd9716980b', NULL, '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', '3706fd53-e952-408a-aedd-93ec6d5129be', '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bd7e0fd5-4ae5-4dfd-b029-4d037b63b6e6', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, 'e9daa877-1886-48db-abab-5516000c4d8e', '0334125d-2eca-4694-9cc3-abfbb58b49f7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e8991a3f-7e11-413b-a946-c381890c8fcb', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, '93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', 'e9daa877-1886-48db-abab-5516000c4d8e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8ed6a950-8f04-421b-8c2b-523ea5513b7c', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, 'edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', 'bb74107e-cd5f-4207-87e2-69f4d67eb7f3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('baab9056-95ba-489e-af8f-3c8500316ded', 'f3140f7e-5045-4534-92aa-e918895bfafb', NULL, 'e9daa877-1886-48db-abab-5516000c4d8e', 'edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('418fe050-167d-494f-b368-5b79cf68ed2c', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', 'eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f1a34ea5-fa78-4061-9856-fc05184b21af', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('323ca3e8-6c46-430d-abc4-26b350c76ad9', NULL, '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', '3706fd53-e952-408a-aedd-93ec6d5129be', '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fb717805-588e-4af1-8a4d-d469bb1fd4d9', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '232fe9ca-d6b6-4105-869b-435f0b1357cd', '5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f712c42a-e9da-4a52-91f0-cf1adcbcb472', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '7a4d5839-8342-48c3-95e1-d7032ce2a6a0', '232fe9ca-d6b6-4105-869b-435f0b1357cd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d2930ac-000e-485c-92e0-4181aef8062d', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '232fe9ca-d6b6-4105-869b-435f0b1357cd', '8f422852-c9d5-4c4f-bac1-ea4950ea77d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dda57fac-9899-4895-bf24-8608b837e16e', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '8f422852-c9d5-4c4f-bac1-ea4950ea77d4', 'aca34128-8a96-494d-a9e7-4e891208b023', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('548710bb-7879-4f1e-999a-c4f0cbd00ad4', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '8f422852-c9d5-4c4f-bac1-ea4950ea77d4', 'fe0228ea-649c-45a4-b729-181aba7f3294', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0fed22c9-81a7-4e0d-b785-e0f526ae584d', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '8d53905b-418d-4c91-aa71-d4c49184cbae', '06d170a1-f3a5-453e-9a08-3dedf2ecc0d4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a113f072-ed17-43ad-9a44-a15836d419a7', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '0ae403ca-5143-44f0-b997-be330a72ee97', '8d53905b-418d-4c91-aa71-d4c49184cbae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e82498ba-ea7e-4b5c-8999-80bdd4a12cb9', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, 'fe0228ea-649c-45a4-b729-181aba7f3294', '8d53905b-418d-4c91-aa71-d4c49184cbae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6548161a-1fa6-4aba-8474-9f4ac5eb0365', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '8f422852-c9d5-4c4f-bac1-ea4950ea77d4', '8d53905b-418d-4c91-aa71-d4c49184cbae', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('779a7b69-138a-42e9-b856-9baec41f7298', '3d0e6bb5-a62e-4225-a2bb-967c76926705', NULL, '8d53905b-418d-4c91-aa71-d4c49184cbae', 'f218c4d9-d10b-4445-b381-b73a71f5848c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fecc2be7-6d8b-4329-9233-6adc0bdcc8ff', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '1ea18a1f-6676-43b8-9fca-20b7e575c31e', '2194c042-0182-42cc-8174-6f219e3c4e65', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f5487eeb-c486-4918-82cb-ceaf2865be9d', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '1ea18a1f-6676-43b8-9fca-20b7e575c31e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe06dfb0-6da8-4343-8959-2b1fe0c48f99', NULL, '1ea18a1f-6676-43b8-9fca-20b7e575c31e', '3706fd53-e952-408a-aedd-93ec6d5129be', '1ea18a1f-6676-43b8-9fca-20b7e575c31e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e4382c8a-b934-42be-b255-86a68b313e52', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'e5bb95d7-2fcd-4767-a200-c7c48e01401c', 'f792f250-1f61-4efa-a515-d04af7ad5e18', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3d08cdaa-3b4c-4a41-be4b-c02ff4d8d5b1', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '1ea18a1f-6676-43b8-9fca-20b7e575c31e', 'e5bb95d7-2fcd-4767-a200-c7c48e01401c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fe7f66e1-5f12-465f-892e-831c6eb8eca6', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'e5bb95d7-2fcd-4767-a200-c7c48e01401c', 'b83a49eb-39d3-4c98-8c0c-5a1fb1862079', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98694180-1334-428d-88ba-f590b4bd0f9b', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'b83a49eb-39d3-4c98-8c0c-5a1fb1862079', '89ac1223-5561-4835-8c9d-681ab874a47a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7c34d13b-6f59-4951-9f67-86175240b61e', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'b83a49eb-39d3-4c98-8c0c-5a1fb1862079', '6c0656b5-472b-4859-af3a-b8f1c53231a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b5844430-3cc8-411b-b13f-b79b231cf9ec', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', '0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b50ba954-ffce-4a4f-bad5-0df732c28759', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94051685-ca75-4b71-9f62-48e8f8b64dcf', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '6c0656b5-472b-4859-af3a-b8f1c53231a5', '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f0997e3b-25ec-478a-89cb-2ceb281db00b', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, 'b83a49eb-39d3-4c98-8c0c-5a1fb1862079', '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('34aaa5e2-cfdb-441e-a83c-235b50c3d095', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', NULL, '7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1f014ff1-f4fc-428b-9c97-567d7d7aeca6', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, '71c29d57-de3e-4f00-9303-2d51e8c11b20', '02748d62-3212-4465-8c05-aabc3f919a08', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ebeae76d-0a04-4574-9ff8-bda63915a39f', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '71c29d57-de3e-4f00-9303-2d51e8c11b20', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e326cafc-77e1-457c-96e5-72ede9f4c721', NULL, '71c29d57-de3e-4f00-9303-2d51e8c11b20', '3706fd53-e952-408a-aedd-93ec6d5129be', '71c29d57-de3e-4f00-9303-2d51e8c11b20', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('656c7f0a-a22b-47db-8a70-04e089949578', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'adaeb8bf-e22b-4bb9-ab33-66e19053ab31', '0cde804f-7eed-49d3-8eb4-d55e806f8957', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bf6e7bdf-0223-4f6a-9b18-83c7f32de12b', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, '71c29d57-de3e-4f00-9303-2d51e8c11b20', 'adaeb8bf-e22b-4bb9-ab33-66e19053ab31', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('ea19f91f-d0e1-4612-84de-136e1c687a95', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'adaeb8bf-e22b-4bb9-ab33-66e19053ab31', 'bb372939-0891-4068-bf4b-651e8f2a03c8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3f67f755-72fa-435b-8f11-dee88ec0d5ff', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'bb372939-0891-4068-bf4b-651e8f2a03c8', 'b204ae10-065f-4969-aedd-4c25602a821c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('396be5ea-4bc6-4379-a8fe-052cddc952f6', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'bb372939-0891-4068-bf4b-651e8f2a03c8', 'e6409531-6513-43a9-84a7-eff44b18285a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d60b8f3-b636-4774-9627-f1bf0da5161d', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, '88d51826-68ce-4d8a-9a65-91429e00d053', 'b04e429b-3f95-4dea-b61e-3e96d114ecd1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a07e0d52-8691-4ed9-929b-0874ec22e207', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, '03089301-5a05-4c2d-abf3-b95267b2edef', '88d51826-68ce-4d8a-9a65-91429e00d053', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1fa5268e-4a20-4733-a5ef-16250ee16686', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'e6409531-6513-43a9-84a7-eff44b18285a', '88d51826-68ce-4d8a-9a65-91429e00d053', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('37485252-ae63-47cc-badd-e551a9840214', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, 'bb372939-0891-4068-bf4b-651e8f2a03c8', '88d51826-68ce-4d8a-9a65-91429e00d053', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('81b57d10-68d0-4a5b-b4bd-22ef77b245b0', '850aa448-3a14-440c-9834-0b7ef6d83c39', NULL, '88d51826-68ce-4d8a-9a65-91429e00d053', 'd00a14ad-fe79-40fc-8f72-722fb5cd30bd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('715fcbc2-a193-4ad7-83b7-c4f455b5a7f8', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', '3014663a-10bc-4a8b-b47c-2c805b198d7f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('94782817-2d75-467d-bb1b-bf257174d08a', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('38b49585-c8b6-4060-a002-4313aba14115', NULL, '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', '3706fd53-e952-408a-aedd-93ec6d5129be', '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a65ff09c-84e5-484f-9e3d-6fc6b0910745', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '74b8c100-35a5-4a9e-882b-d106b0656e15', '702c700c-a440-4771-b203-9c030c1c100f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('98fe55f4-9a13-4719-8332-9556d414cffd', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', '74b8c100-35a5-4a9e-882b-d106b0656e15', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('869e59ed-914a-4779-a1ee-9989dace7aa5', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '74b8c100-35a5-4a9e-882b-d106b0656e15', 'c73f5078-0505-44ea-b0e1-57390f4d5a3b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f26117f0-9761-4e50-858d-0a5e70242649', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, 'c73f5078-0505-44ea-b0e1-57390f4d5a3b', '3a07b077-aebc-48ad-ab29-6d375afab845', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('49e38887-66ff-4548-9077-88858312127c', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, 'c73f5078-0505-44ea-b0e1-57390f4d5a3b', '6e7feeb7-4891-4ea3-96b6-00d883da37c5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcee72e3-0c00-4de2-a42b-0e270c2d8f9c', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '86454239-fb95-484e-9f75-142ee5ca2a5d', '69067b5f-41d0-447b-aba4-31764c6d6e04', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f8802f34-52da-44d5-9797-78e0dc3583a8', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, 'dceec9d4-d2a5-444e-a27b-4a16c01b155b', '86454239-fb95-484e-9f75-142ee5ca2a5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4fc7cfb9-2782-4b2c-9c3f-a8eb0e573d76', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '6e7feeb7-4891-4ea3-96b6-00d883da37c5', '86454239-fb95-484e-9f75-142ee5ca2a5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('582a665f-fb6e-4a1d-9c34-544805cb2290', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, 'c73f5078-0505-44ea-b0e1-57390f4d5a3b', '86454239-fb95-484e-9f75-142ee5ca2a5d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('de1fa34f-307c-43aa-b9f9-0de34a7e55eb', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', NULL, '86454239-fb95-484e-9f75-142ee5ca2a5d', '1ed7ff07-778c-4920-a550-563b27223228', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9295097d-a6bb-4f56-872c-786a6e030c4d', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '0017035a-e8ef-4e77-a43d-938cfc7962f5', 'a3d6ce3f-655b-452b-91b1-539956c8580d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f1d9ae4-4df3-4b51-bd68-0140f715fc71', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', '0017035a-e8ef-4e77-a43d-938cfc7962f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('829228f5-33c6-47e3-b6d5-4eae06004c3b', NULL, '0017035a-e8ef-4e77-a43d-938cfc7962f5', '3706fd53-e952-408a-aedd-93ec6d5129be', '0017035a-e8ef-4e77-a43d-938cfc7962f5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7ab4650-c744-4560-8e9b-bffde55f24f5', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', '0198a5da-a2fc-4f7e-bf41-54642325d8dd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('718c7a90-f8ca-4b20-aab8-d6470acc3cb0', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '0017035a-e8ef-4e77-a43d-938cfc7962f5', 'ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('eaec616a-0014-4399-a500-41918750c501', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', 'e2f03c7d-5026-42a3-a18f-ce770314c22b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4085dd28-9917-4acd-a438-188c6de4ae47', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'e2f03c7d-5026-42a3-a18f-ce770314c22b', 'e1ddefd3-730f-4085-8651-a24dc88b7330', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b2216acc-616a-43ac-9f46-9526a658a586', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'e2f03c7d-5026-42a3-a18f-ce770314c22b', '6c0656b5-472b-4859-af3a-b8f1c53231a5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('03d92a07-9316-4168-816e-34416a2ec8d7', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '8e019651-e0a0-490f-8592-55c7016cec2c', 'ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('156cd874-18f0-4914-879b-3abb92658f0b', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '2a9d3ef1-e293-4301-914b-0ed781b63689', '8e019651-e0a0-490f-8592-55c7016cec2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74df7196-1406-4904-a395-f8ca0070adfe', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '6c0656b5-472b-4859-af3a-b8f1c53231a5', '8e019651-e0a0-490f-8592-55c7016cec2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('05a0f74b-4a19-44a0-bf45-bb01e3a3c542', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, 'e2f03c7d-5026-42a3-a18f-ce770314c22b', '8e019651-e0a0-490f-8592-55c7016cec2c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('32de1c62-58ac-4e44-9eb9-c9728cbcd99d', '466056f2-efc6-45d6-b778-fa111db7a18b', NULL, '8e019651-e0a0-490f-8592-55c7016cec2c', '8ad792c1-10e1-43fa-8d5a-a6f3810878a2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57fae3e0-faa4-4a5d-9578-3be81426c9ed', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', '41bf1ce4-7d32-4bc9-a240-6f37aa7c5311', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76e98e3c-8e48-403f-a3a7-21e543cd1f43', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('994806f8-555b-4852-84ea-46f1042cc8a7', NULL, 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', '3706fd53-e952-408a-aedd-93ec6d5129be', 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d0f378b9-9b9e-43ad-8d06-dddf272d656f', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '2214774f-6235-4cb9-8713-e2ee51b213d2', '008b96bf-c732-4063-95fa-8660cc3e378a', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9dec48cd-6775-407c-ae5b-96bb7cc9bd03', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, 'ee5eda97-ff2a-4646-ae01-dcec47a7688b', '2214774f-6235-4cb9-8713-e2ee51b213d2', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4363884b-cec6-4d16-a544-aa7851fbe568', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '2214774f-6235-4cb9-8713-e2ee51b213d2', '919c64ed-015d-4a71-9287-69f554378b69', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('009da81d-2778-4058-a777-f2a1a49a7dbb', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '919c64ed-015d-4a71-9287-69f554378b69', 'ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b0fff766-3126-4558-8543-023fd7919a4a', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '919c64ed-015d-4a71-9287-69f554378b69', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('35138f25-fa9f-411b-bbf9-ea90747ec053', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', 'a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('88d0fcab-468c-434d-bba5-b8ea58e367cf', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, 'fdfd2976-fc7d-422e-8b5f-91f401927b18', '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('36714b48-ab50-4ca0-b817-643b3b724da1', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f43465dc-80e3-42d4-8f70-2e081827f14f', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '919c64ed-015d-4a71-9287-69f554378b69', '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('12a8f987-2cca-4849-84e9-ab90c5e17815', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', NULL, '67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', '42f0c634-d86b-4129-822b-f103cd6e0755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57902b9d-783f-4a58-9f83-6224b3f4a6bc', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'a48e5290-7207-469f-85ea-c5f5b2150d1f', '74d9ec93-6755-4198-bba3-b900d1391ddf', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcf355cc-ab44-4b22-a55e-d5f99b85af29', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'ce47754e-0d06-4b12-bc91-8034a4a046e7', 'a48e5290-7207-469f-85ea-c5f5b2150d1f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('8f7b7ef3-16bc-4304-9b94-3db035baaed1', NULL, 'a48e5290-7207-469f-85ea-c5f5b2150d1f', '3706fd53-e952-408a-aedd-93ec6d5129be', 'a48e5290-7207-469f-85ea-c5f5b2150d1f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f994f54c-8f7c-4507-9b4e-4544c14c0ad0', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, '39c84db0-c0b8-48bc-9602-f6371fee499b', '9cf52144-7c0c-4031-a0dc-b5f7d0581115', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('258ddb5c-2b75-40b9-8898-b9c627298806', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'a48e5290-7207-469f-85ea-c5f5b2150d1f', '39c84db0-c0b8-48bc-9602-f6371fee499b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9717685f-d479-46d1-885a-4cb17a430342', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, '39c84db0-c0b8-48bc-9602-f6371fee499b', 'a9998fe5-2760-4309-a904-8e4f6787110e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7ec462f2-83f8-42de-af55-8b6b5e2de3f4', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'a9998fe5-2760-4309-a904-8e4f6787110e', 'edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('204b62fa-20c9-47bd-bf32-ff24d7fb7ffb', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'a9998fe5-2760-4309-a904-8e4f6787110e', '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bc6d5658-ce6e-4b26-871d-1ccc1df07c6d', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, '81268148-75ff-467a-8d73-b8e4f734d83c', '7878934b-1841-4918-85e7-ce853fe8fdba', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('60a9ee92-68f5-4335-8ce4-67107e5309ed', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'e9daa877-1886-48db-abab-5516000c4d8e', '81268148-75ff-467a-8d73-b8e4f734d83c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('79d673f7-e093-49c4-8cab-fcd4a340c39c', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, '6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', '81268148-75ff-467a-8d73-b8e4f734d83c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dab64a81-9b1f-4c93-9a53-13a4f4b2c022', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, 'a9998fe5-2760-4309-a904-8e4f6787110e', '81268148-75ff-467a-8d73-b8e4f734d83c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('74fe3b51-2a5a-4d27-a527-6efdd14214fb', '51a4690c-bb0e-4be2-a285-31552f900db6', NULL, '81268148-75ff-467a-8d73-b8e4f734d83c', '42f0c634-d86b-4129-822b-f103cd6e0755', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('67eb1bec-83ec-4876-aa00-5c13ee29717f', '925e61ee-5120-4205-b609-18083af2c4d6', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '18630744-5484-4f55-94a4-15b6f8a8c791', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d7eb6df-a1e5-417d-b885-010094347b53', '925e61ee-5120-4205-b609-18083af2c4d6', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3a7f512f-841d-42c1-a380-b04e86d9220f', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', '23115d61-dd0d-4545-8240-2415ab603868', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6422bf87-17e1-4a44-8620-369cdb981f46', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '4b8fc5ce-2f77-43cc-8c11-caefef50e9e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('daa6daef-4605-4ff7-8092-8ce36182aecd', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '7ba7e7db-d2a0-4d8a-a982-4b592a6519d3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('af304e37-6161-49b4-a07f-9d2ff0fc83e8', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '28a1da29-5665-4481-be2c-23484fede329', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('200fb76f-7c36-4210-916c-6cc3770a8e20', 'd9c28f32-a87e-4f2e-af07-75a76004907b', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'ad772eba-1cc4-4973-b407-ee1292c8cefb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('d7bf8f19-245f-407c-a279-8c6a8ac4cb4d', 'd9c28f32-a87e-4f2e-af07-75a76004907b', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '2b1bd996-ed42-4b6f-941f-a02115b5c49c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dbcc10e6-1f85-4e5b-b8f1-d30aae66e623', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('5fc992c1-6639-471a-87a4-a80a0896e70c', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '9532739f-1149-42ed-bb1d-cac1d14d4380', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('f246d972-475b-4606-ac2f-94c0d79db3ff', 'd3e130d9-9288-4d74-8699-1778d2f5c151', NULL, '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', '04a9b874-65cc-460a-83be-47366ec3c35e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('339606b6-0f4d-412a-8fcf-c23c49cb362b', 'd3e130d9-9288-4d74-8699-1778d2f5c151', NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', 'fac002b1-7dd0-4def-9c60-ce441ae74bf0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cef6afa7-a6d2-4100-8d23-55559217b4b5', '110138a4-46e3-418b-8ce2-095da9c6b98c', NULL, '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', 'd0c2aec5-df1e-4a43-accc-292636a196ee', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('faf97694-ad24-4965-9e64-432da96eb398', '110138a4-46e3-418b-8ce2-095da9c6b98c', NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', 'c16db138-0d91-44b1-bd5a-b8361d1773a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2d664d49-5717-4a5f-a4f5-ec7743b5710b', '0565d216-af16-45aa-86e5-9ca55751322f', NULL, '345b8b7b-a948-446f-949a-2a903b460032', 'b299282d-1cfc-41b1-8936-2dcbfe1017ca', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('53fb7a01-cb8a-496e-a74b-c18aead55996', '0565d216-af16-45aa-86e5-9ca55751322f', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', 'bb211784-8f68-44ff-833c-3f501a33ad0f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('cf757bfb-f62d-42be-8bd3-cb2dfe1a9b3d', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'd80e22b5-9ba3-4ad6-a392-fddaa4a5532e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('242bbed6-71bd-47d7-a1a5-1cf3495c0366', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '2afe8e61-bfb1-44c3-8685-bb5390e9ffa9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('dcca4c69-4263-4bb9-a811-e6d89c8c3ecd', '147820f5-533d-471d-9f54-99e087ec37c6', NULL, '345b8b7b-a948-446f-949a-2a903b460032', 'd1fb0181-59a4-4c35-a6da-9c4c8c420f4b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4201e516-0d85-43c6-934e-41980b5f07a6', '147820f5-533d-471d-9f54-99e087ec37c6', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '7f04b4ff-ce51-4c25-b924-eda9c80beab9', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a710ad6d-cc4f-4a1a-8cd8-09eae7e33591', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'f7036040-6df9-44df-a4a4-40b8065234b3', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('00ddbf09-cee4-4880-a4c7-3dfe2c7b831a', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'aa8c9c0b-ac3d-4fe4-85ee-22876b77a346', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c863aeb6-d294-4b38-9cb5-a746d88ae3bb', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '5612b460-e9f4-4c7f-8f30-fabca1954260', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('9b17f569-8476-4251-a789-cfb74e3d3f98', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '793d3808-9277-4bc1-b39e-46fd0b5028d1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbde51c9-e683-4ff4-a012-a554ae9bf2bb', '1b444a8f-352d-4812-97aa-bd1e649201f8', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'a46e7e72-094a-4677-a2ba-b027e117c814', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e566df6-3722-4285-b7c9-529dae12bf44', '1b444a8f-352d-4812-97aa-bd1e649201f8', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', '34608829-3d7a-475c-b734-f3692e102b82', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bfc8f1bb-1257-42d3-aeb9-dff5b7f3b217', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '176b447d-ce47-44da-8219-a00244a3d5e0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0037af31-dbef-4d05-b8de-d96df9a4823c', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '22500be4-6daf-4c50-9120-a4d0c6491720', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('76d8fb6c-b943-48ad-881b-2e2bd0fa4a76', '0f05f1bd-403c-4239-8595-d317bba58a32', NULL, '5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'c772675e-39bf-48b0-b10a-1a2ff065c3a6', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('57a68c1c-1fc9-4739-b67d-f61282cd36f1', '0f05f1bd-403c-4239-8595-d317bba58a32', NULL, '9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', 'b096450c-b5aa-4a9e-9b80-8633ca2243a4', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('693be01f-b73e-4ff2-934c-c8401a2d54b6', '2cca894b-c08a-4b36-b809-d417cf0b305c', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '651a87c6-db56-4963-88a5-5dd7b74d53ce', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4589614b-cdeb-47aa-a747-83ba244d6100', '2cca894b-c08a-4b36-b809-d417cf0b305c', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', 'cf345447-6015-474d-9c1f-2fe7b879edf0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6b78ec2b-56c2-4f95-a57e-4e227ae4c4a9', 'b4acab9a-7a54-42df-bd35-717f052b407d', NULL, '81aefd8d-c7aa-48a5-869f-1df15b4b68ae', '9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('fcd6e589-bdd7-49c2-a4a4-f1033039ba84', 'b4acab9a-7a54-42df-bd35-717f052b407d', NULL, '173a65d3-7eb4-4910-a83f-08ce5ed65583', '6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('976d530f-a6a7-4ea1-bda1-087b3605a970', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', NULL, '08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', 'c7a074b6-6e8b-4570-a8b3-baf483e67c14', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('59529140-a688-4039-8ca5-9c6bb81e1e5e', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', NULL, 'e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '16c5c51a-6b85-48fc-a19b-b1d0319c414d', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('1c95e864-7f9e-4d8d-a834-225c93cfdc2d', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', NULL, '345b8b7b-a948-446f-949a-2a903b460032', 'ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0b668bc5-920c-4c00-ad0a-752ec371bc25', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', 'a5de5a65-81f3-482b-baac-4054940ea7b5', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6e7918ee-dfb7-4d0e-8aba-e0f281e40ecd', '9f3ea248-0492-43af-8430-2cbe4ae3338b', NULL, '345b8b7b-a948-446f-949a-2a903b460032', 'c32e6121-a5fc-4345-b6e6-26eda31d266e', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c5313615-0a03-4ff3-bd3b-f38fc7bd68f0', '9f3ea248-0492-43af-8430-2cbe4ae3338b', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '96383615-0c59-4cc9-9292-723a1c0f4a52', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('e7c0f355-8789-4d74-bd38-6a7f77902823', '02362331-8069-4712-9c39-371973edb192', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'db092336-0de9-4c19-b5a7-9f035596b364', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('4f2835bf-09ce-44c1-8dc7-fe4ff02fc494', '02362331-8069-4712-9c39-371973edb192', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '63dd3ba5-db8d-481b-8eb5-ee982522f4d0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('b7428b9a-e165-4a81-b1b9-5187e0fe4cd6', '899a89c3-6715-4a37-bb69-1ed124e0a23f', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '67f40c40-c638-4350-a11b-951b0bf73bf0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('3ca77977-6015-4ace-9665-be334d0128ad', '899a89c3-6715-4a37-bb69-1ed124e0a23f', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '0166244a-b22b-4567-a09d-bd113f3430b0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('bbe6ea5d-c6bb-448d-a92e-0ec2e61f9985', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'b969f3ba-2936-4937-80ff-c440300d3f10', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('0d245a6d-d759-4b8f-b1b7-44d6ce23ea8e', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'f6d1a800-dbfe-44d3-a939-e168760203dd', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('80101a12-d237-46ed-b8bc-27eab76c14a7', '568b153a-13dd-4510-b681-13b53f866091', NULL, '345b8b7b-a948-446f-949a-2a903b460032', '44a7f281-7acd-4536-a7da-db74fc7d5a30', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6154c85c-c362-4b71-b842-8b2bd73e4285', '568b153a-13dd-4510-b681-13b53f866091', NULL, '0eabdcfb-e308-4e52-8c7f-27643332c947', '51278cdf-daff-4fe9-90b2-1e651847e0d8', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('050e2230-78e6-43ae-9278-eb70a4a6909b', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', '852d7666-33fb-4246-b2c4-1efbecba4da0', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('7d5320cb-c8ce-4c24-988b-72d8fcc43b0f', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', 'fcc39eac-cca5-44fb-b728-9b4df8aa3874', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('261a0a0b-a0a8-4493-96f1-10f8eb18e01f', '105e8365-c8b6-4d69-bef4-8bc388524462', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', '6a568f34-8ab2-4a74-941c-266e28a52836', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c1c5ea35-68d0-4e81-b659-9b0e7894364e', '105e8365-c8b6-4d69-bef4-8bc388524462', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '8a4f7331-7bdf-41a9-85c3-5ea327063d71', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('c57e5955-fca4-4ddf-8cb1-c6731cd7bd70', '5b516553-2772-4591-b4bf-4f353e598c79', NULL, 'ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', '526ae830-0342-4a87-a95f-07d760391fb7', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2b408520-c1ed-4d41-8457-7d9496910c56', '5b516553-2772-4591-b4bf-4f353e598c79', NULL, '6df50d79-b958-456a-ac84-a8786f0f18a7', '08a87b5d-d5eb-4d77-aa10-1afa61c87e38', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('6cc382ac-c4f0-4341-80ac-32d9d2eb28f3', 'df223672-3c4b-4044-8f54-1794a50c957e', NULL, '1d24331c-d029-4539-8b40-2b891f6a75a9', '63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('a6994a91-4291-4342-bc50-9a7bd25f7b20', 'df223672-3c4b-4044-8f54-1794a50c957e', NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', 'cc4e1270-9d63-449f-ae27-a492326f72b1', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('72e5484a-06b8-4fcb-b039-42dd92d1b54a', 'cd8cd45a-a4af-46ce-a434-5b5208095346', NULL, '1d24331c-d029-4539-8b40-2b891f6a75a9', 'f03cc85a-b722-43f4-8d56-a29f1387e692', true); +INSERT INTO rbac."grant" (uuid, grantedbytriggerof, grantedbyroleuuid, ascendantuuid, descendantuuid, assumed) VALUES ('2f57e665-78f6-48fa-b811-d8537ff580e3', 'cd8cd45a-a4af-46ce-a434-5b5208095346', NULL, 'bf27b482-99fb-43fe-8789-b926b9131a32', '16994a15-ef4b-4c7f-b123-e9c2e03919d0', true); -- -- Data for Name: object; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 1, 'rbac.global'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1c52fc2c-6390-425b-993a-788365e85d05', 2, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 3, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('441d53f1-af50-4e73-9b53-48468700d257', 4, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('483c5cf4-8c5e-405c-8f98-8139e80a7dce', 5, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('aa9af033-e564-421c-b235-2dd7d5b96559', 6, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 7, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('25083463-3713-4a20-b579-c1e34d542bcd', 8, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('dbf6038a-0387-400d-b083-411ba014ff6a', 9, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 10, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c5bd22df-9452-49c1-b369-b98c10a90853', 11, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 12, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a8380163-1e05-41c9-9614-a0af334d49ac', 13, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('03229434-fc7d-43f6-89ce-892d4fa2f8d2', 14, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7321b71b-7c08-49bf-ae45-12f69644378f', 15, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 16, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9b4179ba-a41d-47e3-bbaa-a180b2965f04', 17, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('31eb8927-f7e7-45db-a350-bece46fd2300', 18, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d5b31ba0-0fa5-4e89-871b-df13e4d3834a', 19, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('825cdd9a-8562-47ad-ad23-58ed52dbbab5', 20, 'hs_office.contact'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('caf3808d-21ec-4391-a57b-ea59eafe2c75', 21, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('89f83a40-5d7b-4f33-ba0b-29207f263f15', 22, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ed1ea73e-5097-42c1-ba31-fe11480f3089', 23, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ea4932ab-63b1-4e5a-9965-6f8604a14923', 24, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 25, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 26, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f50adac4-8248-4179-bfaf-26f03d96d13b', 27, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f4e3fd05-43f8-49cb-a167-91a91640a117', 28, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 29, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7e11b785-e756-49de-a3b3-2f001ea79993', 30, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d616957a-e628-498e-b230-be25244d4e30', 31, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 32, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('348a082d-3ca8-44a0-adc2-06a2aed23cd9', 33, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('55dd7d96-751e-43b2-afd8-4803a55b422a', 34, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 35, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('351d423b-c277-4300-afcd-7cdc9942f48b', 36, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('08e856b7-4c1e-4f9f-96ad-6127de069fa2', 37, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 38, 'hs_office.person'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f72c1add-5a68-445e-b3b3-4d4ae33144d9', 39, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 40, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ef085ca0-2cc6-4497-b739-1668e6acb687', 41, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ddb4f0d0-83d2-43de-8024-a98953c1e821', 42, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9702bd74-e7d9-440a-a210-64905274c259', 43, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 44, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('262a75f6-0c99-4101-8301-0cb95f7cb81e', 45, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6263942d-84d3-40de-b460-04c52e2a7f36', 46, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f1d2c18d-4cb0-481e-a948-934324a74f61', 47, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 48, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('510f22fa-273b-4c27-a99c-0ced2c8ac722', 49, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('92b842af-05fc-405d-b0db-7a667228c221', 50, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 51, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 52, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d8b3342b-fd1f-4db5-83d6-9b13f63a3058', 53, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('3c0abfbb-0006-426a-903f-6f435e03276e', 54, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('76c70bb8-38cc-404e-ae2b-710f94e708a2', 55, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6ff8b863-15dd-4646-96bc-fdec9d271aba', 56, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8c9e386f-d331-4e54-8d7d-ab768a575c77', 57, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 58, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('14ca6db0-b2db-403a-98f7-09a4aece479e', 59, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e9507d52-a4ed-46c4-a761-c3a01fb42511', 60, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('82771891-737c-4c22-8321-c2542f973dbe', 61, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('5460e6bc-ff8c-4137-b262-9587833fd26e', 62, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bd58eafc-8b10-44fc-9877-fa823ec2168b', 63, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 64, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1586854a-cd2a-4378-ba84-fd371c8d06c7', 65, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('29759ed5-a529-4555-b0f8-77b722d5cf48', 66, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('568eff85-93e4-43fd-9e46-bf46ccbd76bb', 67, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('68821d28-1f12-40fb-93cd-c979ab75c04e', 68, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bd150cec-ea90-4cbe-bd1b-872330452c1b', 69, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ef673d13-b575-4c2a-84e7-849432e0213c', 70, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('dec33315-b6ee-4257-8b4f-79ee2b3f86af', 71, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('452aae38-0b88-4771-b632-9d883909bd8c', 72, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('354920fc-1b03-4c43-a9ee-52d0b11e07cc', 73, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e77a9a29-bc8f-48ea-a854-6efb979b86aa', 74, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('68dea4fd-58cf-47bd-91af-745dcf8aa697', 75, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 76, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('171aa70c-1909-417e-9daf-b17c36857995', 77, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 78, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b4a78230-3b9c-4cca-971d-b9c2171f22ca', 79, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2267ef17-1092-4799-b042-8b06389bd4a9', 80, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 81, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('05f9829a-f505-4758-891e-5f38b5242d75', 82, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 83, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ede0d030-8e66-469a-a11f-43f818863809', 84, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 85, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('505337e7-2099-4d83-a2f5-7447bc63a387', 86, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 87, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 88, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d0c7ee55-15a9-4773-9b7d-a2f2d6833469', 89, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8ae4d050-ac5a-4bd4-affd-53de24264815', 90, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 91, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('264dc502-036f-4af7-b5aa-f991cfe795b5', 92, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9c568d47-146a-4be9-8ae0-c233ef79b212', 93, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('3b3cb721-4348-4aae-afea-5935d3e9475c', 94, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 95, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 96, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 97, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c19283ee-f365-4bcc-9251-c9d5d45aedfe', 98, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 99, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('526ddec1-2738-48dc-a696-6c3579201851', 100, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2cdad63b-9a5a-42db-a383-9c552f1d16c2', 101, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7ff40241-2808-4bd5-a1be-22636c8fd26e', 102, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7afc8c46-3635-4456-bdfe-6ce0702fff28', 103, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('63e06470-764c-41b3-92d8-e114d4e52664', 104, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8bd78e9a-428e-4400-bc0e-543808a6ebe3', 105, 'hs_office.relation'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a6773052-fbc1-4f5b-81df-17d59e7bc76b', 106, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c73dc87f-990b-4c2a-8809-7be08b6d1535', 107, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0bb9a82f-172b-40de-ae96-37fbb086d4d7', 108, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('45fd8262-37b2-4d6d-b2f9-26d1561d307f', 109, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('66a88623-096d-475e-b36c-1748db1503dc', 110, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 111, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c3657447-959c-488f-adcc-9402a118a8e9', 112, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('94c3062b-ec85-469d-824d-885a125e5a52', 113, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d6bd08e1-4c8e-4727-88ae-9e287723f74e', 114, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f32722ac-acac-46cd-b3d9-171c1921f2bc', 115, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ad6d5da4-b239-444b-b869-a66f4023c7cc', 116, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a7f3294e-b64f-4e46-860e-99e3617329bb', 117, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('59a560aa-78c5-42be-8c9b-76329131b0a6', 118, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('23272f3b-28e7-4777-9f86-5821646343ad', 119, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 120, 'hs_office.partner_details'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 121, 'hs_office.partner'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('3162b2b5-9fda-476a-94e8-4e0265758d31', 122, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0db2a143-0ab2-473f-84f8-d570ee119e04', 123, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('5d6f9f7a-1821-4176-884f-fe191eb0de3d', 124, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6191fa62-0cc3-4172-9696-4145049b64ce', 125, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d93f1bac-c54d-4215-9831-ec3ebd08fcd4', 126, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 127, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('eab4b615-a7ab-438d-953d-b5da6485baa4', 128, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('50eef0ed-3045-4b45-9fa4-3d4038c626e7', 129, 'hs_office.debitor'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('860a931c-5819-4cc8-9379-c2d530cd30f6', 130, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 131, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 132, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 133, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ca0baf78-f634-430f-b9d3-351a6d1a6723', 134, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8a6743f8-ecf2-4500-8983-d657b9d61b18', 135, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cce6083f-6122-4759-85a9-5ac021b2c95d', 136, 'hs_office.membership'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 137, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7761056f-60a1-4981-a45f-55097922cfcb', 138, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 139, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1ee9f29b-08b9-4651-a866-24e3c6c1f337', 140, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9a5d0728-35a4-4fed-8f48-9944255ddee5', 141, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0e352061-8280-491d-9125-d1547e3662f8', 142, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e7f9797c-0871-4df4-b9ef-e658e97825c0', 143, 'hs_office.bankaccount'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('23731ee7-5762-4c61-b825-d19a31217388', 144, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 145, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a41933db-1aac-4207-a8be-1e90621d834a', 146, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 147, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2c3575e7-0ee8-414d-a7bb-f3604e526075', 148, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 149, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('84f64b9f-3d8b-420a-b75a-782d6619028d', 150, 'hs_office.sepamandate'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cc866944-946f-4608-9ba0-fd309f0b67de', 151, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 152, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0344596f-43fe-4802-8b57-11cd9574b644', 153, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('18b7c4ae-621f-4618-99c5-f22819b9bf32', 154, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 155, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9269215d-0c94-4114-90f7-faace9ddd667', 156, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ace9fec5-5880-4e30-96ea-b843d7001d83', 157, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7659fb30-f484-469b-8817-71f19eb71022', 158, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4eb3b112-412d-46ec-b127-b9c76f7cde99', 159, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1acec5cf-f771-48ed-9c15-00505524d3b1', 160, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('31289955-0d15-45b2-9ffc-07f7cdd6afd1', 161, 'hs_office.coopsharetx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9a9713e3-8f23-4acf-b260-234c6cd3afbe', 162, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('768f09ac-20c4-4952-9175-cb46e5acb491', 163, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7dd37099-29cb-4932-b412-443444dc0027', 164, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('419e123b-0d37-4559-8a0e-61117c653510', 165, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a65dde94-715d-4eb5-ab56-bf6646857bb0', 166, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 167, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e5896125-6348-4a13-b947-71ebce17b19b', 168, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 169, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 170, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8e9febfa-b05b-4374-97b1-68b1f23c317d', 171, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 172, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0abc3f6a-3232-409a-b81c-9416487b9290', 173, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('80944291-bb84-40fa-bf0b-ac429f7f6220', 174, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b3765c8e-2e21-4cfb-99fd-77a351c960e4', 175, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9c34861c-1b7e-482c-8346-b68835f787c9', 176, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fd978b61-e7ae-403e-82c1-d5f298ef01a9', 177, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('53a9b0ea-3758-401c-bdcd-f100511d04dd', 178, 'hs_office.coopassettx'); -INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1f85fb03-656d-4abd-962c-a4f142f93652', 179, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('33af1d05-a7de-4552-9118-7900fe5fde7d', 1, 'rbac.global'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('691db509-b67e-46ec-a859-c4cb05fbbd70', 129, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 130, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d363745a-e94f-48be-8397-4b361570a54d', 131, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7a334268-7d11-4765-8fa9-17e2c36cca7a', 132, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('33b40eee-30ed-4924-859d-6c58b5aa4124', 133, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('16da0560-e134-41c5-aafb-1f7a5b33692b', 134, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1fc10779-390b-40ff-b641-b6b5e2634ebb', 135, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('caac18bd-9277-47ac-99bb-368e2d64dac0', 136, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('eead6995-dd54-475f-8194-74445c421305', 137, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4b68de11-a658-44bb-be49-ad592e73e3d8', 138, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 139, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('25358342-4f90-4397-b4c4-d90524ac0b7b', 140, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4997dce8-4927-4a10-a7b3-16c574eb79c9', 141, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9dcab961-1465-40e3-8d83-357b22af2674', 142, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('29e2d42f-5f00-467f-ab73-f2ff59f2792d', 143, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('627a274d-55b0-42e7-963c-8b0cc3e204b4', 144, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e8151525-ae0c-44fb-9755-72be88f7f6b1', 145, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 146, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c3b8c521-37f4-46b8-89f7-1931159e9a14', 147, 'hs_office.contact'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('137fb47a-07d4-42cc-b2ef-8e371041cf41', 148, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 149, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cd48cfd6-6313-408f-ae7d-9af047d0c22e', 150, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 151, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 152, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 153, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ff030436-d19e-4606-9d48-7e192eaf469f', 154, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c8050a1b-0d28-4aa7-ac77-958c99152cd1', 155, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('89bca3fd-d7b2-46f5-821a-64c5566d03f1', 156, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2fd1ba30-936a-41a8-8fbe-e93be547f44b', 157, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 158, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('38cc5d59-085f-449e-aeb3-439febbabd9b', 159, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 160, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d7485220-e4f2-4683-9e84-7728a2ef4ebf', 161, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d6488771-b5c0-4f39-a6d6-81af6ca982f4', 162, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7c10a7d7-bac2-41e2-a5c0-963e191239a8', 163, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c3d97013-0ceb-4cc7-a59b-a4f70107acea', 164, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e50c983a-060c-47c9-9d47-efd552b1e618', 165, 'hs_office.person'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('48618c28-9304-4ccb-b022-e2cbb1832944', 166, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f415978e-b5c2-4a99-962e-3d31a4658780', 167, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('201b417e-4ebe-458b-a7ce-a287c0ad9287', 168, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 169, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f85f9a58-7651-417f-b1b2-cf522bcce415', 170, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('78123dac-fed2-4e3e-817b-0c13a2129dfe', 171, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('463c4856-495f-4ab3-b26c-7b2f96b05ab5', 172, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 173, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ecf9603d-1bc4-417b-b953-552b8f08f6f3', 174, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('dd0eae3e-7f45-45dd-b686-f39e046918b0', 175, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('164d3cde-e2ab-4239-9dbf-de1c963158ac', 176, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 177, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a85fd289-2383-4abe-b796-9b0b47d702d2', 178, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bc8c4b35-c55b-4c3e-9122-94485909b17e', 179, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bcd0fdb5-7415-40d2-8265-85113a4b66be', 180, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('268c2ce6-8945-4393-9916-ac90050f064a', 181, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 182, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('86b706e2-9225-482e-b82a-d4ac4adab065', 183, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2db1a3ce-910d-4f3d-be67-b3a0a598d834', 184, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 185, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ddbda55a-0143-4224-bb6c-7ec5e8b79465', 186, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('47b7bd3f-8668-4934-bee9-56708e835d7f', 187, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('80a9daef-e282-499a-ab2f-98a016edb8f7', 188, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('93d9827e-63dc-418e-a021-25b400847b2e', 189, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f4219fae-353d-4324-90ca-9f313a8c1c17', 190, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('219baf3d-0bb7-4252-b92f-4cfa97cb633c', 191, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ed0fb977-6512-4452-8505-378fcbbd5060', 192, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 193, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('af82432c-09a8-42a7-9525-e9095025d4dd', 194, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f691585e-eb5e-45bd-8d8a-8187094ed0a0', 195, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('65879210-cf7c-4e5b-a2d1-742a42fcb488', 196, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('97e5ed67-e81c-4c12-b354-45db951901c0', 197, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a0e5508f-533d-4f7c-9602-6f23fa85e601', 198, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2eec1138-d2ad-43de-a105-605d0182a1f8', 199, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 200, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fad03414-b62b-45d4-93fd-51c52149762c', 201, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('48a0fa39-0d72-4c0a-800f-afed02865850', 202, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a84434fd-e879-4208-a8e8-8095e22b72bf', 203, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('93d87d13-efdb-4d31-83e6-3b13db983c12', 204, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bad214a0-5220-4433-8714-52e4c736585a', 205, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('5add96a4-6fff-4fe2-8628-669d72252417', 206, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2185083d-3134-4b30-9dcb-674058feaac2', 207, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c60e1d4e-01a1-42a8-9521-1681c77b350f', 208, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('17ea3654-289d-4892-a837-3ddcaea2d7db', 209, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('60702c01-7285-4eea-a937-6019d6e3661d', 210, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a66a844c-e5b3-4569-96cf-06197abc0d2f', 211, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f7ddff21-e58a-426b-a693-46a2b45c9d4e', 212, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('8363ec62-6d90-4dd9-940b-6073b3246c39', 213, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 214, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bc9fabea-d44b-455c-87d6-a0b0428e7768', 215, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a13af5de-4315-46dd-ae08-427ea72b35a0', 216, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cea1bd90-a42c-4cbf-97c3-33c134537bfc', 217, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fac4bfec-9f0b-427f-b032-ca54188d0a76', 218, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 219, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('18124f89-8ce6-4813-8efe-3ed47b7eb453', 220, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cbda6432-b849-4787-84ab-88e680dbfa72', 221, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f3b07a47-e7ac-4fea-850e-1d785edfea34', 222, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4761d35a-2de3-4415-a91d-f53d15162aea', 223, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('04c248f9-20e0-42e1-adf3-b24d2ff7a272', 224, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7113f4da-b942-4f17-97f8-d3fdfd2966c6', 225, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4dbf555d-3375-442e-a87d-815d1492af55', 226, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 227, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e74992df-66a8-4572-9e55-ec7b210f04e0', 228, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 229, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 230, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('047364a5-9dcb-4027-a94c-e35f4646860e', 231, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('08e80808-fb86-4503-ab9b-9652af82d5b5', 232, 'hs_office.relation'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6da29bfa-4744-437f-aed3-2695571c58bf', 233, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('91b63591-b1e2-4c65-8ad2-c607be4c1238', 234, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('7b7a528d-a284-4d0d-99ce-73f2a7585f78', 235, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('db7f287e-dfd7-4627-88e3-407cac226472', 236, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 237, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 238, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('90604765-0e48-4363-83e4-1c2e9e4a8f33', 239, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('029b1c78-d68b-48e6-83e5-8883b9cefe7c', 240, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a7494bd0-af97-421e-bfa3-53bd97fb1df8', 241, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('58ca016b-15ea-41e3-80ba-2603bf736619', 242, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f1048d9f-e560-459a-91fe-f769ef049648', 243, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('defa6288-bed7-4ed8-ae6d-fbbb3530a632', 244, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b2cd9234-6651-4c9a-818d-f48610d76095', 245, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('25b8066a-59fd-4733-90f2-8ea80c826fff', 246, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('871eadbe-c143-444a-966c-cc4494ba93bf', 247, 'hs_office.partner_details'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c83c9583-a825-4a2d-96b7-fec9dd635fbc', 248, 'hs_office.partner'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 249, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('84d4763e-0133-4d81-946b-fb64d1a3fd26', 250, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('bdfc3748-abd1-4bce-a239-f5b4df6715c4', 251, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('67c2d793-212f-4ce0-a750-b18224a93c73', 252, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('3692b171-10ef-4f20-97de-ed5fa562ca46', 253, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ce424fb0-bcc4-43ef-bc62-e923fb337fde', 254, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ccbd7baa-494d-4bfc-b5bb-4310e607df04', 255, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ade3baa7-760f-488b-962d-7e365ad1402f', 256, 'hs_office.debitor'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f97e9751-6e67-40fb-b840-b818dc69afcf', 257, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('db1fa6bf-85ff-4302-b7c3-9a66f9761830', 258, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cf4c2c71-c6a0-4887-83a3-67509371b8af', 259, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('af682fb0-f06d-4a2b-affb-40487a079a70', 260, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9c468212-9e05-4b29-9d75-5a2c147b2b8f', 261, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('ace60d06-0635-4c2c-bb4b-7233c19862fc', 262, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 263, 'hs_office.membership'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9b403ef6-3fae-4698-9b21-2627c51fa254', 264, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f9811182-d400-43e0-ba9e-de745c9e82a3', 265, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4924877c-c487-4e4d-8b14-901e9b6069ac', 266, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('831a608f-fefe-425b-b740-1786f856c680', 267, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 268, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0bae3550-be89-4c0e-9ba4-01bae0419be0', 269, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f3140f7e-5045-4534-92aa-e918895bfafb', 270, 'hs_office.bankaccount'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('3d0e6bb5-a62e-4225-a2bb-967c76926705', 271, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 272, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('850aa448-3a14-440c-9834-0b7ef6d83c39', 273, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 274, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('466056f2-efc6-45d6-b778-fa111db7a18b', 275, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e2dd08d5-2083-44ef-bf22-57898af08e3e', 276, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('51a4690c-bb0e-4be2-a285-31552f900db6', 277, 'hs_office.sepamandate'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('925e61ee-5120-4205-b609-18083af2c4d6', 278, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 279, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 280, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d9c28f32-a87e-4f2e-af07-75a76004907b', 281, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 282, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('d3e130d9-9288-4d74-8699-1778d2f5c151', 283, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('110138a4-46e3-418b-8ce2-095da9c6b98c', 284, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0565d216-af16-45aa-86e5-9ca55751322f', 285, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 286, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('147820f5-533d-471d-9f54-99e087ec37c6', 287, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('eb40ed40-ebf5-401a-b498-ecc46928a17d', 288, 'hs_office.coopsharetx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('f9c724b4-3965-4cfa-bc93-5b780b2362e7', 289, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('1b444a8f-352d-4812-97aa-bd1e649201f8', 290, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 291, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('0f05f1bd-403c-4239-8595-d317bba58a32', 292, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('2cca894b-c08a-4b36-b809-d417cf0b305c', 293, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('b4acab9a-7a54-42df-bd35-717f052b407d', 294, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('fab99b6c-dd05-451f-a9e7-80891ec94db1', 295, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 296, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('9f3ea248-0492-43af-8430-2cbe4ae3338b', 297, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('02362331-8069-4712-9c39-371973edb192', 298, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('899a89c3-6715-4a37-bb69-1ed124e0a23f', 299, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 300, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('568b153a-13dd-4510-b681-13b53f866091', 301, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('6d4e335b-f22c-48d8-98b3-0da4ad759e65', 302, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('105e8365-c8b6-4d69-bef4-8bc388524462', 303, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('5b516553-2772-4591-b4bf-4f353e598c79', 304, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('df223672-3c4b-4044-8f54-1794a50c957e', 305, 'hs_office.coopassettx'); +INSERT INTO rbac.object (uuid, serialid, objecttable) VALUES ('cd8cd45a-a4af-46ce-a434-5b5208095346', 306, 'hs_office.coopassettx'); -- -- Data for Name: permission; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'INSERT', 'hs_office.partner'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dcb6787c-3652-4ddc-bea1-6e32efab1ab8', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'INSERT', 'hs_office.partner_details'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1d26a525-6c01-453a-990b-8208eb077058', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'INSERT', 'hs_office.debitor'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8a906922-c5cd-41a8-927e-6506b96a722c', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'INSERT', 'hs_office.membership'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f731e75d-f892-4738-976c-576071605327', '1c52fc2c-6390-425b-993a-788365e85d05', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e2fd67a6-43c3-4402-ad82-5675d15c619d', '1c52fc2c-6390-425b-993a-788365e85d05', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f360669b-74d4-46ca-a651-bbadc07e4d8c', '1c52fc2c-6390-425b-993a-788365e85d05', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('73da7922-3956-45fa-9101-2a53a494d5c1', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1e1478e6-737d-4275-9ac2-8b9f1b020efc', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e8782aa9-f679-4b73-b584-cd6f9bd7e2f7', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8eb7208b-33f9-4e80-9071-ba1b76b79f75', '441d53f1-af50-4e73-9b53-48468700d257', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bc68123f-b589-48ac-ada5-6ec38993b77e', '441d53f1-af50-4e73-9b53-48468700d257', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0bc96a92-5afa-43cf-81f8-63c24e7d82bd', '441d53f1-af50-4e73-9b53-48468700d257', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('60eb6016-51f5-40d5-965c-697d9ca9b3a8', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e200c0d7-cec3-48ca-be23-61fc26739dd3', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('023e5366-3465-4a4a-ba48-613a72e043c8', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('154d1dd7-66e8-43ab-9b81-796758801837', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('66d8af90-61e5-46c0-a425-501a4320d913', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6e061f41-d64e-4cec-ab4c-016ffbf16cc0', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45cf6473-ef59-46d7-a313-99d7faa6cba5', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('607b321a-2e68-442a-ab4c-c603d2f36491', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3ff75cbf-35a8-4a35-b38e-ef723b8e2b86', '25083463-3713-4a20-b579-c1e34d542bcd', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('98d3874a-b4fe-4355-86d1-d0508adc32b9', '25083463-3713-4a20-b579-c1e34d542bcd', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dac07f03-0dc2-4de1-a7f4-13145acd41b1', '25083463-3713-4a20-b579-c1e34d542bcd', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5545c680-274b-476b-98d4-e3fa99c4f4e4', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c0c83cf5-e355-453e-9791-2d850078d07b', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('083a28d4-199f-4cd6-9aa0-5cb0b4aac74e', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7aeacd93-2236-43ff-bbb3-a7ed6ae5becc', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('205f3e0d-445b-4bfb-a16d-fbde4399c1d1', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45350f64-13b8-47e7-ba17-15ba11a61981', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c4658a5b-6d9a-4482-830a-754759afa33d', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('14951d5e-990f-4bba-a3fc-a1a9f8a3d714', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1c6c6416-1de8-4134-893f-c0b3382a4248', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ab3678ee-6848-4dd4-a25e-96566a038ef0', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dcfebc0f-3615-4acb-9117-b060f6946fba', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('83da6f4c-a933-44a4-a317-b8b02eef997c', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('052cda7d-c78a-49cc-8582-b161691afee7', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45375195-71ed-41e0-a357-f3c0db47e1e9', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cc20b289-5f51-4be7-af41-151a0d8aed8c', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ea3b4e3b-e967-4238-8be5-ef1348aac8d3', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5ee1eaa5-dae4-45af-8c9b-af4b44c192c9', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5', '7321b71b-7c08-49bf-ae45-12f69644378f', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a8737274-244a-4f6c-8095-6e3e51ad10c1', '7321b71b-7c08-49bf-ae45-12f69644378f', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5d73f76c-f609-4650-9575-18c54c52251c', '7321b71b-7c08-49bf-ae45-12f69644378f', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1460063c-a1fd-4a4b-a7f3-13aabd41c021', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57cdb6cb-097c-4f08-8daf-ce99536adb9d', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b566ded5-a4ab-47a4-9062-460eed731140', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f3818a69-8669-4892-a8cd-e278ce45c518', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fd496f22-22ba-4d27-a87f-c8bf1cb1fda1', '31eb8927-f7e7-45db-a350-bece46fd2300', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a344984d-6c4e-458f-8efe-7bd7459a3d8a', '31eb8927-f7e7-45db-a350-bece46fd2300', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1a3671c5-dab1-437f-8487-a53c54cc6146', '31eb8927-f7e7-45db-a350-bece46fd2300', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('903acdfc-150f-40d1-9f89-819bfc1711da', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('46461eaa-21f8-418f-9c6f-7fcf8e86513f', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('836684cb-c167-4dfd-b8fc-35424558fb5f', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6ac59ed3-6976-463b-a7b9-60a6dd27b46c', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('22c7cae4-b6f1-4398-beae-fe0d3616e062', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('47b14246-134d-4543-b287-c52e6af5b78e', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d7179a9f-6981-4794-a295-ecfe89d3a10b', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7225b959-f7bb-4530-a7f8-2f64811dd98d', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bfef72bc-1d20-442e-8e7c-1feac7e3f1fa', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32d71457-5a04-4edf-87ed-850f2c354718', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a7c2d342-0472-49c6-933d-6674ad52588e', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bcd721f1-4e79-41a6-9019-b9c3ed63a4a5', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('39eb942e-dcef-4f04-8b50-ff269434e769', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5d5d557b-2893-4a40-9dc1-c160b7281437', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d6fae1c1-a7a5-4daa-8ae2-389172131648', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('94d61a3c-08b9-46bb-bb3a-c4dab0521df5', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a2948c08-e5c9-4be7-a8fd-ec429e86bdf3', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f89d32df-b3fd-40a3-bbf1-cf8220dfb43b', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c594394e-fad6-42c5-90f7-a3dda0b8e028', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f3455019-460b-4a40-ab4a-246190901887', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f1e50651-1a66-469b-8a7e-5063a7d1852d', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8c7ecd7-7ec9-46fa-bd96-aac315e96771', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('97c9bdab-30ba-4ea5-acc2-6777123f2ce5', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('64aa40b9-9dc6-4254-994a-04a2198a606c', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('27b4fff1-44c3-46a5-8fae-c72a49d4bcb3', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('73ecfc31-bde5-46cd-9a59-37e65c7db8fb', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('24ea1e85-129a-4d56-aa69-1e9ac58d0104', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d009618e-5194-4703-8008-54da927c3bd2', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e8400d5e-ab6d-41d3-86a9-a6df2113adbc', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f7e8a61e-ef07-4720-ab46-63ce8570ffdf', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f28aa0d4-1a57-4301-870f-fb7c78869cd6', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('61147c69-ed43-4813-978e-5aa7576dd2bc', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2215d918-b008-4253-a36e-b23e33191470', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5e496a56-e275-4ba7-8c07-c171a6b44e72', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('797d0a10-4bec-4f32-b746-671b6a46bbef', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0ff11824-6467-46b8-8f52-45dd6fa89041', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32698556-c076-47c6-8d84-d311090cabc0', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('481c04fb-38e2-49a5-a9a8-065ac59cd53c', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('15a81a95-9ddc-497b-8835-6a2b5b74fd89', '7e11b785-e756-49de-a3b3-2f001ea79993', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e2b730f8-2419-4709-ac41-2965913182e6', '7e11b785-e756-49de-a3b3-2f001ea79993', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('62bd04a2-1f7d-4b0f-b060-93a972f0b7d8', '7e11b785-e756-49de-a3b3-2f001ea79993', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8aa7fbed-7490-4f2e-b22e-5adfe5d98304', '7e11b785-e756-49de-a3b3-2f001ea79993', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('14a306eb-e654-4717-a540-f25462a9f980', 'd616957a-e628-498e-b230-be25244d4e30', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1be781cd-2fa0-43a3-a2a1-76b2cf867603', 'd616957a-e628-498e-b230-be25244d4e30', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0d61a1e6-778f-4c91-85aa-b5b26373d810', 'd616957a-e628-498e-b230-be25244d4e30', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1', 'd616957a-e628-498e-b230-be25244d4e30', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('064424c2-9d11-4949-a987-e2696fcda1a6', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7fa6cc60-4bb9-418b-be4f-4aa72524e214', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dae319d6-1e84-43c2-ac4f-a2baa73ecfe8', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dcbaa9d7-ccab-4d93-b93b-47495769872b', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b58e78f4-cae9-410a-b5b2-6d38e4e1b483', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e0c07495-5fd0-4d25-9713-4b11b1f31557', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('294cebc1-7d37-43de-a2c3-ae529676dfd6', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5906a152-7e12-43de-b12c-223ad1cdbdbe', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c468a9b-01c0-4847-987d-5f5469d505fe', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('65fa26a2-e501-442b-9efe-30c756b4eae9', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('75c391b5-1092-4689-839d-ace89825807f', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dd986aa4-5f80-47e8-8346-a5b24cf6f91a', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('773e4625-4c58-4a10-affe-9ecdb6582a51', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bd1892c4-625d-4282-966e-c852b72bf84b', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1774b4f2-0887-4a09-bf87-ada95aa91f0e', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('feed202d-52de-4e5a-a607-3eb9bf2003d9', '351d423b-c277-4300-afcd-7cdc9942f48b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e92adbd8-4e34-4953-81f9-ddbc53c01718', '351d423b-c277-4300-afcd-7cdc9942f48b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('438b8588-ce9f-4d79-9596-886a7563dbb6', '351d423b-c277-4300-afcd-7cdc9942f48b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('530d8d03-1827-434d-ae3a-2569d140fcf4', '351d423b-c277-4300-afcd-7cdc9942f48b', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3c754d92-32d8-489f-b18d-ddc6795b8178', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a5f0f6a9-187f-4b93-b8d6-e536a8494be7', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ba846e43-deb5-4d37-83f2-e783ea17de2d', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('80b1933f-300a-43d7-8e3f-5ada1fb7c9be', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c0a43132-204a-4905-8d81-e172188b51cf', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fba0b7cb-bafe-4308-b95b-467050031247', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eba62494-ced5-47fd-b8be-2ca0eea0c71f', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8239420e-41f1-40b0-b344-aa94a71aa03c', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'INSERT', 'hs_office.relation'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2dce17a3-19c6-4199-97ce-7be6c2b8ae77', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('53cabb17-6406-415c-9d81-299a473e6241', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4c5423db-72ec-4af8-9f2c-4763304185d4', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('807e60d2-e206-4fcb-8411-e9c13a305095', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('98c7cb10-8b2d-4478-8f7d-4376d5d603b6', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('85269400-918a-46d9-870e-289da89b0bb2', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6a5d3ea6-f442-445e-8680-d4c9525bf56f', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('81e46ebd-311d-47b1-9c7d-135922dc0511', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('af8d1591-065a-4707-ae5e-b0703df69be9', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d646f0b-f068-4fd3-b1b1-561c70ab7503', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5e4fcb21-3239-4060-87c1-c0a31eaf98ad', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d465dfbe-dfda-49e6-9c32-b2624e20d4a3', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7151fd4d-3caa-4aed-af0c-ecb089b128fa', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('68780154-c302-414c-8608-a0c7e59fb2be', '9702bd74-e7d9-440a-a210-64905274c259', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0e8a6c6e-b802-41be-a668-ab192714f9f2', '9702bd74-e7d9-440a-a210-64905274c259', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('30d3a5ab-6588-4c16-93cc-1fd96894b613', '9702bd74-e7d9-440a-a210-64905274c259', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cce1f971-2aad-4e93-9ed3-811170c655a6', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c34bc0e5-fc79-4895-bab7-638b2f405bbd', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('be036f84-17aa-45d2-bc17-b58a8db1f33a', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9eb6492e-6946-4868-be5c-aec6d3ba92cf', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('50163cb7-d90a-4c8f-9373-18ac3d6c4768', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ffa29a16-42e7-4ebe-b9f5-f167330d9140', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('49150712-ea8a-4b30-b22e-e9641363e264', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cbbab505-7a2e-4cf4-9f53-607d9bb5eee9', '6263942d-84d3-40de-b460-04c52e2a7f36', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('49bc5185-6d3b-469c-a604-88bbda2e4322', '6263942d-84d3-40de-b460-04c52e2a7f36', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab', '6263942d-84d3-40de-b460-04c52e2a7f36', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b74a805f-9138-4dbd-abe3-5641fd1ea9e8', '6263942d-84d3-40de-b460-04c52e2a7f36', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('75e9b840-5f72-4e2b-9698-80b49512e6dd', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('90044e14-3a87-4791-b11d-e4ae2f6d845c', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b6a24ed9-c3ab-436f-b2e7-17af91dc29d2', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('50d5489c-914e-4432-9a0a-bb3607a0f4b2', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f0661cbd-56bc-4130-8b44-528cf5e693e2', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8f5d8cbe-1763-492f-b918-7e8f197ae3d8', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7b4e7960-7014-4a64-a845-19cbb2ca301a', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('89664515-a29d-4f80-8446-47aaf8cf22fc', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c1ee5c53-b7a0-4e76-9d44-d32b96333bb2', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('df00b91d-921f-4479-b9e4-e1732444508a', '92b842af-05fc-405d-b0db-7a667228c221', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5645f188-49da-4e4f-a826-6e71239446a1', '92b842af-05fc-405d-b0db-7a667228c221', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('89111db0-bdec-4e14-b05a-a4b92b65299a', '92b842af-05fc-405d-b0db-7a667228c221', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('369f633f-ae6f-46de-b383-a4fb05f1656d', '92b842af-05fc-405d-b0db-7a667228c221', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3c30d78b-cca1-46a4-92b0-141a5a49d2bb', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a12fea75-a5c5-4b6b-b54a-dbffb84d4d96', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e89f8e4b-7387-45e3-8241-86cd24d48fe2', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a17cbf35-8afe-4032-a911-3347a0e952a3', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('03cdd47d-7cd0-4724-a9d8-68b593171031', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('474dabcd-176b-4283-ad5e-6d7f89e3068c', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8324be2-d4c6-411d-8589-889fa46d8ef8', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c754a646-c6c7-4ebc-be45-2edcbd6ba501', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2a12b073-dec8-4414-8f79-90d2e54bd7c3', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('87a9fc9a-d148-4558-92d6-4e48a7293edb', '3c0abfbb-0006-426a-903f-6f435e03276e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b088226d-f831-4b99-8345-2983c0de543f', '3c0abfbb-0006-426a-903f-6f435e03276e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2e344e61-46bb-4578-be4f-b8906472ebfd', '3c0abfbb-0006-426a-903f-6f435e03276e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e1a47825-87b7-4108-9f38-ab5f0238f3f7', '3c0abfbb-0006-426a-903f-6f435e03276e', 'INSERT', 'hs_office.sepamandate'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d7b02d95-b66d-4ccd-87aa-9fafd3a1971f', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b17548d7-be60-485c-8a6c-be5f30151f86', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e51decc2-efdb-4e87-b33d-d8a5f640d8a2', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7573789d-0551-4e43-9909-b8f9687bfc96', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5098f6b2-1557-447c-bb45-ca0f6f191a82', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('927e1abe-a622-4cc7-838f-2b36281e2bab', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6533454f-8b7d-4bcd-a7f2-5f9173220dc4', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2cb19228-dfd0-42b2-bf8d-1ce2ccf77067', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fea082ef-9069-4c01-adb7-073fc1f46bbc', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e9c0574f-f838-48d5-a332-4085895be3c9', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('56a257dc-7f7f-4a89-85be-fee322b1f32b', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6c7dbe37-0ade-4739-851b-1413efc4010f', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('df9dad24-c7f5-4429-88fe-4ece8d9865be', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2ab5ae81-f05a-4105-923f-97229e5f1c75', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbe4bafd-5930-48c1-934b-dc9859824a00', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('15067268-30b0-477a-8357-2156707e3e0e', '82771891-737c-4c22-8321-c2542f973dbe', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b832f921-ab33-46b5-a634-489e62adfe19', '82771891-737c-4c22-8321-c2542f973dbe', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('efd9fee1-14a2-45c0-9af7-69572a229421', '82771891-737c-4c22-8321-c2542f973dbe', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c3b96b4-e376-4600-8361-1bb7946966f1', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('099c8bf4-bb2f-4bec-ba3d-10f2de503dbc', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('de2757da-bcaf-419c-a5ed-ee1f2159eda1', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('81368b61-8a6d-4da0-8d4a-bbdace102d16', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0fe977bb-8402-49a4-ad22-1fc63ebefeb7', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5f91f0c6-6f77-4d31-85d0-2d2601965f4a', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('90c8d2a1-5736-4ad1-a296-aef671392523', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9d4f8cd8-7565-4eb4-a20e-b2b439946662', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2616db57-66e1-4592-bc4d-d00f359cb35f', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0c317278-ff35-4c8c-b488-37bd55814b2a', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c64b5ede-af6e-4878-b23f-606b87a02cdc', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e42af770-6fe9-492e-a97e-745d3fc6d532', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3903d9ce-0bec-4991-86ca-38b17ec769ad', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ac3fdf8a-f87b-4cff-8146-272273b0830e', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3e146f1f-790c-425e-bac5-1e215599ee33', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('54ea8431-71a0-4eb7-97ed-8a8801df59f4', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1fe5cc8f-0891-4359-9d7f-d45cf5d82108', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5f0ce84a-beaf-4824-938b-16b1a746dbc6', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('985cf74a-9707-4819-a118-dfc415527515', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57537970-872a-40b4-8ca4-2fdfbf1e391c', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a864fe09-bd67-409d-a4b9-da2384846ee1', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e3b21d04-931b-455f-948c-5cc9c0ae03a7', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('674a6bf5-d0b3-4650-8ee5-6eda522c57f4', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('84df22b7-389e-48ef-9060-0ac4ddd74577', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bbe03bc9-329b-4813-9a56-e092813ec25f', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('31cf4782-37ba-4296-a200-bf2c44493a97', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5e9cea08-d822-40fe-a936-44d8647a07c1', '452aae38-0b88-4771-b632-9d883909bd8c', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57346784-00e3-4552-9c1c-19d0c3900d80', '452aae38-0b88-4771-b632-9d883909bd8c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9', '452aae38-0b88-4771-b632-9d883909bd8c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7f506666-739d-430e-a61e-ed80c52eb812', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbbdc763-bbea-42b3-b1b9-81ed8337ced3', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e83f5771-2a12-4f43-a099-b4874c8cb4d9', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1f415168-d244-4fd9-957f-542058489735', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b0a7c854-4abc-4da7-af60-a5066e280ac0', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('23cd8020-fb71-4093-8bce-99ddf9badbcc', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2903b125-6d88-4867-8227-08c6236a6fb0', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bc4a61d0-4c92-4a3f-890b-3b24080be036', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9a776bf3-1034-4dc0-a68f-fbdfb58ab625', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('19a24fa5-63a3-4c56-ba6a-650024cbdd64', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d0c476d4-546c-49c9-ae12-794cfa3942c6', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('975a934a-0ec0-4b14-a513-bd4dd42b8245', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e227c024-38a4-4544-be9e-3cefdeaf7a89', '171aa70c-1909-417e-9daf-b17c36857995', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('177b8109-10d1-4f88-ba89-b04d92d9bab0', '171aa70c-1909-417e-9daf-b17c36857995', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3e158ad0-d757-434a-a50c-6973cf0e0ebe', '171aa70c-1909-417e-9daf-b17c36857995', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('865d8af9-ff16-4388-beb8-420fb0e0c64b', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('62cd8ee8-96a5-4a38-b5f2-65a41ac34c72', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1d7dba81-1bb8-4e28-a1b3-0e5376b5646f', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ddb6560c-5ec6-4eeb-a43f-9194035ae988', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8b746056-f66e-4de2-9899-1c19df064764', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('00f7119a-b78a-414f-8760-2689d85e8e01', '2267ef17-1092-4799-b042-8b06389bd4a9', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1294da14-f1c6-49e8-9c42-70c91489e867', '2267ef17-1092-4799-b042-8b06389bd4a9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('39276e87-f1cb-40bf-b0b2-5d9d6308ec41', '2267ef17-1092-4799-b042-8b06389bd4a9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2a074a2d-95cf-4e3e-bb86-0b574f1eb725', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8764363-b3fa-4008-9686-98403ecc66ad', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7585e5c2-0759-4aa9-ae5d-680620e29838', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f2c74d1f-ef48-4642-9cc8-d88e5683267a', '05f9829a-f505-4758-891e-5f38b5242d75', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5bece03d-348c-4af5-a42b-784c02b74cdd', '05f9829a-f505-4758-891e-5f38b5242d75', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d3e3df00-d5ed-43e6-b416-995715f69a57', '05f9829a-f505-4758-891e-5f38b5242d75', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8e6c324d-d5e6-4028-851b-d72b367a6ab8', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2afe5f37-d88c-49f6-ad20-556c27d7148e', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('be0ee1f3-37cb-4d1c-914e-8f2a34480f28', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1c2f2009-dc94-4b39-b3ae-5cfca518767d', 'ede0d030-8e66-469a-a11f-43f818863809', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71', 'ede0d030-8e66-469a-a11f-43f818863809', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d56a809a-d37f-4423-b3c6-4a401af7dcaa', 'ede0d030-8e66-469a-a11f-43f818863809', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0628ac11-f65f-496f-a0b5-83bed9d9d74c', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4f3efcac-830c-4de6-b108-42bb8d0c07f7', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('34e55b26-e390-45f4-a397-3027cc7541aa', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d491bcf-e24b-432a-a01e-231f920f0d85', '505337e7-2099-4d83-a2f5-7447bc63a387', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e2894082-0f26-4e3f-a1d4-ee1d0d769b0a', '505337e7-2099-4d83-a2f5-7447bc63a387', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3659ec5a-b205-4278-a4e9-dff7fe00b9ab', '505337e7-2099-4d83-a2f5-7447bc63a387', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c5a7163d-7bb5-4b47-8505-26f154c30e66', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d2f26da2-0726-4c1f-819f-a1c7267964b3', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('af2eb413-09ad-4542-b6b5-28b71749e727', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4366b352-4589-4a16-b88e-6c556e017189', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4acdd71c-3792-4b5e-8551-1f260352d690', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('145e0fa5-f5f2-4bbe-a14c-1c6e11adca73', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('585ff2f1-f8dc-4a0d-879e-8ed1720d44d4', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bd0640a8-f20f-49b2-84dd-054f4d0dcec5', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5d23f435-7b8f-46ad-b602-9d3b9203c345', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('db46c382-1297-407e-8b17-fa6ca42f3427', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e75fb595-0779-483f-b421-fd0dab2579c5', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1f8b2363-d7b7-464a-9b3e-5f19b6703bbb', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a1267d62-7c06-4a1a-9d18-1306f501e984', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('77c5c6dc-a2fd-4f6a-b23b-11092c27876d', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2405df12-73ad-4abf-8f63-a88a795ca61d', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c56f4683-f55b-433e-83c0-597088586aac', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('260c29b7-089d-422b-9ce7-d65949cc8e8b', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3bc42c36-3682-4450-86d4-9db827bbf552', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d4012885-17dd-45e2-9d1f-3ab661fbdaf0', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f929caff-d41f-4977-8419-41d193019baa', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fbc8962a-0b33-4562-8846-a5e08e177fe1', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3f222530-009d-4cbd-8dce-4a256cab417e', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b7df4616-86d2-40bb-b70d-35c71a8e533d', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('375e0bcf-050b-4956-b371-5a84495f0259', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0087a277-dcd8-4df6-9209-8b817864d2a8', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9bc9d256-bf9a-4a42-a26e-36cf1ed29a05', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('43ed3caa-00d8-4718-a695-b8901970ba7b', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8d023e54-6993-4429-87cd-29cca95b1161', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1fea3f9c-8227-4419-963a-aa00d2a07abd', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('467ef1e1-2f3b-44e6-b369-1bb744dd1f01', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('18aded7e-c76a-44a6-810a-bb54651bbc35', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c58c8187-4976-41fb-85bc-241743be56f4', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5be940e7-8aca-4535-8165-52759309ab2b', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7d7d0f8d-1542-4252-b77b-379ffde0f1ee', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d3342ab2-62af-402f-9ebd-fd9034349883', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('40de40b5-5752-4890-a138-89993f9fa518', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8b5eadc4-82fa-44ec-a8e9-ae3048a55980', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c6a0f56a-8b53-4194-bb3f-9e0057ba4749', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dc7d613a-e452-4daa-972d-4ce91d58eab7', '526ddec1-2738-48dc-a696-6c3579201851', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('51d1c46e-09fb-4d20-9324-38a40083d746', '526ddec1-2738-48dc-a696-6c3579201851', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7b1b31db-b751-42a0-b68c-a18329d42b82', '526ddec1-2738-48dc-a696-6c3579201851', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e8bbadad-a89f-4ea3-a0fe-ad94420d7082', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0698664d-beea-460f-9499-7301be93d5bf', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e1b2f563-302a-40e6-bb7a-2725af8a7320', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8a70890-768e-4af9-a261-3eed2c3eff9c', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7d5704d6-e5e8-4f92-a231-3c9412a25813', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7cb8fd1c-e611-46ce-b0bd-23571ae13c40', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1377ca11-0aea-45f1-be3e-6d685646a855', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ab528e70-88ff-42a1-bb05-53c38b36e963', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('31f73d88-50b2-4c43-8710-7ca34461e925', '63e06470-764c-41b3-92d8-e114d4e52664', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('877f58bc-eca2-40ea-a04b-5413dd5a26dd', '63e06470-764c-41b3-92d8-e114d4e52664', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('08ae960a-5246-46fa-837e-077549f771a1', '63e06470-764c-41b3-92d8-e114d4e52664', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f429b107-0720-44fa-a2ac-9ad390a0eafe', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('84867f72-28cb-40c1-9163-e39f2c16cfb0', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('61871afe-66cf-4e17-b0d5-1da5bac6469f', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('daafb052-50ef-444a-a2d3-b787c5bc8cb3', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dd133517-5ec6-4f63-9114-c1416d3c6804', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3a597e00-9544-4248-82df-3831353f33b1', 'c73dc87f-990b-4c2a-8809-7be08b6d1535', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8baa861a-5c1c-4db2-8325-357619b0f22d', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5d51ee94-5a44-409b-8bb2-1bca411bfc41', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d52d9865-3025-4a16-9aed-c5ddd66dc071', 'a6773052-fbc1-4f5b-81df-17d59e7bc76b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8e7530d0-e5a8-488c-93a3-a25b2449fba6', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('22173367-a803-4065-9451-afec80e0586e', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7e591a28-0bbc-4464-8aab-c449f4db6f33', '45fd8262-37b2-4d6d-b2f9-26d1561d307f', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('24837809-14de-4cfd-8e4a-5cbe8a476a78', '0bb9a82f-172b-40de-ae96-37fbb086d4d7', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b8f86670-28e8-4fd8-b293-f7ee4344efa1', '0bb9a82f-172b-40de-ae96-37fbb086d4d7', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f54ccf20-7258-4739-bb5f-867203a3c290', '0bb9a82f-172b-40de-ae96-37fbb086d4d7', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('96cafe15-2ee6-4226-ba2d-92620a417296', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('81973abf-eaa8-4d0a-84ea-e98c0de09bc6', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7', 'af1fb9c2-7b3c-4dc3-a4ed-86ff2680315c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('42c4629d-fb68-46f4-b8f2-d40a608fccaa', '66a88623-096d-475e-b36c-1748db1503dc', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4c928181-db1c-47ea-8185-86edf15aaf83', '66a88623-096d-475e-b36c-1748db1503dc', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3328c233-4b48-4dc9-9941-830c3857e47f', '66a88623-096d-475e-b36c-1748db1503dc', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45b14f1b-e870-40f6-a99a-e6bf3810b48b', '94c3062b-ec85-469d-824d-885a125e5a52', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602', '94c3062b-ec85-469d-824d-885a125e5a52', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45f3c90c-0cc8-41c6-aa6c-f656c2a520ec', '94c3062b-ec85-469d-824d-885a125e5a52', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57823f66-c790-4a3f-8395-e94a25f2b321', 'c3657447-959c-488f-adcc-9402a118a8e9', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('91475e7d-6a40-4b51-8376-e28b06293a84', 'c3657447-959c-488f-adcc-9402a118a8e9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('34f0d180-cab1-4f97-9d1d-60a6f39c8c1f', 'c3657447-959c-488f-adcc-9402a118a8e9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('87a213bf-33aa-40e4-b5eb-89465f96e91d', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fb476be5-a55c-4453-a606-24da6a1ab2d7', 'f32722ac-acac-46cd-b3d9-171c1921f2bc', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('241b9514-6fed-46fc-a352-02f501bb9815', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ddeac61f-76b9-4ad4-bf61-b1a83894cb2b', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('759ca26e-b553-497a-9f38-86622b340848', 'd6bd08e1-4c8e-4727-88ae-9e287723f74e', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b695b5f1-487e-45aa-ab59-e47986899059', 'a7f3294e-b64f-4e46-860e-99e3617329bb', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b', 'a7f3294e-b64f-4e46-860e-99e3617329bb', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6d837b50-0475-41dc-9a4b-4a832f476bde', 'a7f3294e-b64f-4e46-860e-99e3617329bb', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cdda32b7-9bb8-4f6f-9974-d8b6cf64706c', 'ad6d5da4-b239-444b-b869-a66f4023c7cc', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ff41dac7-2ca2-4719-ab67-e3defcacbaed', 'ad6d5da4-b239-444b-b869-a66f4023c7cc', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9eba55f5-a528-4a01-8612-8e4d30ea5c24', 'ad6d5da4-b239-444b-b869-a66f4023c7cc', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('137d7a50-f122-447e-b8f5-2349c7231487', '23272f3b-28e7-4777-9f86-5821646343ad', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('afe41aac-099f-47ea-84a8-d1b8f7f3f81f', '23272f3b-28e7-4777-9f86-5821646343ad', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c9787e85-7f76-405c-abc2-68c643139725', '23272f3b-28e7-4777-9f86-5821646343ad', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fa41b988-86be-4cd5-9293-a316854ad36c', '59a560aa-78c5-42be-8c9b-76329131b0a6', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8b4d84e1-64bb-478e-8176-7e7f5e3b54ad', '59a560aa-78c5-42be-8c9b-76329131b0a6', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ab0a6844-1289-4c15-acc1-b6eb42f08ce1', '59a560aa-78c5-42be-8c9b-76329131b0a6', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eb4e4387-2088-4cba-bacd-6ec785097689', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('53ffdb8e-9631-403f-b52e-77d75602cc80', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a828a5d8-767f-459c-a676-b28b793ec271', 'fe1c641d-8afa-4435-be7f-ee01caf6e3b4', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c3584a65-8fb2-4975-bb7f-9a123c06d2e3', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('360fd487-1bdf-4a27-b608-ec4e126185ab', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('81073331-f31c-4b7d-a8ba-b76c8b449ffb', 'df56bbb8-f12a-4c0a-839f-0fe4af7e5617', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4dd49272-271e-4a93-933b-65923aaa2109', '3162b2b5-9fda-476a-94e8-4e0265758d31', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('40f5eb31-e9eb-48b3-8312-84ec84e0b80b', '3162b2b5-9fda-476a-94e8-4e0265758d31', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7730b221-0290-40cf-b01c-bc8329e8f723', '3162b2b5-9fda-476a-94e8-4e0265758d31', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('75181fe1-4ee8-41b2-a0c0-d4e0747d6d23', '0db2a143-0ab2-473f-84f8-d570ee119e04', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('07fbd6a7-038a-4fa0-a5f0-7fc082165557', '0db2a143-0ab2-473f-84f8-d570ee119e04', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c12e8c8c-2a23-483b-82e0-48c173c7adad', '0db2a143-0ab2-473f-84f8-d570ee119e04', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('229cfcd2-8e66-4082-a9d8-a83e07687aa5', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2c6c0cf1-ac65-483f-b34e-36bcdd6653de', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d502fcda-7169-4818-9c45-c04e713d5313', '5d6f9f7a-1821-4176-884f-fe191eb0de3d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e1681e56-6bd9-43c9-b317-cf51cd2a70fe', '6191fa62-0cc3-4172-9696-4145049b64ce', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6548c064-050a-40b9-8a87-02e672e0e21f', '6191fa62-0cc3-4172-9696-4145049b64ce', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bb3f383a-8c59-4700-9649-93b334c30618', '6191fa62-0cc3-4172-9696-4145049b64ce', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('59ce399b-d575-419d-80be-1fd04dce418f', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9f9c733b-5461-4e93-9d09-8b5ae9e091dc', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32ce098d-facd-426b-9405-d0a10f7e4b42', 'd93f1bac-c54d-4215-9831-ec3ebd08fcd4', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5f1474a1-2c97-4780-88ae-dea97e8d2f75', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('91aa9300-0511-44f7-8b57-72da36d8c521', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab', '2e32f3de-2bd2-43bc-aae7-dbd8276d589a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('804e3de0-66a5-45e3-8275-1222ec0dc1d5', 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8e0dfa97-8845-4071-9569-500922447918', 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e0cd0949-f2a1-4ce1-b442-31dd601dfc50', 'eab4b615-a7ab-438d-953d-b5da6485baa4', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0e7d000d-a925-48f8-9111-2b2f0a06d4bc', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5aa9a6ff-dadb-44c2-9951-1146ce5d3888', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8a5628fa-a845-4284-b719-da86a4bd10e4', '50eef0ed-3045-4b45-9fa4-3d4038c626e7', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4f27a565-bea2-4099-870e-9ddac69a927d', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('94f0bc67-0f4f-4f6e-b804-e6329e6d6278', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eeed5149-ffda-41b5-986f-ebe44198b6ed', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7204bc19-f28b-4ca8-b72b-026c38298527', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c61e32e1-48c1-4bf3-882f-77382110700f', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('efc20691-4515-48c9-bbb2-ca411195d26c', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f992415c-81e3-4339-93d0-cd73fc15d324', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('78c9542a-3595-4e01-8d35-036ad1c73852', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ac02dd92-7f6d-40eb-9d06-f94bc88c3996', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('40698c45-9698-4294-97d4-c6cfa144af30', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5992a7ec-141d-4ae3-9200-add7c7992cf9', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6389d1cf-ad59-4de0-b648-148dd127b6eb', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c59d5910-8a41-46c0-bf1b-80493d1f8abe', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('27a90c0f-4e31-4ffb-b287-109a77448a9d', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1e14521e-b924-423d-bc52-5dd8447ececa', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('30091ef3-0aef-47a7-8020-8ea49254a578', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d56e6f97-db5c-4dee-8d84-90a0e35c9714', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('281c7961-4b81-479e-b441-760bfeeabd46', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b40304e8-ff14-4532-81c2-e4fa4cb70e42', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('524a333e-aec2-483e-862c-679039cafcde', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8cafc9fc-e7ff-440c-b8a1-394e601aa944', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7242332d-8f72-4e28-9c45-fdfbeb6118f9', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d7932082-e9af-417f-af27-37946e0b7a49', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7799ed00-0de6-4ce5-9547-649369ca4a63', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('56be9a1f-28b0-4c6a-818f-53df9138fed0', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b1baabe9-2f07-4bb5-9c8a-40d00394e9e3', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('adaca50c-0efa-45bd-9d4c-ae790bd334bb', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('55638bc0-b003-4185-b805-b542b92cc07e', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('162b3d0c-b3df-4afa-933c-e18986f7e216', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8fdd420e-b77f-4c42-addb-bc5310c9356d', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d4ccf9df-c982-496d-870c-2fee23971c8f', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'INSERT', 'hs_office.coopassettx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('86e9a040-1689-4e76-b581-1460b23a7c9c', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'INSERT', 'hs_office.coopsharetx'); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('24665c63-458a-46a0-890d-8a238f9d036f', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5b9d578c-9d05-4480-9256-1e091ce93f25', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbe17345-adae-4bee-97f2-e3a13fc45e70', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5d6567c1-bc20-4972-ae1a-ab4e8c53cca7', '7761056f-60a1-4981-a45f-55097922cfcb', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e4ac0185-4d56-457d-aff9-0f75357e048a', '7761056f-60a1-4981-a45f-55097922cfcb', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d2894d1-adeb-4349-a7e4-47af15a0b9d3', '7761056f-60a1-4981-a45f-55097922cfcb', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('21cce335-ee2c-474a-934f-0f8a264be7ab', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('73c78c16-6eb7-4874-9487-fa9cb9414be9', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c3681b32-5274-48e8-babe-b8a7577b1999', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c503eb92-c2d2-46b8-adcf-cd84d92e9eb3', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('04c59a4f-0eb8-4812-82b3-663f3a084c65', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2959d438-b8bb-43f9-b70b-dd40951fca4f', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cd189b0e-6c05-405a-b560-d0c75937e2d8', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4728de28-7e67-4cca-80c0-6221bb0cb4b3', '0e352061-8280-491d-9125-d1547e3662f8', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a386961b-e8c0-4e7d-98c4-3e983a2d8d1f', '0e352061-8280-491d-9125-d1547e3662f8', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('82638ccd-1407-47aa-8918-3a1329d6b038', '0e352061-8280-491d-9125-d1547e3662f8', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5e780b12-da7a-4fcb-a760-cea6abdab8b0', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32ac9ba4-2a55-44b0-b636-e69d71a16cb6', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('49975049-a2fc-4567-b65a-ff15d2482dee', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('33368a0e-8458-4363-96b7-5140595e06e4', '23731ee7-5762-4c61-b825-d19a31217388', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('40bce91b-955c-4802-ae87-8dd5d7c4a156', '23731ee7-5762-4c61-b825-d19a31217388', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('92961c95-a80e-4032-9eb0-2a8f7757a422', '23731ee7-5762-4c61-b825-d19a31217388', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('13eda7e6-0b66-4978-8153-135556382aa9', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0ba3f775-77c5-4c10-998c-b340b3ce8f98', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9ee7ec80-9893-48fa-a177-90538b8b66a5', 'a41933db-1aac-4207-a8be-1e90621d834a', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6e151961-36ac-47e3-8094-571cf2bf94e1', 'a41933db-1aac-4207-a8be-1e90621d834a', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bae797f4-38a0-4a9f-b285-692472190900', 'a41933db-1aac-4207-a8be-1e90621d834a', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('07cad025-9a71-410c-b80f-30258a65d0d4', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2e3acc28-cb00-466b-8128-317d0eb56915', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7aabf410-a7ad-4afa-8af6-0a727127e2a0', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('723b6dcc-04cf-4444-a95b-534bdea15e9b', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cd4715a4-96a4-4297-8660-32c2e95da604', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('37f6ab5c-d190-4f1c-9732-da210239ae9c', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('546f844d-33bf-46de-8da5-982fb210d2ab', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9f1adce9-fe79-46cf-bf54-0e58f97556f1', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('63f86482-0fdd-4dac-ac73-4b78d4442a57', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d0bde494-6f96-4369-98cc-82c2b633604b', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'DELETE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c990fb58-9aaa-43b8-b722-16486b8cd2d4', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0f3ad9b8-d3b8-4068-8483-81a43e388c23', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0604ecd0-bd4a-4f61-b8f7-0dbba0c54254', 'cc866944-946f-4608-9ba0-fd309f0b67de', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('90a30208-da55-479b-bf1c-d61c3ec10e15', 'cc866944-946f-4608-9ba0-fd309f0b67de', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7c6b8392-322b-4cfe-9284-c17891c08eb0', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b229f023-5e44-49dc-93c5-bbece59ac530', '0e8576e6-58eb-4e4e-bc9e-ee9ea11f44f5', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('854d7b9c-c1eb-48e7-978c-70a057b6feba', '0344596f-43fe-4802-8b57-11cd9574b644', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('95ce5834-6df9-483e-8d34-36a0240f2beb', '0344596f-43fe-4802-8b57-11cd9574b644', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('74eb962e-1e8d-4e1b-92ac-6872669d7aa6', '18b7c4ae-621f-4618-99c5-f22819b9bf32', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('71978dda-178b-491f-87aa-cb2054c0e68b', '18b7c4ae-621f-4618-99c5-f22819b9bf32', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c57554ca-2505-4d51-8e3e-6b999950e955', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9aa9507b-9c8e-4f80-8198-028c8d161272', '58faf2d7-8b10-4bdf-b9d8-61b20ac08b31', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0910f61f-623e-4643-b439-67e4ae2017c8', '9269215d-0c94-4114-90f7-faace9ddd667', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b2689cf5-3067-44a6-8543-39b2e9d53d20', '9269215d-0c94-4114-90f7-faace9ddd667', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1ff36364-1e09-4fcb-b008-22a9f664d1eb', 'ace9fec5-5880-4e30-96ea-b843d7001d83', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9034af89-66b3-47a1-9501-65a03ec68d8f', 'ace9fec5-5880-4e30-96ea-b843d7001d83', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('29ba9ce7-5327-4918-a1ac-5ceef43bf66d', '7659fb30-f484-469b-8817-71f19eb71022', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('01eeac1e-ed6c-4f32-88f3-2a7484ff86ce', '7659fb30-f484-469b-8817-71f19eb71022', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('df73d77e-52a8-440a-b5d9-2d3e718ccdfe', '4eb3b112-412d-46ec-b127-b9c76f7cde99', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ebb8478f-4c98-4f44-bb0f-6036942d3a3b', '4eb3b112-412d-46ec-b127-b9c76f7cde99', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5a818337-07d3-497b-8d97-740ec2dd07c7', '1acec5cf-f771-48ed-9c15-00505524d3b1', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('904d1c20-82f2-4236-aaf8-5866a48f3de8', '1acec5cf-f771-48ed-9c15-00505524d3b1', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b471837f-604e-4fef-ba32-3265e73f9ced', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d19a0b6b-0268-4d59-a3dd-176fe7f8cd94', '31289955-0d15-45b2-9ffc-07f7cdd6afd1', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9542f37f-717d-4918-8985-a85b96c40e32', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a6141a35-6791-4d50-95ee-1e2f1e723d7f', '9a9713e3-8f23-4acf-b260-234c6cd3afbe', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8bea3826-aaf0-4ae8-a346-a3ac0d8a8143', '768f09ac-20c4-4952-9175-cb46e5acb491', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6d4e829a-88fa-4b5b-9f36-ebdb17cb152d', '768f09ac-20c4-4952-9175-cb46e5acb491', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c130e3df-1643-43c5-8cb0-168d7d4046a3', '7dd37099-29cb-4932-b412-443444dc0027', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2a23b891-90b9-4724-b7be-c8e0457e53cb', '7dd37099-29cb-4932-b412-443444dc0027', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8269d7c8-3ba1-4903-9cad-206d41ac89e6', '419e123b-0d37-4559-8a0e-61117c653510', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f25439cf-05db-4977-8ce4-359c8047c292', '419e123b-0d37-4559-8a0e-61117c653510', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b02aa4fe-dd9f-4754-9d4b-793794965b7f', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5249ca6b-cc39-4d6c-ba98-6def0fe2d52c', 'a65dde94-715d-4eb5-ab56-bf6646857bb0', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('364c5249-2ae1-4c0f-a732-7c816f4ee9a3', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f', 'e7b2da8d-bbd0-4f70-a41e-81c4edca736c', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9', 'e5896125-6348-4a13-b947-71ebce17b19b', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3c719489-1713-45e4-8689-d83c448c1369', 'e5896125-6348-4a13-b947-71ebce17b19b', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3fd7cb87-99f9-4b7a-b7ad-ed018d976aec', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('782f02d8-7e18-4799-9985-4bcff3546cae', 'bc06ce0e-ae6d-442f-8b9d-4c6aefaf5add', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('41f62d96-d6c7-4561-8ed4-209ad0ef8a83', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ae700224-c552-4c90-bf40-618f2de9b85e', '9eaf2db1-940b-4f30-9fc6-a33464b6f7c2', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57862e6f-57a7-4b99-96b3-0c58334d0562', '8e9febfa-b05b-4374-97b1-68b1f23c317d', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6ad66094-6bca-4ed1-8414-4df62e3ae4ff', '8e9febfa-b05b-4374-97b1-68b1f23c317d', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d4bf0380-30f8-4c1c-8530-950416296242', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bc19003a-f55d-462d-ab99-6a36030609ba', 'b48fc7fd-0648-46e0-a130-c42c82ce9b6f', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d30dfdda-800d-4dfb-93f8-48ed5aa89159', '0abc3f6a-3232-409a-b81c-9416487b9290', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1a2abfca-78df-4f3b-906b-e7670f9f3b0b', '0abc3f6a-3232-409a-b81c-9416487b9290', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('62bbba6a-e99d-489c-bd97-85556ef99db5', '80944291-bb84-40fa-bf0b-ac429f7f6220', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('40b75783-fa88-4ade-8f40-ba0b8ae2e99b', '80944291-bb84-40fa-bf0b-ac429f7f6220', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e9902d05-14e1-42e5-a601-5a29a7d7319b', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c648ce8-7824-4460-9b63-937148d01f63', 'b3765c8e-2e21-4cfb-99fd-77a351c960e4', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('956a86e6-4e1c-446d-bc30-69a123398a70', '9c34861c-1b7e-482c-8346-b68835f787c9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b0649894-6476-4ed0-97a1-7ca715d19ab4', '9c34861c-1b7e-482c-8346-b68835f787c9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a84239c3-b449-411e-aa56-d73fc50bbc3d', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0bfe8308-de23-4b7e-b810-f13ca5f9e4ea', 'fd978b61-e7ae-403e-82c1-d5f298ef01a9', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5', '53a9b0ea-3758-401c-bdcd-f100511d04dd', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6a1678f0-fdd2-40ad-bc43-5f50e439646d', '53a9b0ea-3758-401c-bdcd-f100511d04dd', 'UPDATE', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6b94725d-3740-4d26-a324-10e4e3fcbd62', '1f85fb03-656d-4abd-962c-a4f142f93652', 'SELECT', NULL); -INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8f7626fe-631f-4f63-b937-bc00e8f2267b', '1f85fb03-656d-4abd-962c-a4f142f93652', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('47b0efd3-0e9a-4275-b2c5-d50dd2b22024', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'INSERT', 'rbactest.customer'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ae085da6-9278-48f0-a2d2-b214f0cd55ab', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'INSERT', 'hs_office.partner'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e4082d20-6277-4b51-b70b-1d41375748c4', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'INSERT', 'hs_office.partner_details'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9c5062d4-6ed6-4284-967e-7e661a0f8016', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'INSERT', 'hs_office.debitor'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('41688207-eecb-4233-b9b2-5f18eee23546', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'INSERT', 'hs_office.membership'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8a96713c-f52a-494b-9856-5a7cc869449b', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0debf423-4128-4959-94b6-c4e17adfd25f', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bd35e25f-a9d7-41f9-835d-55026654c03c', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d0ee13fb-5f61-40d3-b38e-02eafd89160f', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e6970814-b140-4805-95f3-610c215eb5ab', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eb43edcb-0d20-4614-b45c-736ef4f56380', 'd363745a-e94f-48be-8397-4b361570a54d', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('db94672f-1fbf-4898-bff8-2bfb5b2450a3', 'd363745a-e94f-48be-8397-4b361570a54d', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7', 'd363745a-e94f-48be-8397-4b361570a54d', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('684d7313-c093-4da0-83e8-bd73c6cc0bb6', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('42a22abb-f604-4980-b6fa-adb1aa4e0adf', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d226bd12-192c-43f1-bc65-45803a17c4a3', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('deebf94a-2ef8-40bd-8538-9227bb901fee', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a3aee0e9-b8f3-4262-80ae-5cc6154cdc10', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4fe450ed-3a24-49b8-98cc-fa85de9ce889', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c11382ee-e0e3-4b25-b8ba-640dde8c20bf', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0d98be37-8ae9-48c8-9bff-6b7581e256fa', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('de8da2bb-9e4d-44e7-ad03-e9763db4331f', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('390087c9-9c6f-4c2f-9c77-af65112c520a', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ea4baec8-4128-4e59-b0e1-69b450c46755', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e9887f07-65e4-4b5b-a134-f023fb127cbf', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2e07da63-f1f6-4342-b090-f3c465e9093a', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c8cc9a24-e3d0-412d-867b-8e617e40f1e3', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32b78d45-4a5c-48a5-bec2-efacd97dc76b', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('caa58c78-6540-4f75-a24c-d4ea5f218cb0', 'eead6995-dd54-475f-8194-74445c421305', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ae30faa4-b82e-4e65-8324-360fdba2d504', 'eead6995-dd54-475f-8194-74445c421305', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f38fcb66-ea16-41fb-abdc-ea3df857d5e4', 'eead6995-dd54-475f-8194-74445c421305', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('81ea98dc-258a-4ab6-8537-8de22e9e90be', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0a2e575c-9d22-42e7-8446-546ac3cda8ed', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9444adae-37a0-434e-97b7-3304b5577498', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e17045f7-b4ef-4c12-beee-56b1b5ef7190', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d6d69027-db1a-444c-be6a-e14232b71647', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('511d8f3d-266d-4c3a-9091-a7b16d8e61bc', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('61aef2e8-ca62-4a62-8a4c-6a56f6fa6880', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f03d3fab-a32c-40a8-9fb3-ff456bbb7f45', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4a861961-b89b-4ed1-8a22-076edb1fe182', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0c9f6461-5ab3-4c39-870d-e66aacd5d522', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7d188b98-3755-4753-b776-7226df8db3bb', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8973550c-23a8-40d5-bd36-4b4f8608841e', '9dcab961-1465-40e3-8d83-357b22af2674', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e887ff28-0576-46a5-8faa-b4167f9cab6a', '9dcab961-1465-40e3-8d83-357b22af2674', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6becffbf-7ca9-422d-a429-c022f023d9ae', '9dcab961-1465-40e3-8d83-357b22af2674', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('32860409-f9d0-41f3-b19e-25a38bdabc3f', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('44f00bec-0091-4523-9235-84aa669de6df', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('efb67518-722d-4f1b-8280-e3f894406dd5', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b8a958a1-b18b-4198-995c-7057791c7b6f', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e3eeab03-d7bd-4dcc-b076-3bca06fcedcd', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1be4a900-49fe-4fef-b4f5-47643f463859', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ea674a43-6195-4c02-8bbf-88c2255030ce', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e6b918a1-edaa-4170-b6eb-9c8257b9a72a', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c21abea9-6973-44c7-91f4-2d163d97764d', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b94eb65e-0105-4cf9-b238-cd3e4715c08d', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('98ecef93-9816-44dc-a028-61cc9403efb9', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eed193d1-f65d-4738-b8ee-d991aeea4389', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('03602c91-9c55-4264-8c24-9f9d3cbaf869', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8a806d8-a37b-4513-a77d-26cf05108c68', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d53e98ff-47a8-4be8-a668-c3b45398f278', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cad96a06-91b7-43d8-897d-7bfb1d7054fc', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('11749bf4-1bba-4698-93cc-41cd8d261166', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3807de9b-30c6-4a1a-a434-85e80560d3b5', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0beca0d8-2895-476e-afce-0923bba7e701', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c8f5fe32-5429-4991-8d88-ba9a79aead8a', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7880ca8d-9bf6-4ae4-9056-5677ef591442', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3f16c617-f9ff-4634-b4b6-2cee590e2cd0', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4812d3ef-02dc-4a03-8d13-7661dd92477d', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('624f1c38-a8ba-40a3-8f6b-dfe76cc36034', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('195afe34-3bc9-43cb-86f7-7eadfb5d25cf', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('08a3ffd0-77e4-4759-ad73-d42ca4d2d807', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6e962b9c-39cd-4cec-9750-c36419ff6319', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a5eeaa7d-bf09-41e9-9414-470442665789', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1f552123-71ce-43f0-b091-a43adb7a8a0c', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4cc5242e-7cc3-426c-9025-ccab1d8a895a', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('60dbf8ee-3263-4878-990f-ab43fe96e48c', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ba27345e-0699-437d-b4ca-24a8e326c345', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f2850544-cbc8-4add-ad35-4b634370b913', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d1767f98-0fc1-48e6-ab30-0cab02504ee2', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c1816e75-de8d-480d-9a62-30805b9d2f99', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('374b8a48-00ec-4df2-9320-848bedfad9de', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c55c0032-b1a4-47ac-89da-bb9c527a4a73', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cf0de0eb-126c-4c60-aaf0-626f5c17820a', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('38061696-b53f-42a9-86c0-77b7196a871a', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('594d657f-567a-4e69-b28d-f2b79136ca2d', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('99c49e4f-cfe3-41d3-940e-915c2a2e9641', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d7a0d94a-c274-439a-b500-0f69b13c49fc', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eb7e6ebf-472b-40b5-9d88-47263fdb01cf', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('de1d831c-b96c-44fa-80a3-725856c6f998', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8cc95b98-8edc-4652-ae4b-9752d3cfd6b1', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1bcffd04-b60d-4cdc-8fe7-df9bd04caf47', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7637bd59-9da5-4cdc-a37c-dd588769d092', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b66e76e3-086f-4edd-86f7-b052ada8397d', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c1d3e826-4d68-4ec3-b3c4-5617a1c14371', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0144b94f-8302-4eeb-bc90-d09e06966ac7', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6587000d-2225-474f-a5c3-480188036398', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('353d7a47-2248-4875-9776-469e7a028cae', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0488a5bf-a825-4105-965f-3fa793d5b9c4', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2d7800a6-63a8-4017-9613-6c693d3cd171', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2f06897d-859c-4e56-b9c2-947d128e3d63', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d6a853b-5d93-4400-ba4c-a28a96721af5', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cb9db0cb-6a60-4f56-85e9-97ca9734071e', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b38a6e56-e439-44d2-9ed6-3223e21c6224', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c3a212dc-036f-4e84-84b9-6e7367b407a1', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d96f1d59-085b-4c42-9e01-1513b232a067', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d8d23634-f1c6-4a13-bb39-bae8e187df04', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f3e17013-eb06-49e1-94a8-2e81e0f8a706', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6712a948-ac81-455e-8d87-cb05438ac85d', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3e298df0-8c98-4e48-a103-cfd3bbe2bec6', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('afceedea-4a23-4f6f-a0a2-a210ac148935', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9fe16585-5125-43c0-a683-f4d1579f784b', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9405dc92-3dc7-4f4a-b799-514ce78ac05a', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0b519921-7548-446f-a6e2-0986f0cec622', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6d013dc5-c320-4873-99bb-d3cbd287ccf5', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('08008ffa-675e-46e6-8f5c-bbb701d67fd1', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c8583847-e84a-4286-b04f-368c61118b00', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ea2e5ea3-6e8e-473e-9bca-3972c30c727a', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c33ab3ab-3d3d-44be-987e-9f1ad950f25c', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ede31012-fbaa-4a4a-b5db-001a2ded08ea', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbc52a0b-fe89-46a8-89a8-f155a437fe07', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cd5218c0-fc28-464c-bb9e-ea0eb9698f66', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('10cd909b-0099-491f-9a73-0cf1d7765f35', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bd7f4de4-1435-42c2-a275-b56e49670e52', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3086d58a-42c3-4c88-ba4c-a1025e79218d', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('529abd87-8855-4eab-a795-a83717bfa4b1', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6aa26a03-2515-4b88-97aa-1d100dfe872b', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8695131e-a5fe-4e01-81da-99769f924a12', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('10063dba-d6d4-43fa-ab89-d682c47a91fe', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('70cf4eb5-99e5-49d1-9c03-70316381bb21', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'INSERT', 'hs_office.relation'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4', '48618c28-9304-4ccb-b022-e2cbb1832944', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8e9ae339-2166-48b7-82e7-f319413db079', '48618c28-9304-4ccb-b022-e2cbb1832944', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ddcd1293-8e77-4cef-91ac-9abfbc2bcd44', '48618c28-9304-4ccb-b022-e2cbb1832944', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('43b09570-1e0c-43b9-811c-4aeb27eba284', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('756acc01-691c-46c1-b2f4-53321cc442a2', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('75550e48-c62e-4734-9406-ad720b5b1f90', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f3bf0870-b546-4607-a032-a3da135dda48', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9998b7f8-aa0f-44b9-813c-61a2861e242e', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7ffabc42-58db-42c2-a3cb-e4ed830f47af', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('11a4c50e-451c-4041-92c6-671263f82f2d', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a78188dd-3129-488c-b6e1-4889725f5215', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('19382a5a-b982-49ac-9005-9358fa7a670a', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6ebe0c4d-1649-4d08-897e-805019faced9', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f5fc0f70-790b-460b-a072-d1f9c01bc7de', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fc09e45c-99c6-46ff-a51f-39de6d561c93', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('87567caf-5abc-4511-9191-27dbdbbee88b', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5fe9a533-2cd3-4433-811c-fcc415acdf60', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('359d8691-dc07-4b5a-9179-0f78927b4660', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2698d560-1c07-48e5-9d9a-78ccfb2c0631', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('21bc4186-042f-4643-bbea-61f44563225d', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7ceb0f31-aa57-433f-a2e3-0408c2b88b10', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('24c34e16-c5e6-4571-b850-fb64b5ddb61f', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8aa371b8-dd2d-4471-95ae-149e30502e54', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('12bf1e90-3965-415a-b2fa-de48afca81f5', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e3026ecc-4a37-438b-b53e-e4ac2d4acd87', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a9296dcc-a040-460e-9319-d93938975fc1', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7b9008d5-0555-4209-8594-8d2c11e376d2', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c470f55a-75fd-4754-95d8-02db7679b5e6', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('306c497c-f967-41e4-88a6-6d357955a6b4', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a43a17b9-e207-4edd-9184-790b10b105ce', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b93cca78-ac4f-497a-90b4-2fbb41ece3a5', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('78de8932-0d41-49a3-bd52-4b01648d77c4', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('73fbb1f4-99ac-43f3-8d7c-e032f636754d', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57083628-836d-4f19-9359-5fb11537f81d', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('65238cdd-b9f4-40ce-87db-581432f3c7b8', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('31b17fc6-f132-43a5-8e48-652c48306331', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('aa9b0636-bcef-4296-bfc4-2beb3c99da38', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1350b6fe-91ee-4c79-bc87-e2632a01100f', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bff60077-ab16-4e5d-8667-1ad2b801b961', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2b36563d-caee-4170-b444-ec02ca919165', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbead323-2088-4b0b-ac6c-599696219411', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b6f28163-8b15-403b-ad8e-8322ae8bb5b9', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9cf4d386-c968-40c4-8af9-401c58cca6b4', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('14b3a0c2-46d5-409e-bd0d-ff369c37950a', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d6ea4d88-241f-4430-9590-918a5de2a3d4', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c038c2d-e3f8-4593-9733-0e1d2c85e318', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fc2159a0-53c2-416b-9daf-506258c420e3', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9de4eb42-73cf-4178-ad43-0bc7b9042c76', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e1cd9ef3-11e4-4907-bb78-b30f83f576e8', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2877af8d-ece8-4b33-8b68-a4985caa2635', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a4b7dd17-bc12-4152-80e0-4186caab003a', '268c2ce6-8945-4393-9916-ac90050f064a', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3dec9bdf-06fc-4a27-b26d-5918ad1e5990', '268c2ce6-8945-4393-9916-ac90050f064a', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7efca22b-d9ff-4331-a718-ddfca5ebac59', '268c2ce6-8945-4393-9916-ac90050f064a', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('85505863-6857-4ae9-82de-f9394eebd7df', '268c2ce6-8945-4393-9916-ac90050f064a', 'INSERT', 'hs_office.sepamandate'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ccdf92f5-ebce-4d9b-b544-e470959b498b', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('307b971b-39bf-4a5d-8595-ad080abafbb0', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('37dc0f00-4620-46dc-83a6-3d64cbc7a1a2', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('84fffac0-e3e1-4374-a4e1-6d16b91d9e8f', '86b706e2-9225-482e-b82a-d4ac4adab065', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7a5ed45e-7096-4f48-a0d9-83df51f3349c', '86b706e2-9225-482e-b82a-d4ac4adab065', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f2395c78-9098-4d15-9ac4-b330a6802390', '86b706e2-9225-482e-b82a-d4ac4adab065', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b371c978-c2d9-4b06-94be-a0944f0e8b34', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8fd6f7e-9507-47ad-ab42-fbd72c3718f1', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9fb3f5e1-472b-4679-a4a8-099557352ec7', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('909ff58a-4c4c-410d-a3eb-f17cf15c330c', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2b643877-6882-4d24-bf51-fb39d8a59287', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('51982882-3575-40c4-86a1-c05fedc436db', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5ce74841-55a0-48a2-86ff-253dcfdf8a6f', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fe903d29-2b20-4f62-8973-ce885b0d03ab', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('118e8006-bf10-4b7d-8f07-fb4b8d9de592', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a2f2cc36-6c62-44e0-aaec-b4749ed25558', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('252d4677-4f71-4719-a287-37245b03a8bf', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5367452a-5726-452f-a76b-8393cc5e6689', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1a32ebbf-8e70-4268-bb9e-dbcc7a501b71', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('af6f87de-0aa9-4320-b5ba-96a8ac23c9e6', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9821f69a-b029-4a8f-b1b3-229517380f60', '93d9827e-63dc-418e-a021-25b400847b2e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8bee7b6c-05f5-4538-baf9-452d909f0657', '93d9827e-63dc-418e-a021-25b400847b2e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b', '93d9827e-63dc-418e-a021-25b400847b2e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('94866c63-1d9f-4b00-b0ff-c6f48c5d6462', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d86f4fc3-58a6-4464-8836-4ce8b34f25c9', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e6d44cf8-f6fa-4138-8410-982613c62c49', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('37c59916-a966-4dca-a1e3-0cffb78ad141', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b546d5b0-59f6-44af-a54d-d8e3097a3640', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c2ccc14e-f11b-497f-95db-5397aa38012b', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('36490d00-f5d4-4722-b285-9cac45e7dd5c', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('891fe7ab-2113-4f20-ab6d-3d81cca0941a', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('10ff5603-7bfa-490e-a468-6d231db02ac6', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d53e3095-38c0-4be0-b7c4-17d6c505c370', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('39a2c817-387a-4a54-a751-6dfc0d781f8c', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('09cb2efd-3998-4b84-a315-788b6375ffa6', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('708ff719-70c9-48f5-8664-dbf49352d261', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7fd8da11-6a47-4ca3-8bf3-9713a6ac0305', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('63ab27e2-5a5b-483e-8346-0024da814b06', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('14fd3310-5109-472b-9eb8-9b3aac0cc5c8', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a351e412-5f16-4c87-b09f-6c0290e20b7c', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0fc0933c-0397-4b0d-ae81-18c41d3fe082', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('133a7879-3f1c-4daf-8b16-9160b4477288', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d2ef2562-a654-4af3-b1eb-6e8bcd35c03e', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5ae15451-1a59-45da-b59d-02884a418fc1', '97e5ed67-e81c-4c12-b354-45db951901c0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c0844f33-c3b3-477f-9321-4b342474802a', '97e5ed67-e81c-4c12-b354-45db951901c0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c8d78c39-6d4d-48a7-96f8-80fdc50b2059', '97e5ed67-e81c-4c12-b354-45db951901c0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('19932b77-d4fd-4664-a0c6-ff8fb707f697', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a71abf2a-ab11-4bdd-8591-6977673bdc32', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e1cfb24e-d3c2-4279-b1b7-0e037766a0c3', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3c82a048-8d56-4f34-98c4-a20e193f815e', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1230adbc-b61a-4ba1-b298-c831c2862e8f', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8c70ecf7-82ce-4661-8cc5-0fadbcc4151a', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7aceef4b-2faa-48c5-8355-72db528f4822', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('24fab1b7-ae06-42e0-8746-4754b526994d', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('13d82035-64c5-4ca9-a85e-988bc4a2eb4d', 'fad03414-b62b-45d4-93fd-51c52149762c', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('62ca73f6-89b1-4113-92ba-a7823aabf31e', 'fad03414-b62b-45d4-93fd-51c52149762c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('740e371f-18b1-4e93-8408-2fcc777b7da6', 'fad03414-b62b-45d4-93fd-51c52149762c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2c15e623-a22a-435b-a125-3edbf2a9b5f5', '48a0fa39-0d72-4c0a-800f-afed02865850', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1c9c5558-dd2c-4293-bfcb-0160e981b6e0', '48a0fa39-0d72-4c0a-800f-afed02865850', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('19241a87-0b31-4156-a479-cdb61cafaa66', '48a0fa39-0d72-4c0a-800f-afed02865850', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('22b95a69-d861-4d90-bfef-a9c3f4ba5d52', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5feb8ea2-f497-4058-b056-dd96514c70c5', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('164e7fa0-ccac-4331-be5a-dc965b1c31d6', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dbee33c8-80d8-40c9-9d16-af5c99aea9ae', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1b4208a5-e7ba-460e-922f-a9fb5c7e79e7', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cebd9ecc-f841-4d44-a3fe-3c82827f2918', 'bad214a0-5220-4433-8714-52e4c736585a', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ac3ee728-8957-4b2e-91d7-9f7a0e543931', 'bad214a0-5220-4433-8714-52e4c736585a', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('30b91518-31ef-4b3f-a539-c1f7566e0c77', 'bad214a0-5220-4433-8714-52e4c736585a', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fa9a7713-93f2-46c6-b3de-9d6e42bce983', '5add96a4-6fff-4fe2-8628-669d72252417', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('052b4092-a5bf-47f3-8ba2-0734ec9129d4', '5add96a4-6fff-4fe2-8628-669d72252417', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4c75b994-e714-4781-a51d-6f582ae07f6e', '5add96a4-6fff-4fe2-8628-669d72252417', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('05a6b2b6-58dc-4310-bcf1-d923168e2070', '2185083d-3134-4b30-9dcb-674058feaac2', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9ddb3c98-f345-4f59-b067-7673d0e06673', '2185083d-3134-4b30-9dcb-674058feaac2', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8a7273c3-5012-45bd-9d3f-72dd52163117', '2185083d-3134-4b30-9dcb-674058feaac2', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b31618ff-d749-4aa9-86b8-08eb2de9dcac', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9b229b0a-e7b9-4fce-a134-c6f5199ce495', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('46ba8c49-58f7-441b-a7c0-290a9f490a1f', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1be877de-9e9e-478b-855b-f4f0e6dfb842', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7a48ec29-24be-4d13-b788-264eb6fe6327', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2fc229bc-25f7-407d-bdfc-e9469c17ca34', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('46d04d79-5187-44ec-8f30-e6f823bc47e6', '60702c01-7285-4eea-a937-6019d6e3661d', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3817a2b3-7031-4489-8c87-23babe729843', '60702c01-7285-4eea-a937-6019d6e3661d', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d241e268-fffd-4d21-9936-819ae9975f85', '60702c01-7285-4eea-a937-6019d6e3661d', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1bc97522-8adf-4246-bb4f-9a870002fbd4', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7ee9690d-ebff-4afb-95db-fad387eb4255', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2d00deb0-bb73-447f-b867-71be2d2dbfda', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3a64d35c-f155-4420-a87f-ddd771f7e500', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('238a91bb-2186-41f0-a97b-6e4c62a2c6a8', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8b30e218-5562-41af-82ce-bf3f633d1f3d', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('31a9442f-92c2-4f7d-9895-a7095ee96952', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bacb714c-ac84-4f51-b8e3-fc74b27e1388', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4f6ce070-55e4-4d2c-9429-5d4b3fa25077', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('274595e4-31af-488a-997e-688d10886a47', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('596f965f-b224-495b-9f5f-5150af69979f', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e77c42c3-559a-44af-90cd-304eab1646a5', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0ab92d43-0a98-4d77-9f65-44d74acfe5b8', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f6542fe1-149a-4244-b812-18ad82ff555f', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2715a520-f38d-486b-9053-055f6289c966', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1a09398f-873b-4c9a-9392-c129ccf0d636', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('44074e80-79cc-4965-9525-29ed20419544', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ab127630-3367-4898-b0d7-f3ef0f6fb7cf', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('53f0c6bb-a76b-4f8d-81f9-a476c9106436', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('88d7ad95-2568-4cfe-8f1c-e09ac9fe8983', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('138ab6b6-1b04-4565-bbcf-db30047e0050', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('beec505c-c47c-46ff-bdb5-7fe04a5595c6', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ebf101f3-6206-4cd7-a5df-276dcec51cba', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('31faa035-267f-46d2-b9b1-af688c393431', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2b33fc20-f3b2-474c-9d9e-40be8240e900', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('36c7d299-20b9-47b4-a2ed-bd7031ad3dd1', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('95ad7ff4-f585-48c5-945a-1a87c3bb2229', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1be5be35-a23a-4f02-967b-f4a7237f482a', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eb9181ce-7b72-4ed9-93aa-49eb66db32eb', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f9768956-c483-4cf1-852d-b6767a8d96cc', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a37b1549-de63-4830-81ab-816dbea5ddf9', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('283a7da7-7cf5-489b-bd81-a370cd694f3a', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fe2d0171-effb-42e9-ad87-d877454fa221', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c4f3311d-618c-4e1b-9e0e-925465a5f932', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f276aa53-a904-46ec-863b-18e593fd2c3e', '4761d35a-2de3-4415-a91d-f53d15162aea', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('17df9716-97f3-4970-813b-d144044d718f', '4761d35a-2de3-4415-a91d-f53d15162aea', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('82813289-dc57-4c85-8c73-8e7f71966bbc', '4761d35a-2de3-4415-a91d-f53d15162aea', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('54ab8484-47e5-432c-afd4-7791561e09a7', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('846820c5-9147-4f79-9b06-62110498d191', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7cfdc7ad-f7bc-42d1-9b72-ce871adf665b', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b0f7eade-7384-445b-9f6a-76f19007d9b7', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4a4b0f7b-8506-4ed5-be19-7c0baa476c45', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('815ba931-a309-42fc-8865-b077937d4bd5', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d7dd1750-2c6a-48b1-bfa7-ad708c3df73a', '4dbf555d-3375-442e-a87d-815d1492af55', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('20af1fdc-7bf2-4f7c-941d-5294057a2148', '4dbf555d-3375-442e-a87d-815d1492af55', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d0bcff97-900b-4660-9245-993dee9485eb', '4dbf555d-3375-442e-a87d-815d1492af55', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('36e09c9c-05d3-46fd-ba19-91e3dbb1ded0', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ae3d0091-aa98-44a3-adbb-2552b6179e97', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7ac91a3d-9409-471f-b6f6-8f50ea03a292', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b0a82131-7ecd-4685-be5a-89dd1c4cc7de', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0897f76b-9b66-45ae-a884-5c7edd121433', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d79f2a1-1130-4416-8c72-b6cc85740644', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('44a911af-8a2f-431f-9e1e-004746901334', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c885871c-5f3b-4a02-a550-f962132d898b', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cfdfa9ee-7570-4a4f-bad4-0e18fdff5004', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f7eab9a0-7f14-487c-9434-669dca849b40', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('819393f7-e96d-499b-8663-3adaaf1b0a73', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f3d00781-37e2-4b9a-8107-bdc123df38d7', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cbff4b85-4722-4e87-8adb-34923d9987c0', '047364a5-9dcb-4027-a94c-e35f4646860e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6f009e98-a9a4-4d93-92e2-e955d04bb7e4', '047364a5-9dcb-4027-a94c-e35f4646860e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('21a21577-f8e6-4856-8c80-996000f525c9', '047364a5-9dcb-4027-a94c-e35f4646860e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('160977ed-ef11-43d8-9ff7-af86c743d2ab', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d94fd859-6e03-44a1-ac1d-059ed72e23d3', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ebb468b1-047a-492c-a76c-5031645e7824', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a2effc4a-acdc-4660-973d-e5313a9df528', '91b63591-b1e2-4c65-8ad2-c607be4c1238', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('42491f82-8223-4dbf-8660-688e35fc5694', '91b63591-b1e2-4c65-8ad2-c607be4c1238', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('aaaf21f7-baff-4867-b84f-36a16f0fcbf1', '91b63591-b1e2-4c65-8ad2-c607be4c1238', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('66b246c1-b389-40b7-b238-48903a3dae95', '6da29bfa-4744-437f-aed3-2695571c58bf', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ddcec555-0f99-4cec-9d45-b0ddd4e7fb26', '6da29bfa-4744-437f-aed3-2695571c58bf', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('76d3e38c-0889-4169-814d-5f7e36c0c767', '6da29bfa-4744-437f-aed3-2695571c58bf', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4d9e1a7c-84fa-43c7-a1d7-e898b20df129', 'db7f287e-dfd7-4627-88e3-407cac226472', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8c236a58-3fab-421e-b8a3-6c9df1269fed', 'db7f287e-dfd7-4627-88e3-407cac226472', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a4b5890e-c3d9-4eda-8a8c-3ebc20a39061', 'db7f287e-dfd7-4627-88e3-407cac226472', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f35bc896-c93b-42ca-994d-4f5f4e2e5b5f', '7b7a528d-a284-4d0d-99ce-73f2a7585f78', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c', '7b7a528d-a284-4d0d-99ce-73f2a7585f78', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6372e9ae-f522-468e-95b5-06a527854b0f', '7b7a528d-a284-4d0d-99ce-73f2a7585f78', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('35f61da7-bd75-4482-ad05-d50ba7e099ca', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d5009976-c8c8-4d64-b39e-08f019999ae9', 'a083dfa1-afb0-4531-8a1b-8f4ba78a6215', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9f2f2eae-80dc-49c7-810a-69b10fcc3421', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('42557861-103c-4fb7-b3c6-0acd3d7737c2', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('85dbc28b-c5c3-4914-b645-a36056f4cf17', 'f7d7c4cd-e05c-4a38-8fe7-41ea99ef9787', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('45cfb9f8-8e5e-438d-90f7-6b1ee872c003', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ac1f7518-f255-47bd-bf31-29d3cd2bb57a', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b45ba485-ee82-447e-8a4d-42679a233455', '029b1c78-d68b-48e6-83e5-8883b9cefe7c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ac9bd6e7-e7b5-4f25-a873-79ff3436fa66', '90604765-0e48-4363-83e4-1c2e9e4a8f33', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('52d12930-5ca0-4344-bf72-32faf8dc5d9c', '90604765-0e48-4363-83e4-1c2e9e4a8f33', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ba038cc8-3ca3-4c25-9805-08eef60945b5', '90604765-0e48-4363-83e4-1c2e9e4a8f33', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b5be48c3-0721-406c-bf86-b7dc1d6a7016', '58ca016b-15ea-41e3-80ba-2603bf736619', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ba8ff028-06d6-4536-8e79-6c46f8e4b9a2', '58ca016b-15ea-41e3-80ba-2603bf736619', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('470fa9af-f292-4516-be71-346b1e987d83', '58ca016b-15ea-41e3-80ba-2603bf736619', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e62715a8-2e69-4a59-806e-000886fedd92', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0f8fd73f-526c-4e76-a5f1-043e44386cc3', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0e0eb247-f0a2-435b-b44c-34ffc5ecfda6', 'a7494bd0-af97-421e-bfa3-53bd97fb1df8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('57130e2a-328a-4402-bd54-a76cb815503c', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0baaa10d-4abf-42df-9689-d6d72a9cc418', 'defa6288-bed7-4ed8-ae6d-fbbb3530a632', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7c958983-efb4-4117-a2a6-4a3d35c233b5', 'f1048d9f-e560-459a-91fe-f769ef049648', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c9732223-5e57-4d36-b412-91122ecb900f', 'f1048d9f-e560-459a-91fe-f769ef049648', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a1476e12-e8fd-4bdc-a1a1-68177652431d', 'f1048d9f-e560-459a-91fe-f769ef049648', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b12dcf3d-9b06-4d32-938c-209adc18ce37', '25b8066a-59fd-4733-90f2-8ea80c826fff', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('daeaae1b-5d88-45a8-8697-cd2e22e519a4', '25b8066a-59fd-4733-90f2-8ea80c826fff', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fd07e597-fc5d-4c64-b491-76a5420aec78', '25b8066a-59fd-4733-90f2-8ea80c826fff', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ecde7ac8-3b81-4864-8b26-2e07cdc49190', 'b2cd9234-6651-4c9a-818d-f48610d76095', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fc871f18-a6a5-4cb7-9f23-fee703a845c4', 'b2cd9234-6651-4c9a-818d-f48610d76095', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1e643070-dafa-46db-8294-fecd8249232e', 'b2cd9234-6651-4c9a-818d-f48610d76095', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('08c5e34a-9a18-445b-9fbb-85a3ff34927b', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('71520b2b-f697-4135-a748-8ba36939915d', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ffbddcbf-8922-4b3f-9248-47b86638a1b6', 'c83c9583-a825-4a2d-96b7-fec9dd635fbc', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('07b70014-fbf6-480a-a128-6dadf6ea6c49', '871eadbe-c143-444a-966c-cc4494ba93bf', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('193ceb34-df58-46b9-92e5-62ce50a367c9', '871eadbe-c143-444a-966c-cc4494ba93bf', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c198dbfe-def4-43ff-ae55-8e0a58f068c7', '871eadbe-c143-444a-966c-cc4494ba93bf', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('68136a56-de73-425b-bc05-ab6fed1cdfd1', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('43c48616-3e31-4bed-9727-f9e6d6447378', '6fc20aab-5dcf-4b04-8a33-1d1512fe8c61', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a6a56680-46da-47fa-b5a0-5012f91bb3d9', '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ca68370e-d560-42ec-bb93-b14df8eacdd8', '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('48f6d390-367b-4e7c-ab30-c2e7009248a6', '84d4763e-0133-4d81-946b-fb64d1a3fd26', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cd8e900a-3f5f-4b54-abdd-72b79c3f3203', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f47459e8-dfd5-41e2-8b4b-c7999197f56e', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cddce99f-aca2-44e6-aa84-b1fc98c35c8a', 'bdfc3748-abd1-4bce-a239-f5b4df6715c4', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4386a60e-d5b7-4f36-bd53-1de1e52ea755', '67c2d793-212f-4ce0-a750-b18224a93c73', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e19225c5-a87b-464e-8c63-3f52a45b107f', '67c2d793-212f-4ce0-a750-b18224a93c73', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ab491da9-8661-485f-90f4-a85c7f3310f6', '67c2d793-212f-4ce0-a750-b18224a93c73', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b0214c88-ae13-4faf-9870-01872398bbab', '3692b171-10ef-4f20-97de-ed5fa562ca46', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9398d762-ff69-44a0-a07f-2149bf07bb4f', '3692b171-10ef-4f20-97de-ed5fa562ca46', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eebe4432-38e2-44dc-85c6-995cbecd173b', '3692b171-10ef-4f20-97de-ed5fa562ca46', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f1838834-17f4-45ae-823d-cfd97b9ad7d0', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('94815866-8e0d-4177-9026-3fdad0866fc2', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c9448020-2d88-456d-827c-0b24917a78c6', 'ce424fb0-bcc4-43ef-bc62-e923fb337fde', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8b8b38a3-679a-4331-962c-c540eada4c22', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a59c2244-46ef-42ce-9a35-9efeb0a02068', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4556335e-4c02-4879-a850-cc792db27b5b', 'ccbd7baa-494d-4bfc-b5bb-4310e607df04', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('88eaec32-bd9e-4fd9-973d-1aaa932c8115', 'ade3baa7-760f-488b-962d-7e365ad1402f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('62c26e94-cc22-4558-9bee-8ec8e6d29b95', 'ade3baa7-760f-488b-962d-7e365ad1402f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a0c34da0-2ce5-4877-8172-1306a2599c87', 'ade3baa7-760f-488b-962d-7e365ad1402f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('14e4dbf5-5fa3-4010-91e0-c56e71623ba9', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('359f9b02-63f0-47eb-955b-52a344462735', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('05d18d2f-a5be-4b65-9e78-8fa91db4c68f', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f049b588-1279-40e7-be2d-2e691e8a4090', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a41ad44b-e566-492a-b2b7-9a1ed2bdd18b', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5879bb5b-1171-41e2-bff7-707e18fc0582', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a277424f-d7f0-4568-8cd9-5299a13d0f4e', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('66c939e9-0515-4cb0-ab1a-8dcd9243c53f', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ad1241d8-512f-4589-aed2-958e1fd6441b', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('39a2eb59-2ba9-486d-8146-0a9a4d85769b', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('17e8a223-4aa0-4e35-aca3-f381f9ce1328', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a24d0918-c78b-44a2-8c90-965940f30b95', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('10971aec-daed-47b5-8514-f88f9ca1016c', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e0c2115c-f70e-4c77-87a7-d1f524f47df4', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6cfb3c88-43bd-41a3-9c01-29bbcb67752e', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7e91e09c-a072-44b1-af1f-bc1e6430d371', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4dc88a9e-38e7-426b-a598-f246cef849ed', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3333c620-ed65-4a4a-af0b-71106e0b5b30', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f8591833-ef9e-42fd-b91b-f66b56267b0a', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('51da6c66-df21-4619-bb68-2538c6ef2c31', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a16e2346-b56a-4ea3-b07b-f5f494b2b42b', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7514b6f6-f31f-4397-bb3d-eefe138ebb9d', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bf58a617-cb18-42a8-b34a-56b584e6daf1', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d3e00370-8788-4a7c-83d6-693a01ccac0f', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fd972637-8015-4a7a-9591-683814d6dc1c', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c1f4725e-747e-4d03-8a86-b2f4fa4459ee', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e2c9d05c-4e79-48cf-8093-e8fa4b0a655e', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('48607eac-4413-48eb-9b01-bd264a9b607c', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fc0b7f19-723c-46f3-b40c-a8973fb5cce6', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e131dff7-b974-4e12-8324-732296676146', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'INSERT', 'hs_office.coopassettx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('99188a87-efa3-4365-9135-700c0899d0dc', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'INSERT', 'hs_office.coopsharetx'); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('59adeeef-e54c-4b26-8a36-f4dbe0b05273', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('01635d74-7e94-46e0-aba2-a1c8d471aaff', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2f8771ba-3650-43d8-af99-ffc413066a42', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0aa2520b-5481-4d8c-a478-964e4441d5e0', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f5f51c10-010d-4d5b-bb8e-b2dc353ba051', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d71a8b9b-b0da-4675-a6c5-45d2664c70f5', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b32ebf6e-d5bb-4b03-9d03-10bcec3a6172', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5fdcc08b-295c-4853-957d-d171b1accd40', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('dfb1ef2c-af28-40d5-b625-9f157f1323d4', '831a608f-fefe-425b-b740-1786f856c680', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2d5f609d-aac6-41b8-b7dc-ebb66f4b3833', '831a608f-fefe-425b-b740-1786f856c680', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('e4c728ed-535a-40cc-a460-3174b695f899', '831a608f-fefe-425b-b740-1786f856c680', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b491c0ef-e4c3-4692-94f3-bf13b2dfff8a', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fdad2cc6-4985-4407-ade1-857bd91c5518', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('1bf68e49-2a97-4686-a8b9-8cdb46475326', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ccb79609-4c10-4c53-bd5b-3a128e7f7ebf', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4e5c24fc-e3d1-49f7-963c-e386a72be2f8', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a8dc5128-f0db-4f0e-b599-a87eeb73603c', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0fd249e7-1454-4914-957a-b3ec7bf25bee', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0334125d-2eca-4694-9cc3-abfbb58b49f7', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bb74107e-cd5f-4207-87e2-69f4d67eb7f3', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('06d170a1-f3a5-453e-9a08-3dedf2ecc0d4', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2194c042-0182-42cc-8174-6f219e3c4e65', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f792f250-1f61-4efa-a515-d04af7ad5e18', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('02748d62-3212-4465-8c05-aabc3f919a08', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0cde804f-7eed-49d3-8eb4-d55e806f8957', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b04e429b-3f95-4dea-b61e-3e96d114ecd1', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('3014663a-10bc-4a8b-b47c-2c805b198d7f', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('702c700c-a440-4771-b203-9c030c1c100f', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('69067b5f-41d0-447b-aba4-31764c6d6e04', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a3d6ce3f-655b-452b-91b1-539956c8580d', '466056f2-efc6-45d6-b778-fa111db7a18b', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0198a5da-a2fc-4f7e-bf41-54642325d8dd', '466056f2-efc6-45d6-b778-fa111db7a18b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f', '466056f2-efc6-45d6-b778-fa111db7a18b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('41bf1ce4-7d32-4bc9-a240-6f37aa7c5311', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('008b96bf-c732-4063-95fa-8660cc3e378a', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('74d9ec93-6755-4198-bba3-b900d1391ddf', '51a4690c-bb0e-4be2-a285-31552f900db6', 'DELETE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9cf52144-7c0c-4031-a0dc-b5f7d0581115', '51a4690c-bb0e-4be2-a285-31552f900db6', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7878934b-1841-4918-85e7-ce853fe8fdba', '51a4690c-bb0e-4be2-a285-31552f900db6', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('18630744-5484-4f55-94a4-15b6f8a8c791', '925e61ee-5120-4205-b609-18083af2c4d6', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5', '925e61ee-5120-4205-b609-18083af2c4d6', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('23115d61-dd0d-4545-8240-2415ab603868', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('4b8fc5ce-2f77-43cc-8c11-caefef50e9e0', '76b7d3ec-14e4-4e72-89df-ffe2ae3cf4d9', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7ba7e7db-d2a0-4d8a-a982-4b592a6519d3', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('28a1da29-5665-4481-be2c-23484fede329', 'e27e543b-f15b-4e0b-98fc-ce72bcd5d258', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ad772eba-1cc4-4973-b407-ee1292c8cefb', 'd9c28f32-a87e-4f2e-af07-75a76004907b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2b1bd996-ed42-4b6f-941f-a02115b5c49c', 'd9c28f32-a87e-4f2e-af07-75a76004907b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9532739f-1149-42ed-bb1d-cac1d14d4380', 'b0a9b8a6-8709-4210-b4ad-eadcab6f7866', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('04a9b874-65cc-460a-83be-47366ec3c35e', 'd3e130d9-9288-4d74-8699-1778d2f5c151', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fac002b1-7dd0-4def-9c60-ce441ae74bf0', 'd3e130d9-9288-4d74-8699-1778d2f5c151', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d0c2aec5-df1e-4a43-accc-292636a196ee', '110138a4-46e3-418b-8ce2-095da9c6b98c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c16db138-0d91-44b1-bd5a-b8361d1773a6', '110138a4-46e3-418b-8ce2-095da9c6b98c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b299282d-1cfc-41b1-8936-2dcbfe1017ca', '0565d216-af16-45aa-86e5-9ca55751322f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('bb211784-8f68-44ff-833c-3f501a33ad0f', '0565d216-af16-45aa-86e5-9ca55751322f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d80e22b5-9ba3-4ad6-a392-fddaa4a5532e', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('2afe8e61-bfb1-44c3-8685-bb5390e9ffa9', 'c7d34de2-7cbd-480a-9ce5-a574ef7248d8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('d1fb0181-59a4-4c35-a6da-9c4c8c420f4b', '147820f5-533d-471d-9f54-99e087ec37c6', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('7f04b4ff-ce51-4c25-b924-eda9c80beab9', '147820f5-533d-471d-9f54-99e087ec37c6', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f7036040-6df9-44df-a4a4-40b8065234b3', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('aa8c9c0b-ac3d-4fe4-85ee-22876b77a346', 'eb40ed40-ebf5-401a-b498-ecc46928a17d', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('5612b460-e9f4-4c7f-8f30-fabca1954260', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('793d3808-9277-4bc1-b39e-46fd0b5028d1', 'f9c724b4-3965-4cfa-bc93-5b780b2362e7', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a46e7e72-094a-4677-a2ba-b027e117c814', '1b444a8f-352d-4812-97aa-bd1e649201f8', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('34608829-3d7a-475c-b734-f3692e102b82', '1b444a8f-352d-4812-97aa-bd1e649201f8', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('176b447d-ce47-44da-8219-a00244a3d5e0', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('22500be4-6daf-4c50-9120-a4d0c6491720', '2b1590f1-c1b8-4318-9879-8e2d898fa4a5', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c772675e-39bf-48b0-b10a-1a2ff065c3a6', '0f05f1bd-403c-4239-8595-d317bba58a32', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b096450c-b5aa-4a9e-9b80-8633ca2243a4', '0f05f1bd-403c-4239-8595-d317bba58a32', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('651a87c6-db56-4963-88a5-5dd7b74d53ce', '2cca894b-c08a-4b36-b809-d417cf0b305c', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cf345447-6015-474d-9c1f-2fe7b879edf0', '2cca894b-c08a-4b36-b809-d417cf0b305c', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b', 'b4acab9a-7a54-42df-bd35-717f052b407d', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f', 'b4acab9a-7a54-42df-bd35-717f052b407d', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c7a074b6-6e8b-4570-a8b3-baf483e67c14', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('16c5c51a-6b85-48fc-a19b-b1d0319c414d', 'fab99b6c-dd05-451f-a9e7-80891ec94db1', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('a5de5a65-81f3-482b-baac-4054940ea7b5', '34b1a8f7-bbda-4b59-bf1a-1eb336bd2bcb', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('c32e6121-a5fc-4345-b6e6-26eda31d266e', '9f3ea248-0492-43af-8430-2cbe4ae3338b', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('96383615-0c59-4cc9-9292-723a1c0f4a52', '9f3ea248-0492-43af-8430-2cbe4ae3338b', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('db092336-0de9-4c19-b5a7-9f035596b364', '02362331-8069-4712-9c39-371973edb192', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('63dd3ba5-db8d-481b-8eb5-ee982522f4d0', '02362331-8069-4712-9c39-371973edb192', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('67f40c40-c638-4350-a11b-951b0bf73bf0', '899a89c3-6715-4a37-bb69-1ed124e0a23f', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('0166244a-b22b-4567-a09d-bd113f3430b0', '899a89c3-6715-4a37-bb69-1ed124e0a23f', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('b969f3ba-2936-4937-80ff-c440300d3f10', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f6d1a800-dbfe-44d3-a939-e168760203dd', 'a660e5c3-c7c6-4cf2-9508-5fc2de46f1fd', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('44a7f281-7acd-4536-a7da-db74fc7d5a30', '568b153a-13dd-4510-b681-13b53f866091', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('51278cdf-daff-4fe9-90b2-1e651847e0d8', '568b153a-13dd-4510-b681-13b53f866091', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('852d7666-33fb-4246-b2c4-1efbecba4da0', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('fcc39eac-cca5-44fb-b728-9b4df8aa3874', '6d4e335b-f22c-48d8-98b3-0da4ad759e65', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('6a568f34-8ab2-4a74-941c-266e28a52836', '105e8365-c8b6-4d69-bef4-8bc388524462', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('8a4f7331-7bdf-41a9-85c3-5ea327063d71', '105e8365-c8b6-4d69-bef4-8bc388524462', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('526ae830-0342-4a87-a95f-07d760391fb7', '5b516553-2772-4591-b4bf-4f353e598c79', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('08a87b5d-d5eb-4d77-aa10-1afa61c87e38', '5b516553-2772-4591-b4bf-4f353e598c79', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb', 'df223672-3c4b-4044-8f54-1794a50c957e', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('cc4e1270-9d63-449f-ae27-a492326f72b1', 'df223672-3c4b-4044-8f54-1794a50c957e', 'UPDATE', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('f03cc85a-b722-43f4-8d56-a29f1387e692', 'cd8cd45a-a4af-46ce-a434-5b5208095346', 'SELECT', NULL); +INSERT INTO rbac.permission (uuid, objectuuid, op, optablename) VALUES ('16994a15-ef4b-4c7f-b123-e9c2e03919d0', 'cd8cd45a-a4af-46ce-a434-5b5208095346', 'UPDATE', NULL); -- -- Data for Name: reference; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.reference (uuid, type) VALUES ('9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c9e66e49-a298-4325-a291-5c6a484b4dd1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f1ef8e9-5c2b-46d7-877b-0ac0d927aa31', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dcb6787c-3652-4ddc-bea1-6e32efab1ab8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1d26a525-6c01-453a-990b-8208eb077058', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8a906922-c5cd-41a8-927e-6506b96a722c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dcdfdea4-eec6-46fb-a006-1753a075201d', 'rbac.subject'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b08554be-1c78-441c-87b0-5dbd7378a983', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f731e75d-f892-4738-976c-576071605327', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('94724e79-a840-4218-a5d6-e669c73ba53d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e2fd67a6-43c3-4402-ad82-5675d15c619d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d366868e-1c5f-40d8-90b6-9159123762fb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f360669b-74d4-46ca-a651-bbadc07e4d8c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('966e57d1-3610-4b50-8cfd-033a701ba50f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('73da7922-3956-45fa-9101-2a53a494d5c1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5228a4f7-f78c-4841-a40d-52d994d21a29', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1e1478e6-737d-4275-9ac2-8b9f1b020efc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a22f7977-6575-4c54-8b20-3ae24ce14df6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e8782aa9-f679-4b73-b584-cd6f9bd7e2f7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('138cbab9-184b-4679-8caa-6d2ee82de3c4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8eb7208b-33f9-4e80-9071-ba1b76b79f75', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d3f6b0be-2fc2-4b3b-98d8-e72db656be65', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc68123f-b589-48ac-ada5-6ec38993b77e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0bc96a92-5afa-43cf-81f8-63c24e7d82bd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ee1f7e4c-6d00-4eee-a778-e936f019b149', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('60eb6016-51f5-40d5-965c-697d9ca9b3a8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e200c0d7-cec3-48ca-be23-61fc26739dd3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c767e22f-f90f-455b-8733-7e58ca5ffba7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('023e5366-3465-4a4a-ba48-613a72e043c8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('71186c13-cea3-4223-9a7b-033ba9412920', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('154d1dd7-66e8-43ab-9b81-796758801837', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('66d8af90-61e5-46c0-a425-501a4320d913', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5abd1ae5-da0c-415b-bff7-ef07513e08aa', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6e061f41-d64e-4cec-ab4c-016ffbf16cc0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c3163a16-abd8-428c-95d6-420b806f3291', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('45cf6473-ef59-46d7-a313-99d7faa6cba5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('607b321a-2e68-442a-ab4c-c603d2f36491', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2b391e5d-6b69-4999-8ede-1885d700233f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d90af2d1-f25b-4bcb-a9b5-ac09c8e3e8aa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3ff75cbf-35a8-4a35-b38e-ef723b8e2b86', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4309a7bf-0556-40d0-872d-dcbb13273c62', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('98d3874a-b4fe-4355-86d1-d0508adc32b9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5034d61c-e9dd-4b48-8dc8-b9279e015494', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dac07f03-0dc2-4de1-a7f4-13145acd41b1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('acc6f8b6-e950-491a-99d8-432ab5f10b8d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5545c680-274b-476b-98d4-e3fa99c4f4e4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('662d0ce7-6216-4366-9691-cb5e6020e36f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0c83cf5-e355-453e-9791-2d850078d07b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c16a64f9-5dd6-447b-bf7f-f19d542b981b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('083a28d4-199f-4cd6-9aa0-5cb0b4aac74e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('60ac113d-c253-482f-b057-c83399cabc22', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7aeacd93-2236-43ff-bbb3-a7ed6ae5becc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('36cbc041-bb3d-4058-9ccd-2d608992aeef', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('205f3e0d-445b-4bfb-a16d-fbde4399c1d1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('45350f64-13b8-47e7-ba17-15ba11a61981', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('03cee890-5e1c-43dc-8489-8ad117941f68', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c4658a5b-6d9a-4482-830a-754759afa33d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('79cc0827-439d-4357-8749-97d21830f648', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('14951d5e-990f-4bba-a3fc-a1a9f8a3d714', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1cf65eee-3ae3-4c77-9ce0-e156db37da82', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1c6c6416-1de8-4134-893f-c0b3382a4248', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d75237c1-598b-4ce4-8e7f-ce5870f464b1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ab3678ee-6848-4dd4-a25e-96566a038ef0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b477f690-a39f-4b3f-8ed0-8e7c2bfbbcbd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('96bb1170-326f-47f1-a8d5-c6b9451cbc11', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dcfebc0f-3615-4acb-9117-b060f6946fba', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a14e50c5-8609-4448-8855-5e76818df2e0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('83da6f4c-a933-44a4-a317-b8b02eef997c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0818dc0a-1fd2-4a99-901e-0dab13697d85', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('052cda7d-c78a-49cc-8582-b161691afee7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('461bfac0-a91d-41d5-a96c-4987a67f59f4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('45375195-71ed-41e0-a357-f3c0db47e1e9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f39f5cb9-bdfa-422c-bc23-2e564025722f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cc20b289-5f51-4be7-af41-151a0d8aed8c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f7a89449-2ef6-44b9-95df-b32b6a9f290b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ea3b4e3b-e967-4238-8be5-ef1348aac8d3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('54cac581-c28a-4727-82ac-0f4af93da96d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5ee1eaa5-dae4-45af-8c9b-af4b44c192c9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a8653567-6c67-484d-9c69-399fd7ca9fe3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ad1da435-a35a-4ed3-bc3e-ad2d8540c5a5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8d8536df-c84f-466b-bd46-17e8ff67b43c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a8737274-244a-4f6c-8095-6e3e51ad10c1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('12f0b062-6115-42d3-b1bd-b82a0e31efd9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5d73f76c-f609-4650-9575-18c54c52251c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('77af2213-1fcf-4ce8-926e-26c15a6e6f31', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1460063c-a1fd-4a4b-a7f3-13aabd41c021', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3b69fbeb-ad2e-4ad5-90d8-76d615f4ae2e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('85d8e49d-9148-4431-a020-053fd4376574', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57cdb6cb-097c-4f08-8daf-ce99536adb9d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('801af8b9-6a98-4758-93ee-1cb6ea634bcb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b566ded5-a4ab-47a4-9062-460eed731140', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cb843eb3-0d44-4099-a3ee-989d1f9f53d7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f3818a69-8669-4892-a8cd-e278ce45c518', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b0ccd4de-9f63-4848-b52a-7ad776dddd78', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cb83023c-0cfd-4e8f-bfd0-3e77c50ae4cc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4ca46ce7-a371-45f8-aafc-b7803b821eb6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fd496f22-22ba-4d27-a87f-c8bf1cb1fda1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3b95dee8-1138-434c-91e4-5e28d537fa0e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a344984d-6c4e-458f-8efe-7bd7459a3d8a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bfa8792a-886d-4a0e-a6f9-abef9ff2174f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1a3671c5-dab1-437f-8487-a53c54cc6146', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('407bfcdf-1273-4569-8483-5cea353c546d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('903acdfc-150f-40d1-9f89-819bfc1711da', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c33226f-3c03-4147-93b7-d41d378cf0f5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('46461eaa-21f8-418f-9c6f-7fcf8e86513f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('198cac03-a83b-4a24-8559-29ef72cd24b0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('836684cb-c167-4dfd-b8fc-35424558fb5f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e1624410-b367-4523-bbf5-59f33582b16f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6ac59ed3-6976-463b-a7b9-60a6dd27b46c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('22c7cae4-b6f1-4398-beae-fe0d3616e062', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('47b14246-134d-4543-b287-c52e6af5b78e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e114ba1-65d5-40a2-9539-3413cdc28798', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d7179a9f-6981-4794-a295-ecfe89d3a10b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('31909570-3577-492f-a7a8-c7345f213bc8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7225b959-f7bb-4530-a7f8-2f64811dd98d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c6f4fd85-d5b4-444b-99ac-3133eabf4534', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bfef72bc-1d20-442e-8e7c-1feac7e3f1fa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32d71457-5a04-4edf-87ed-850f2c354718', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('062ce171-efc3-4f07-8aa1-3486948ade81', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a7c2d342-0472-49c6-933d-6674ad52588e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('611c71bc-4ce5-4a20-b819-95d274f73227', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('546dfdd4-cd73-4fff-8f2d-7fe4a4151ca4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('febfbe7e-4bf7-4385-834f-017201aa8756', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4d0f6da2-1d0f-4f88-b0d2-02787f2eba2a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('00c7bec6-72d8-4cb5-abeb-bb7ed81c80bc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bcd721f1-4e79-41a6-9019-b9c3ed63a4a5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('29338455-e154-4447-9c36-9eb49cd398bd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('39eb942e-dcef-4f04-8b50-ff269434e769', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1ab576b5-1092-44bc-81f2-5f21f24810ee', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5d5d557b-2893-4a40-9dc1-c160b7281437', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d6fae1c1-a7a5-4daa-8ae2-389172131648', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ef043b77-f00c-42a5-b628-fa257cbe98fb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('94d61a3c-08b9-46bb-bb3a-c4dab0521df5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('568bfaa3-d857-432d-accf-ff32377587c9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a2948c08-e5c9-4be7-a8fd-ec429e86bdf3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6cc9abee-77f2-4e9b-ac65-f9cc57f00825', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f89d32df-b3fd-40a3-bbf1-cf8220dfb43b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c594394e-fad6-42c5-90f7-a3dda0b8e028', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f3455019-460b-4a40-ab4a-246190901887', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b20cc2e5-2836-47cf-913d-d5cb7aec6356', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f1e50651-1a66-469b-8a7e-5063a7d1852d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c2d87277-0280-41c8-b0c1-3c431e7fc33d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f8c7ecd7-7ec9-46fa-bd96-aac315e96771', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('97c9bdab-30ba-4ea5-acc2-6777123f2ce5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('450185ef-185f-46b5-8842-8e4009576183', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('64aa40b9-9dc6-4254-994a-04a2198a606c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b5c771dd-5b62-4631-85d8-5702e34266c3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('27b4fff1-44c3-46a5-8fae-c72a49d4bcb3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3a8a00dd-e39f-4381-81a3-4e4698dcf29e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('73ecfc31-bde5-46cd-9a59-37e65c7db8fb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('24ea1e85-129a-4d56-aa69-1e9ac58d0104', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fc14ee74-f82a-4d8a-8db6-5b9627563922', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d009618e-5194-4703-8008-54da927c3bd2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e8400d5e-ab6d-41d3-86a9-a6df2113adbc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8dca2daf-408f-4e45-a777-a3f61b543450', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f7e8a61e-ef07-4720-ab46-63ce8570ffdf', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f28aa0d4-1a57-4301-870f-fb7c78869cd6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b31f0400-18ec-4b70-9578-0f887d35021c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('61147c69-ed43-4813-978e-5aa7576dd2bc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a9238907-5ce4-40c3-81a7-3822d6bc7c5c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2215d918-b008-4253-a36e-b23e33191470', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('81b01454-08e4-48ab-9879-4b7ea82a0531', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5e496a56-e275-4ba7-8c07-c171a6b44e72', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('797d0a10-4bec-4f32-b746-671b6a46bbef', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6954b103-16e1-44f0-9aec-cf5cad98ff6c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0ff11824-6467-46b8-8f52-45dd6fa89041', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d7925313-949f-4b4e-95c4-23e82e5b2f7c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32698556-c076-47c6-8d84-d311090cabc0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('df81248e-911b-4793-9913-0538a12ea820', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('481c04fb-38e2-49a5-a9a8-065ac59cd53c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fe3d0cf9-b5c1-4db3-92aa-1afd4cea0f1f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('15a81a95-9ddc-497b-8835-6a2b5b74fd89', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('408c77c7-1c50-46c2-a0e3-27046473e0a5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e2b730f8-2419-4709-ac41-2965913182e6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c25516ad-8358-49e5-ae55-ccecc2fc9b3b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('62bd04a2-1f7d-4b0f-b060-93a972f0b7d8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8aa7fbed-7490-4f2e-b22e-5adfe5d98304', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e8750395-3b20-426a-ba1a-e46eaf62ef86', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('14a306eb-e654-4717-a540-f25462a9f980', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1be781cd-2fa0-43a3-a2a1-76b2cf867603', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0d61a1e6-778f-4c91-85aa-b5b26373d810', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c1c7ddbe-a4c7-4fc4-aa08-93f47a712be1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0534e7d-6f73-42e5-aff8-ff9d47e3186d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('064424c2-9d11-4949-a987-e2696fcda1a6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a48c6e6e-77e8-481a-bca0-916150b6fd20', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7fa6cc60-4bb9-418b-be4f-4aa72524e214', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5b97fea3-07be-443f-87f4-9a0764e31215', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dae319d6-1e84-43c2-ac4f-a2baa73ecfe8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dcbaa9d7-ccab-4d93-b93b-47495769872b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6a826b99-66d3-4bca-8462-e0957149d607', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b58e78f4-cae9-410a-b5b2-6d38e4e1b483', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3f0dc306-e3b9-4324-a05d-1de298db1039', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e0c07495-5fd0-4d25-9713-4b11b1f31557', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0a2e5ced-6a56-4413-86f4-b2e663feb0e9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('294cebc1-7d37-43de-a2c3-ae529676dfd6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5906a152-7e12-43de-b12c-223ad1cdbdbe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('494974f4-1809-4ffa-82a8-96b26a88b483', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c468a9b-01c0-4847-987d-5f5469d505fe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b0fbb802-35bf-4971-92a3-225bd6433052', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('65fa26a2-e501-442b-9efe-30c756b4eae9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('64b677c5-c58c-4a84-95d4-69d005c4a682', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('75c391b5-1092-4689-839d-ace89825807f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dd986aa4-5f80-47e8-8346-a5b24cf6f91a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e34d142d-dacb-495b-a937-87ee4e1c09fa', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('773e4625-4c58-4a10-affe-9ecdb6582a51', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ad60bd89-f1c5-4ca2-b880-5bbe60da3969', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bd1892c4-625d-4282-966e-c852b72bf84b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6b61b520-c228-407a-9b99-47031cd7352d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1774b4f2-0887-4a09-bf87-ada95aa91f0e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8869ec51-a0d7-4c12-8cd9-ffcb3c7ecc63', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('96df783e-4e02-430d-bfc2-ec05e51c17fa', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('feed202d-52de-4e5a-a607-3eb9bf2003d9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e92adbd8-4e34-4953-81f9-ddbc53c01718', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d0d6036a-4fe9-4823-943d-bc784037a589', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('438b8588-ce9f-4d79-9596-886a7563dbb6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('530d8d03-1827-434d-ae3a-2569d140fcf4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3c754d92-32d8-489f-b18d-ddc6795b8178', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a5f0f6a9-187f-4b93-b8d6-e536a8494be7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9f4f63b2-6439-4c9c-ae86-305aca317339', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ba846e43-deb5-4d37-83f2-e783ea17de2d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('80b1933f-300a-43d7-8e3f-5ada1fb7c9be', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1dcac355-585b-439f-ac9b-52566674c34d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0a43132-204a-4905-8d81-e172188b51cf', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d6bcb4b0-343e-49a9-9067-47ffc922e88b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fba0b7cb-bafe-4308-b95b-467050031247', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eba62494-ced5-47fd-b8be-2ca0eea0c71f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8239420e-41f1-40b0-b344-aa94a71aa03c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2e4968dd-1b34-4509-ae49-26525a1b61e1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2dce17a3-19c6-4199-97ce-7be6c2b8ae77', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('79f6ac07-1368-42f4-a1ae-a9a357a8426e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('53cabb17-6406-415c-9d81-299a473e6241', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9e239542-d709-4bd3-9286-29c94c37908a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0087469-c932-4639-9f7c-577e275791df', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4c5423db-72ec-4af8-9f2c-4763304185d4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('807e60d2-e206-4fcb-8411-e9c13a305095', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b488d259-9ffa-47ea-9494-722a4f97a8c9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('98c7cb10-8b2d-4478-8f7d-4376d5d603b6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('85269400-918a-46d9-870e-289da89b0bb2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6a5d3ea6-f442-445e-8680-d4c9525bf56f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('07e54dc9-9b64-464c-9894-08d88a01cfb6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b2aeae17-1ca0-4d54-b52a-3b0e7d5c9a68', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('63952462-0544-485e-8e6f-a344be47cc97', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('81e46ebd-311d-47b1-9c7d-135922dc0511', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('03613dc7-4ec1-430b-a213-291b587700d5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('06736882-96b1-4e48-bcb0-b897a5929f8d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('af8d1591-065a-4707-ae5e-b0703df69be9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7a2bfdae-7219-4781-9da1-ed34a2b61868', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4d646f0b-f068-4fd3-b1b1-561c70ab7503', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('788ffc41-ac92-4dfe-b5ac-0e18e2249262', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5e4fcb21-3239-4060-87c1-c0a31eaf98ad', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('27f136ee-b3fa-4aa7-8806-45e856c2c56c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d465dfbe-dfda-49e6-9c32-b2624e20d4a3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7151fd4d-3caa-4aed-af0c-ecb089b128fa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('68780154-c302-414c-8608-a0c7e59fb2be', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('59461651-6e8b-4e92-a992-c6361933f78a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0e8a6c6e-b802-41be-a668-ab192714f9f2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('00922fe9-7f32-4a66-9e9e-959719b12c5a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('78721925-7bdb-4e4a-b6d6-a1a2822efcf3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('30d3a5ab-6588-4c16-93cc-1fd96894b613', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cee3b153-5528-4547-abf6-0abfb951c3e5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cce1f971-2aad-4e93-9ed3-811170c655a6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c7155b13-a749-4856-9832-3b2c3f652e08', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c34bc0e5-fc79-4895-bab7-638b2f405bbd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('647db241-3be3-4ba7-b34b-d971ad566a37', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('be036f84-17aa-45d2-bc17-b58a8db1f33a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9eb6492e-6946-4868-be5c-aec6d3ba92cf', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f222590-d082-4b39-baf4-883dc9a46409', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('50163cb7-d90a-4c8f-9373-18ac3d6c4768', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cf45ba5b-f46e-4638-96c3-8fff424da6a7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ffa29a16-42e7-4ebe-b9f5-f167330d9140', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3edbc6f6-bd84-4390-970d-5e344664f86e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d9fa8f0e-e40f-45da-a3fc-37a6e973cf13', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('49150712-ea8a-4b30-b22e-e9641363e264', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0458c878-07f7-48cc-8cde-866110a379b2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cbbab505-7a2e-4cf4-9f53-607d9bb5eee9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9843689f-18c7-472f-833c-262d2348ae61', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('49bc5185-6d3b-469c-a604-88bbda2e4322', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('133d043e-f9e7-462d-9519-1ae05a47a1be', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ac14c959-2f96-4fbd-9970-87a2b07dff95', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7c49ff8e-3a37-4b58-abf4-ac2c3e4f0fab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b74a805f-9138-4dbd-abe3-5641fd1ea9e8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('75e9b840-5f72-4e2b-9698-80b49512e6dd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('90044e14-3a87-4791-b11d-e4ae2f6d845c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('003086d1-689f-41da-9ea2-e61c50dc6c10', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('face87b5-b7b2-4525-b615-9c917e6f11c9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b6a24ed9-c3ab-436f-b2e7-17af91dc29d2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cff56822-3173-4489-ba4e-eeb10924cefd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('50d5489c-914e-4432-9a0a-bb3607a0f4b2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f0661cbd-56bc-4130-8b44-528cf5e693e2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ece49845-4b04-434a-a12e-2e5ea1d2c241', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3412d5e9-9e1e-470b-af39-015652349d4f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8f5d8cbe-1763-492f-b918-7e8f197ae3d8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5e1cd5ba-c5d8-49a3-bf1d-f5ec4f1e7e5a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('692d194a-ce6c-4932-9a16-08fc5b853bbe', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7b4e7960-7014-4a64-a845-19cbb2ca301a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('89664515-a29d-4f80-8446-47aaf8cf22fc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c9c5a8e1-ad7c-48f0-b747-b574b96de461', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c1ee5c53-b7a0-4e76-9d44-d32b96333bb2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('25aea726-1671-41d0-9264-5bb7c4972697', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('df00b91d-921f-4479-b9e4-e1732444508a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6a9c2ebd-0656-4634-bcf2-a10f53a2b649', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5645f188-49da-4e4f-a826-6e71239446a1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ddcf6c5c-7d81-4399-825e-2c8f6639f869', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c15e0b81-002e-480e-93f8-93b06f87bbff', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('89111db0-bdec-4e14-b05a-a4b92b65299a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('369f633f-ae6f-46de-b383-a4fb05f1656d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ad81e516-9454-42a1-ac0e-7e4ca2ded76d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3c30d78b-cca1-46a4-92b0-141a5a49d2bb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a115bf5c-94f4-46b0-8506-e41ead116a8d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a12fea75-a5c5-4b6b-b54a-dbffb84d4d96', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9fdc3c83-e6fc-4494-bba5-ec2f2b814448', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e89f8e4b-7387-45e3-8241-86cd24d48fe2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d2d49e70-c8c7-449a-a5ae-03f377663ac9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a17cbf35-8afe-4032-a911-3347a0e952a3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('50593216-70ed-4099-8e53-51f5f95fb14e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('03cdd47d-7cd0-4724-a9d8-68b593171031', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6c5bd6d0-2679-4b89-a125-57e510f4027d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('be395dff-ff4b-40ae-a537-5c84a2d3a783', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('474dabcd-176b-4283-ad5e-6d7f89e3068c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8f41ce7c-a96d-4a7b-b2b1-dbad9ccdd30d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c753ef5d-0c69-4807-b43a-4d3e1d500389', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f8324be2-d4c6-411d-8589-889fa46d8ef8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c754a646-c6c7-4ebc-be45-2edcbd6ba501', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c7434ab2-1e19-4777-a38e-14330f4a02a7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2a12b073-dec8-4414-8f79-90d2e54bd7c3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6a17b24d-e8b3-4659-b391-b1f72ef80029', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('87a9fc9a-d148-4558-92d6-4e48a7293edb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('79bfede0-cffe-46c4-b27c-0e40846e2447', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b088226d-f831-4b99-8345-2983c0de543f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2243d1b8-20ff-4556-8185-69dedd3fce8f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4f843b40-95b0-4bfe-af06-2fc65df2ee56', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2e344e61-46bb-4578-be4f-b8906472ebfd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e1a47825-87b7-4108-9f38-ab5f0238f3f7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f2ab3bc0-b751-4564-8161-779ed29b1777', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d7b02d95-b66d-4ccd-87aa-9fafd3a1971f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('93f2adce-e4f2-4f16-ae97-3763f6384d3d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b17548d7-be60-485c-8a6c-be5f30151f86', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('63240dc7-30b8-4562-8648-d84689be5460', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2a7ce36c-2e39-4286-ade4-d3df16838700', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a8fb4fcd-1e84-4cae-9fdd-e1a1a6e6c362', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eafdf04b-58f7-46a4-aca7-4beba0fd977a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e51decc2-efdb-4e87-b33d-d8a5f640d8a2', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fd65d7c5-416f-46f9-b01e-218f58575f54', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c66953af-e2ea-4f64-8ef9-ed32c3fdb5fc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('39643e22-f10f-43c4-b6a2-dff5e6fce870', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7573789d-0551-4e43-9909-b8f9687bfc96', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('520a7251-6e8c-4344-9103-3dcd1445235d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5098f6b2-1557-447c-bb45-ca0f6f191a82', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('63aa3fef-05bb-4217-9c0c-3b71d2567a8e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('927e1abe-a622-4cc7-838f-2b36281e2bab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('861927b0-a03c-4d7d-9dfc-e5248240e9ef', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c76214e6-d6c0-4fec-a919-3f0f579e65d1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6533454f-8b7d-4bcd-a7f2-5f9173220dc4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b392990f-d44f-4754-8059-f5fa9114b643', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2cb19228-dfd0-42b2-bf8d-1ce2ccf77067', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6eba0739-280d-448d-9837-a68d57138524', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fea082ef-9069-4c01-adb7-073fc1f46bbc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('db577236-d0d2-4c2f-bbd6-246a46c70278', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e9c0574f-f838-48d5-a332-4085895be3c9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e88ba159-11c9-42fa-899a-e58cf9acb9b7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('56a257dc-7f7f-4a89-85be-fee322b1f32b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('07d6b629-0619-408f-92e4-dc57b25e341e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6c7dbe37-0ade-4739-851b-1413efc4010f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('33960cd8-c35e-4e12-93d4-a03f9ee56f11', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('11cb2800-b7bd-4b53-8f6b-9a3398de8834', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('df9dad24-c7f5-4429-88fe-4ece8d9865be', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('98cab550-aa9b-423f-8687-063fdafe09b2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fb2f75ff-0784-42c1-b6f9-b8bdef49f6bc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2ab5ae81-f05a-4105-923f-97229e5f1c75', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2af247be-533e-4e76-841e-46f8758be2a1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dbe4bafd-5930-48c1-934b-dc9859824a00', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c0721ca2-ebb9-4efb-9170-85983c08c7be', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('15067268-30b0-477a-8357-2156707e3e0e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e7064c2-0b1d-4978-b8c8-df23f1342163', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b832f921-ab33-46b5-a634-489e62adfe19', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ca5cbee3-107f-4ffa-b2de-777efffc27c5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('efd9fee1-14a2-45c0-9af7-69572a229421', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fb497976-84ec-4688-bbbf-cb7b788cf927', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c3b96b4-e376-4600-8361-1bb7946966f1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3299ec7e-0a6e-45ca-a6af-2f253dae41a0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('099c8bf4-bb2f-4bec-ba3d-10f2de503dbc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1c07acdc-fdbe-4439-8e64-739b970501b9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9c5c0e45-2026-46b8-8f49-1b665aa804a4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('de2757da-bcaf-419c-a5ed-ee1f2159eda1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('db639259-14d3-4037-a775-0aecc5b28e49', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('81368b61-8a6d-4da0-8d4a-bbdace102d16', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2009013f-80e4-4f14-9d59-9f5027ac0307', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0fe977bb-8402-49a4-ad22-1fc63ebefeb7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0fe07503-4b4b-4eb6-9080-081671416888', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('db545d05-0872-4c73-b09a-c9bec5f63bf8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5f91f0c6-6f77-4d31-85d0-2d2601965f4a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('71e27e16-50cc-459b-96fb-4b8c1201082b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3b1a6ca8-7002-40a0-91b6-6d19d2ec56c6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('da7719db-1c60-48df-b3cc-ffe7ca5df0f5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('90c8d2a1-5736-4ad1-a296-aef671392523', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d9d12b27-ae58-4ae5-b109-9a873ca8fea7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9d4f8cd8-7565-4eb4-a20e-b2b439946662', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ec5fd55f-6c3c-48f9-bf25-d6937f731633', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bfc2d854-2c5c-4a68-8bc7-c79b0595d3f3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('84596d4a-c803-408d-87e0-2edccbf46866', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2616db57-66e1-4592-bc4d-d00f359cb35f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('22f39ffa-2f6b-499a-ad1e-6392e380f4e9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6b6b95c2-45c2-4803-b595-e1d4e62912d4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0c317278-ff35-4c8c-b488-37bd55814b2a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ca25f922-1a6e-4ad0-ba6a-e2ad68b98c01', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a028c0ce-a639-4431-bd4b-7f4339986e12', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c64b5ede-af6e-4878-b23f-606b87a02cdc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2f620914-54a4-404f-8297-c209a1b666bc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('31037a84-6031-4aea-8702-9ae134616972', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e42af770-6fe9-492e-a97e-745d3fc6d532', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fc26785f-19fa-476c-93a1-d751511c8cc6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3903d9ce-0bec-4991-86ca-38b17ec769ad', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('645901d5-e40f-4c62-aefb-a465db8e329c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ac3fdf8a-f87b-4cff-8146-272273b0830e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5fe85149-78e6-4735-960e-353a088d355b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('14db4fed-0e39-4912-8616-cd4bb2335a4c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e146f1f-790c-425e-bac5-1e215599ee33', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('102e1ab3-76f6-4812-b627-9becd51c2657', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('54ea8431-71a0-4eb7-97ed-8a8801df59f4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5a4982c6-bec1-4cbe-958b-89dbc24e013b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1fe5cc8f-0891-4359-9d7f-d45cf5d82108', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cdd5c1ec-2338-4784-b430-01dffcdcd53a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a39d0d95-b56f-4a6d-ba3d-e2f23e9460ef', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('903ede93-27b9-4273-8ec6-2af94a38cd60', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5f0ce84a-beaf-4824-938b-16b1a746dbc6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a4bff7bc-e032-4606-8e6f-cb48b8dc5846', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('985cf74a-9707-4819-a118-dfc415527515', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('435b9cdc-5cfe-4d35-89d4-85bc68ee6967', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1ca60104-96c2-46f7-bf36-e5acc579f3e9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57537970-872a-40b4-8ca4-2fdfbf1e391c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eb429a65-504e-43c1-a194-a58f3aa21da8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a864fe09-bd67-409d-a4b9-da2384846ee1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f5596859-966a-4d5f-9e34-cd255fa2452e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e3b21d04-931b-455f-948c-5cc9c0ae03a7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('12901c4c-0376-47a9-a9f3-f73acba2905d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e8c89c01-b7b4-4c3f-949b-b91f84498439', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('674a6bf5-d0b3-4650-8ee5-6eda522c57f4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('21f928f2-d60e-4885-9d16-ac56767416bb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('84df22b7-389e-48ef-9060-0ac4ddd74577', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0b32e53f-fafa-44d4-93b3-c544d2ea99e1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bbe03bc9-329b-4813-9a56-e092813ec25f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('882da02d-8e85-40e9-9740-d20d6ef5c0a6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f3e16f5c-42c6-4f75-af34-76a92aaf4a06', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('31cf4782-37ba-4296-a200-bf2c44493a97', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('65434844-1290-47a9-8a2f-e8b7430a3798', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5e9cea08-d822-40fe-a936-44d8647a07c1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('08116e94-3a11-4286-be4e-53600b9ece82', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57346784-00e3-4552-9c1c-19d0c3900d80', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7006fb81-7298-464e-af9e-de7899548c10', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7048b10d-c499-45c1-8f04-f675d387d7a1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('013fc63a-6c9a-44a2-9806-4ebdd1d8b7f9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('438ec914-dab7-4fa7-8b85-3b8f89c9defd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7f506666-739d-430e-a61e-ed80c52eb812', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('be73c28b-c17d-4afa-a2ea-ade468bcd885', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dbbdc763-bbea-42b3-b1b9-81ed8337ced3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('68c8e437-f0fe-4bc9-8143-79f96032568f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0b976d62-6eab-48da-84ad-8a52025ce66f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e83f5771-2a12-4f43-a099-b4874c8cb4d9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0629fcb7-03b8-46af-b60e-3f2e3f371f1e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f415168-d244-4fd9-957f-542058489735', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b85e909e-c4aa-4f8a-add6-0852179c69ba', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b0a7c854-4abc-4da7-af60-a5066e280ac0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9a8681ff-f4a6-4ba2-85fc-1623725c9029', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('23cd8020-fb71-4093-8bce-99ddf9badbcc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dedbb861-5c9b-4ecd-8573-70e7e2d226fd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2903b125-6d88-4867-8227-08c6236a6fb0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0af56a45-20b6-4818-b7e9-90e4ee9373c9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc4a61d0-4c92-4a3f-890b-3b24080be036', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ca0eede4-a9b8-4988-9da4-47830d8fe5c8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b043e81d-9fba-47cf-a98e-f80dce34346f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9a776bf3-1034-4dc0-a68f-fbdfb58ab625', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d1ec7d97-2494-4220-bd5c-81e709cd3926', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('19a24fa5-63a3-4c56-ba6a-650024cbdd64', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d0c476d4-546c-49c9-ae12-794cfa3942c6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32418973-8381-4c36-99b4-f26750994819', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3c443fbc-dffe-4c72-8522-96ef96276f82', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('975a934a-0ec0-4b14-a513-bd4dd42b8245', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('720ad69e-cb68-4653-8d31-6df8bb93d3f9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e227c024-38a4-4544-be9e-3cefdeaf7a89', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('177b8109-10d1-4f88-ba89-b04d92d9bab0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('41403571-c524-4355-882b-b30af5000849', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e158ad0-d757-434a-a50c-6973cf0e0ebe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('865d8af9-ff16-4388-beb8-420fb0e0c64b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('962281d2-0226-4e95-a682-a99c3a437f88', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('62cd8ee8-96a5-4a38-b5f2-65a41ac34c72', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('861ce7c1-cd92-40cd-963a-0c0e5caadc08', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('485b7c84-8089-47f4-8111-f6533cb8b959', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1d7dba81-1bb8-4e28-a1b3-0e5376b5646f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ddb6560c-5ec6-4eeb-a43f-9194035ae988', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('aed54bde-3462-48f9-8845-b2917efd4a52', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('36db2a6d-2524-44d9-a9a7-0a7c9fca3e9c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1c67671f-349a-489d-98f2-7a6e6fc84746', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2679288a-5661-4387-be6d-808e13e2f1d1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8b746056-f66e-4de2-9899-1c19df064764', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a9515288-170d-4817-852c-43403863ec9a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('00f7119a-b78a-414f-8760-2689d85e8e01', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('41040940-a56e-431d-b876-43c26ee04cca', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1294da14-f1c6-49e8-9c42-70c91489e867', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('73f146ee-548d-4429-9146-5b75c6d9f457', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e5bcf7c1-ea1f-4c6d-b073-751380d13765', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('39276e87-f1cb-40bf-b0b2-5d9d6308ec41', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d660a6f5-b185-4fd2-af58-fd3e9a69b8a5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2a074a2d-95cf-4e3e-bb86-0b574f1eb725', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fb83effe-60ab-419e-9ad7-d0ca116888c8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f8764363-b3fa-4008-9686-98403ecc66ad', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b57a71fc-19af-43e2-976c-5572d455f343', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7585e5c2-0759-4aa9-ae5d-680620e29838', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2953305f-c465-4345-b16f-68ed28de5249', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f2c74d1f-ef48-4642-9cc8-d88e5683267a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('762cefda-0cb3-41e5-995a-b87f654b4b8c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5bece03d-348c-4af5-a42b-784c02b74cdd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c42097a3-922d-4e0b-9b47-00a804174f48', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d3e3df00-d5ed-43e6-b416-995715f69a57', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('48c51969-edf6-475e-a24f-f55430f7af85', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8e6c324d-d5e6-4028-851b-d72b367a6ab8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('589e092b-bb46-48c1-b6ed-bfd8aa18c037', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2afe5f37-d88c-49f6-ad20-556c27d7148e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('482facc0-a3f1-474e-8f3c-7a92d54dd5a6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('be0ee1f3-37cb-4d1c-914e-8f2a34480f28', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e83be41f-07c7-408a-9d45-504f7897e2d4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1c2f2009-dc94-4b39-b3ae-5cfca518767d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1e3b494a-859e-40b2-84d2-ce25081f04b1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2a6ae5d9-7e5b-46b4-be90-6f686b0b1f71', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40d1a082-2612-4b10-92ad-970d6d9ff4ac', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bb129bdb-1b70-4c35-97cc-ff6396197e0c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d56a809a-d37f-4423-b3c6-4a401af7dcaa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c759b6c3-65c1-4c2f-b440-3070b36677d9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0628ac11-f65f-496f-a0b5-83bed9d9d74c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('65f3a917-8510-43ed-b64a-9fb875dcef14', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4f3efcac-830c-4de6-b108-42bb8d0c07f7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('00712e6b-e706-4e0f-b551-c7dc4614857d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc411acd-2a6e-4386-a537-2d98708ff312', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('34e55b26-e390-45f4-a397-3027cc7541aa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dc086b9e-22f3-4f9f-9c37-eeef9edbed06', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4d491bcf-e24b-432a-a01e-231f920f0d85', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3886e13c-4802-49c6-8c94-7439d5f609d0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e2894082-0f26-4e3f-a1d4-ee1d0d769b0a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3df71fa7-354e-487e-b007-81c01e03fcc5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5aa5b42e-b148-4681-8188-5e4ae09c2a1c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3659ec5a-b205-4278-a4e9-dff7fe00b9ab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cb308667-ef0e-4af4-96b7-67bafa383953', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c5a7163d-7bb5-4b47-8505-26f154c30e66', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('42589adb-5faf-46f4-88bd-53baa315c72c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d2f26da2-0726-4c1f-819f-a1c7267964b3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('37947345-1e74-45a2-bb5a-964534106fe4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8c474a1f-2ec2-40c2-81c7-da3178b41434', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('af2eb413-09ad-4542-b6b5-28b71749e727', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4366b352-4589-4a16-b88e-6c556e017189', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a046da0d-216b-4e65-85fa-9a9e512b8546', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4acdd71c-3792-4b5e-8551-1f260352d690', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fb868a05-aa95-4c3a-892f-95866efb0bfb', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eeaa4092-85ba-423e-b6c1-24baf93477a2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('145e0fa5-f5f2-4bbe-a14c-1c6e11adca73', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fa7fe745-543f-4e81-b368-2fb7da4dc1d4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('585ff2f1-f8dc-4a0d-879e-8ed1720d44d4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('36011508-4a4f-4f37-9fb3-18d00c661ff7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bd0640a8-f20f-49b2-84dd-054f4d0dcec5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('adce5859-3567-441d-9159-e39116a6763b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('80b7f5a5-ae51-4a71-a8c5-23b355d72eae', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5d23f435-7b8f-46ad-b602-9d3b9203c345', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('314604d4-4063-4192-b142-1a0410275882', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('db46c382-1297-407e-8b17-fa6ca42f3427', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e75fb595-0779-483f-b421-fd0dab2579c5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('23fd725b-ed04-4bcb-ad25-55809e416f6b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f8b2363-d7b7-464a-9b3e-5f19b6703bbb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a1267d62-7c06-4a1a-9d18-1306f501e984', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1df8e8bb-fded-413b-81ab-ab105f4407c3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('77c5c6dc-a2fd-4f6a-b23b-11092c27876d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('428e4654-0d62-4306-a97b-325b311a78e4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('02b7d33b-d6e6-4e70-9eca-103a1f33460a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2405df12-73ad-4abf-8f63-a88a795ca61d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6690edba-2f37-479f-9349-446be36b63cc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c56f4683-f55b-433e-83c0-597088586aac', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4c7032f9-b39b-4e81-afb1-4aad349538ee', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('260c29b7-089d-422b-9ce7-d65949cc8e8b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8c276820-a255-4c60-b5b8-f57810e0ab39', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c08efb0-89cd-4274-b0b2-09e232d3c60b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3bc42c36-3682-4450-86d4-9db827bbf552', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d4012885-17dd-45e2-9d1f-3ab661fbdaf0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e8da516-8841-4987-954c-15909540f046', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f929caff-d41f-4977-8419-41d193019baa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5181412d-2787-460c-b51e-2f2c97f8e051', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fbc8962a-0b33-4562-8846-a5e08e177fe1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('217190fa-fa45-4a12-a2d8-a58aaa6732c4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3f222530-009d-4cbd-8dce-4a256cab417e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('506b8a02-350a-4802-8639-d35c231a047d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b7df4616-86d2-40bb-b70d-35c71a8e533d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b4bcd762-98c2-44ab-a130-2be6e83d23a8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('af1a2c68-ad3e-461f-8ddc-e952532bb50a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('375e0bcf-050b-4956-b371-5a84495f0259', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57bcec51-b2c9-426d-b301-3ee801acd8a5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0087a277-dcd8-4df6-9209-8b817864d2a8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e9f3374b-749a-4548-9436-29a75e5e18ab', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9bc9d256-bf9a-4a42-a26e-36cf1ed29a05', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fa988deb-0f9d-49a3-a075-147134d037dc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('43ed3caa-00d8-4718-a695-b8901970ba7b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8d023e54-6993-4429-87cd-29cca95b1161', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1fea3f9c-8227-4419-963a-aa00d2a07abd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9a7c9014-0599-4afc-b01e-f0346d717c17', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('467ef1e1-2f3b-44e6-b369-1bb744dd1f01', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4bc718f4-83d4-443d-8a80-93d3aeeadbd1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('18aded7e-c76a-44a6-810a-bb54651bbc35', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c58c8187-4976-41fb-85bc-241743be56f4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('13e241ab-7a0c-465b-a220-8349896e9191', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5be940e7-8aca-4535-8165-52759309ab2b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c81167a-3b4c-4feb-8ba2-1ce9159ab5ff', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7d7d0f8d-1542-4252-b77b-379ffde0f1ee', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('557aacc7-96fc-4c31-9a96-ecec09d7fe3f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5ecbb381-1585-46e6-b942-e3e14896ab77', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d3342ab2-62af-402f-9ebd-fd9034349883', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c94be9f2-0de0-44ea-9f93-e48980321db2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40de40b5-5752-4890-a138-89993f9fa518', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8dc77464-badc-4cb0-bc0b-d979585c87fc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8b5eadc4-82fa-44ec-a8e9-ae3048a55980', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3f746db8-3087-48a4-b9fc-f5b980287905', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c6a0f56a-8b53-4194-bb3f-9e0057ba4749', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f01235b8-39c1-42c4-83d5-a1e51c1fdd72', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dc7d613a-e452-4daa-972d-4ce91d58eab7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('af79a39c-1b00-485d-a4e7-5ee3a77afe65', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('51d1c46e-09fb-4d20-9324-38a40083d746', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('918c9a58-7fd3-490a-ace7-4e432cf6a2e3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f05757fd-3ee2-4141-a98d-95096b86aa13', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7b1b31db-b751-42a0-b68c-a18329d42b82', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c8da4dbb-2a84-4291-9075-8da0c4e257a7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e8bbadad-a89f-4ea3-a0fe-ad94420d7082', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('91de9bc8-0c04-478b-b8dd-7d5ba36229ba', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a449c55c-1c7d-4ec1-a66a-7c0d9fb31d6c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9a11ff8a-8a4e-42c5-b37e-7c9706747581', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5602ce7f-cf99-43e4-9d54-4324e7262dd1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0698664d-beea-460f-9499-7301be93d5bf', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('de39bb09-aecb-479a-9b94-0f8f850a421f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e1b2f563-302a-40e6-bb7a-2725af8a7320', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f8a70890-768e-4af9-a261-3eed2c3eff9c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b723c3a1-8bb2-4f3b-901c-1219c04861cc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('55336c43-e7ea-4194-98a4-fbba54330f8b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7d5704d6-e5e8-4f92-a231-3c9412a25813', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2b015fed-111f-4bb3-9314-054c4f5e02a9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7cb8fd1c-e611-46ce-b0bd-23571ae13c40', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1377ca11-0aea-45f1-be3e-6d685646a855', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a01b1061-d4fb-4ad7-b6c9-a1556cb05999', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b31b9e66-752e-45d4-87bc-e06d95de7ba6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ab528e70-88ff-42a1-bb05-53c38b36e963', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('feb5fe79-001e-414c-8dc7-09657384b63c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('31f73d88-50b2-4c43-8710-7ca34461e925', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3ad1f655-d278-41ed-bd16-6bb4662834dc', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('877f58bc-eca2-40ea-a04b-5413dd5a26dd', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8c23f0a2-3c88-4526-b122-4088e4143682', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('21f69032-ae5d-40de-9834-61bef9345741', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('08ae960a-5246-46fa-837e-077549f771a1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f2b7ed96-48bc-476a-a323-d69e3fa622b2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f429b107-0720-44fa-a2ac-9ad390a0eafe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('de2f2450-cfd5-49f1-88b8-4dd5d67af141', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('84867f72-28cb-40c1-9163-e39f2c16cfb0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0ce06202-a733-454d-885e-d47597f3fdc1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('edbfdc0d-5541-487a-a68f-a6aeaa572d7b', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('61871afe-66cf-4e17-b0d5-1da5bac6469f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('daafb052-50ef-444a-a2d3-b787c5bc8cb3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dd133517-5ec6-4f63-9114-c1416d3c6804', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3a597e00-9544-4248-82df-3831353f33b1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8baa861a-5c1c-4db2-8325-357619b0f22d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5d51ee94-5a44-409b-8bb2-1bca411bfc41', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d52d9865-3025-4a16-9aed-c5ddd66dc071', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8e7530d0-e5a8-488c-93a3-a25b2449fba6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('22173367-a803-4065-9451-afec80e0586e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7e591a28-0bbc-4464-8aab-c449f4db6f33', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('24837809-14de-4cfd-8e4a-5cbe8a476a78', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b8f86670-28e8-4fd8-b293-f7ee4344efa1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f54ccf20-7258-4739-bb5f-867203a3c290', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('96cafe15-2ee6-4226-ba2d-92620a417296', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('81973abf-eaa8-4d0a-84ea-e98c0de09bc6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0d9b8df5-57bb-4ce9-92b4-3c95443ab4f7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('42c4629d-fb68-46f4-b8f2-d40a608fccaa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4c928181-db1c-47ea-8185-86edf15aaf83', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3328c233-4b48-4dc9-9941-830c3857e47f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('45b14f1b-e870-40f6-a99a-e6bf3810b48b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6cc1b2a3-8bab-4d9a-9d73-9951a5ad8602', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('45f3c90c-0cc8-41c6-aa6c-f656c2a520ec', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57823f66-c790-4a3f-8395-e94a25f2b321', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('91475e7d-6a40-4b51-8376-e28b06293a84', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('34f0d180-cab1-4f97-9d1d-60a6f39c8c1f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5bb6eda0-a1ad-42c8-94f3-1bc38d6ee1e1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('87a213bf-33aa-40e4-b5eb-89465f96e91d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fb476be5-a55c-4453-a606-24da6a1ab2d7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('241b9514-6fed-46fc-a352-02f501bb9815', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ddeac61f-76b9-4ad4-bf61-b1a83894cb2b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('759ca26e-b553-497a-9f38-86622b340848', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b695b5f1-487e-45aa-ab59-e47986899059', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('005c7e1d-a98b-4bd2-aad8-b4dcfab6a62b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6d837b50-0475-41dc-9a4b-4a832f476bde', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cdda32b7-9bb8-4f6f-9974-d8b6cf64706c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ff41dac7-2ca2-4719-ab67-e3defcacbaed', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9eba55f5-a528-4a01-8612-8e4d30ea5c24', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('137d7a50-f122-447e-b8f5-2349c7231487', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('afe41aac-099f-47ea-84a8-d1b8f7f3f81f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c9787e85-7f76-405c-abc2-68c643139725', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fa41b988-86be-4cd5-9293-a316854ad36c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8b4d84e1-64bb-478e-8176-7e7f5e3b54ad', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ab0a6844-1289-4c15-acc1-b6eb42f08ce1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eb4e4387-2088-4cba-bacd-6ec785097689', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('53ffdb8e-9631-403f-b52e-77d75602cc80', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a828a5d8-767f-459c-a676-b28b793ec271', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c3584a65-8fb2-4975-bb7f-9a123c06d2e3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('360fd487-1bdf-4a27-b608-ec4e126185ab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('81073331-f31c-4b7d-a8ba-b76c8b449ffb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4dd49272-271e-4a93-933b-65923aaa2109', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40f5eb31-e9eb-48b3-8312-84ec84e0b80b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7730b221-0290-40cf-b01c-bc8329e8f723', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('75181fe1-4ee8-41b2-a0c0-d4e0747d6d23', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('07fbd6a7-038a-4fa0-a5f0-7fc082165557', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c12e8c8c-2a23-483b-82e0-48c173c7adad', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('229cfcd2-8e66-4082-a9d8-a83e07687aa5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2c6c0cf1-ac65-483f-b34e-36bcdd6653de', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d502fcda-7169-4818-9c45-c04e713d5313', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e1681e56-6bd9-43c9-b317-cf51cd2a70fe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6548c064-050a-40b9-8a87-02e672e0e21f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bb3f383a-8c59-4700-9649-93b334c30618', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('59ce399b-d575-419d-80be-1fd04dce418f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9f9c733b-5461-4e93-9d09-8b5ae9e091dc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32ce098d-facd-426b-9405-d0a10f7e4b42', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5f1474a1-2c97-4780-88ae-dea97e8d2f75', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('91aa9300-0511-44f7-8b57-72da36d8c521', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2deeb6e9-d6b4-415d-9ebd-ff308fcc68ab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('804e3de0-66a5-45e3-8275-1222ec0dc1d5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8e0dfa97-8845-4071-9569-500922447918', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e0cd0949-f2a1-4ce1-b442-31dd601dfc50', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0e7d000d-a925-48f8-9111-2b2f0a06d4bc', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5aa9a6ff-dadb-44c2-9951-1146ce5d3888', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8a5628fa-a845-4284-b719-da86a4bd10e4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e45e9efc-c353-496b-ae01-2cdd1a377189', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e17798f5-5150-4fb9-8501-a736ac4aa461', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4f27a565-bea2-4099-870e-9ddac69a927d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('94f0bc67-0f4f-4f6e-b804-e6329e6d6278', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d3d639f3-61a3-46d3-8c6e-33af6f31f718', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('eeed5149-ffda-41b5-986f-ebe44198b6ed', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5ecf9631-ff22-4fb4-9fbc-8cfe4427a42e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7204bc19-f28b-4ca8-b72b-026c38298527', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('06f20485-c8a0-4c8f-b197-473da910ad4c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('be48fda3-4879-4578-ab53-7ef02cb2d316', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c61e32e1-48c1-4bf3-882f-77382110700f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('efc20691-4515-48c9-bbb2-ca411195d26c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0ccb26b5-ca98-4998-8e94-18ebca2dc643', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f992415c-81e3-4339-93d0-cd73fc15d324', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('78c9542a-3595-4e01-8d35-036ad1c73852', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2b7fb84d-c2b9-4707-8bc7-d3f03ca0aeb1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('02367e67-e418-4eb2-92d7-241e3ece14e4', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ac02dd92-7f6d-40eb-9d06-f94bc88c3996', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40698c45-9698-4294-97d4-c6cfa144af30', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b56c72e1-8717-4238-8755-52de32b7e9a8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5992a7ec-141d-4ae3-9200-add7c7992cf9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6389d1cf-ad59-4de0-b648-148dd127b6eb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c59d5910-8a41-46c0-bf1b-80493d1f8abe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('67ba7d20-5994-4a7d-a326-d68ce566bbd0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('09a5131d-4cc7-4373-8aa0-7183cd6cee62', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('27a90c0f-4e31-4ffb-b287-109a77448a9d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1e14521e-b924-423d-bc52-5dd8447ececa', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('08903550-662d-4b46-bfe2-74f263288b3c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('30091ef3-0aef-47a7-8020-8ea49254a578', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d56e6f97-db5c-4dee-8d84-90a0e35c9714', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('281c7961-4b81-479e-b441-760bfeeabd46', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3561c528-a2d8-4291-966e-3ba044436e56', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('202a6508-7fef-459d-b5b6-890b088d82be', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b40304e8-ff14-4532-81c2-e4fa4cb70e42', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('524a333e-aec2-483e-862c-679039cafcde', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('aaeb2f0f-614e-4e4e-b827-a8f79cc8f6ee', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8cafc9fc-e7ff-440c-b8a1-394e601aa944', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7242332d-8f72-4e28-9c45-fdfbeb6118f9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1e716d6d-cae9-45ed-bb67-28deecf8f459', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('14cd9303-6495-4df5-aae8-4e4c8fd6efe9', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d7932082-e9af-417f-af27-37946e0b7a49', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7799ed00-0de6-4ce5-9547-649369ca4a63', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ff268833-fd94-40f4-8a00-65ec735997c1', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('56be9a1f-28b0-4c6a-818f-53df9138fed0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b1baabe9-2f07-4bb5-9c8a-40d00394e9e3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('adaca50c-0efa-45bd-9d4c-ae790bd334bb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ef169461-9c02-46f4-a6a9-6c36aad196ca', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dbcb84e9-2de9-47f9-88aa-3fce9c269877', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('55638bc0-b003-4185-b805-b542b92cc07e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('162b3d0c-b3df-4afa-933c-e18986f7e216', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('34cc8a49-ea9b-466e-8579-7827e09f5d35', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8fdd420e-b77f-4c42-addb-bc5310c9356d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d4ccf9df-c982-496d-870c-2fee23971c8f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('86e9a040-1689-4e76-b581-1460b23a7c9c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f08199e6-b59c-4cae-a738-6d37d2a484cd', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('24665c63-458a-46a0-890d-8a238f9d036f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1c0c395e-a062-423c-b153-d17fcfdc42f8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5b9d578c-9d05-4480-9256-1e091ce93f25', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('180970e6-4774-43ba-be24-92cc46a1e9f7', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('dbe17345-adae-4bee-97f2-e3a13fc45e70', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cddf6529-abe4-42be-a8e9-a0f635cded95', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5d6567c1-bc20-4972-ae1a-ab4e8c53cca7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('70474bae-df93-4ba6-951e-5ca5fe0fc4a0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e4ac0185-4d56-457d-aff9-0f75357e048a', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f0394d0f-0314-4cc2-b77b-412362610ee8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4d2894d1-adeb-4349-a7e4-47af15a0b9d3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0f4bdccc-973c-4465-9692-110165157e47', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3a84bd6d-cdc3-4113-8a69-1e6e8a09d1b3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('07cea3ae-e400-49b3-bf50-8653f7d4d0bf', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('21cce335-ee2c-474a-934f-0f8a264be7ab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f843e0df-6c28-4d29-bfce-0dce1e8220ba', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('73c78c16-6eb7-4874-9487-fa9cb9414be9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c3681b32-5274-48e8-babe-b8a7577b1999', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4d60a0ec-e76a-4f0e-896a-56aa061b60a6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c503eb92-c2d2-46b8-adcf-cd84d92e9eb3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2203cdf2-5069-406b-87f0-6e600142edd8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3e5b3b0e-2be7-4cfe-bf45-cb8feaad2aca', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('04c59a4f-0eb8-4812-82b3-663f3a084c65', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f9a40c25-3b07-4043-90fb-ac2826818923', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2959d438-b8bb-43f9-b70b-dd40951fca4f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('22be1e9a-65f6-4c35-8b28-39dc7982770f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cd189b0e-6c05-405a-b560-d0c75937e2d8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0cd1afc1-d446-425d-8f2e-10982a72bcf5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4728de28-7e67-4cca-80c0-6221bb0cb4b3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5b835d54-b474-480d-96a4-668e762a5c15', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a386961b-e8c0-4e7d-98c4-3e983a2d8d1f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('82638ccd-1407-47aa-8918-3a1329d6b038', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d15aa4b2-c357-4a70-85a6-5c997a88356c', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5e780b12-da7a-4fcb-a760-cea6abdab8b0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('32ac9ba4-2a55-44b0-b636-e69d71a16cb6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('33999dfe-271e-493a-a577-7d698ab46d63', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('49975049-a2fc-4567-b65a-ff15d2482dee', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('41226c0f-ba77-41de-b709-9cddf9a77eb3', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('33368a0e-8458-4363-96b7-5140595e06e4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('89eccc8e-de06-4a87-ba5e-1fa50e6daad0', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40bce91b-955c-4802-ae87-8dd5d7c4a156', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c12aea38-955c-4577-91b8-bb520d4b9579', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('92961c95-a80e-4032-9eb0-2a8f7757a422', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c012fc1-4d66-4247-b453-c318437c486e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b2d00fc2-ece3-4fa7-ad37-cb312a3b44e5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('13eda7e6-0b66-4978-8153-135556382aa9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('19b377d6-3ffc-481f-a7e5-9ac48e47d16f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0ba3f775-77c5-4c10-998c-b340b3ce8f98', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('98d32fbb-e9d2-4b7c-be28-78849d7efa9f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9ee7ec80-9893-48fa-a177-90538b8b66a5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9c564fe3-deb7-434f-95c1-948c62421c70', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6e151961-36ac-47e3-8094-571cf2bf94e1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b73eaf37-bae8-4421-b5b8-9073a14a8a74', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3b727500-318d-41eb-8a8e-5d71604a2cee', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bae797f4-38a0-4a9f-b285-692472190900', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f9f0c05-8408-46f5-a02e-48dc02568dca', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('07cad025-9a71-410c-b80f-30258a65d0d4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a139736b-5ae1-4b92-912f-b1fdcf04bbf5', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2e3acc28-cb00-466b-8128-317d0eb56915', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2cb21268-8efd-4310-9230-4a84852e79de', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7133241d-d238-495f-96c2-bff68b98065f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7aabf410-a7ad-4afa-8af6-0a727127e2a0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('88bcfc80-afa2-49fa-886f-a1e913ab448f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('723b6dcc-04cf-4444-a95b-534bdea15e9b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8a21ac5c-af4c-46e8-8938-180d6467bec8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cd4715a4-96a4-4297-8660-32c2e95da604', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1f10356b-7796-4761-8f7a-53bf2e82b4e8', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('102906a0-8b36-402e-82da-1ba78bedc71f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('37f6ab5c-d190-4f1c-9732-da210239ae9c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('611e8315-a98f-48b4-b284-10bcc905fa2d', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('546f844d-33bf-46de-8da5-982fb210d2ab', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b772ba6a-40b5-443b-84b2-d447db62bf71', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9f1adce9-fe79-46cf-bf54-0e58f97556f1', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('487b0fac-63eb-4188-a465-46610050184e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('63f86482-0fdd-4dac-ac73-4b78d4442a57', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d0bde494-6f96-4369-98cc-82c2b633604b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2d11e79a-9df6-4d11-b192-1f7c1e25f658', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c990fb58-9aaa-43b8-b722-16486b8cd2d4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('77059463-c7ac-49ce-80ae-d8bb2a312046', 'rbac.role'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0f3ad9b8-d3b8-4068-8483-81a43e388c23', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0604ecd0-bd4a-4f61-b8f7-0dbba0c54254', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('90a30208-da55-479b-bf1c-d61c3ec10e15', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('7c6b8392-322b-4cfe-9284-c17891c08eb0', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b229f023-5e44-49dc-93c5-bbece59ac530', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('854d7b9c-c1eb-48e7-978c-70a057b6feba', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('95ce5834-6df9-483e-8d34-36a0240f2beb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('74eb962e-1e8d-4e1b-92ac-6872669d7aa6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('71978dda-178b-491f-87aa-cb2054c0e68b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c57554ca-2505-4d51-8e3e-6b999950e955', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9aa9507b-9c8e-4f80-8198-028c8d161272', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0910f61f-623e-4643-b439-67e4ae2017c8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b2689cf5-3067-44a6-8543-39b2e9d53d20', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1ff36364-1e09-4fcb-b008-22a9f664d1eb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9034af89-66b3-47a1-9501-65a03ec68d8f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('29ba9ce7-5327-4918-a1ac-5ceef43bf66d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('01eeac1e-ed6c-4f32-88f3-2a7484ff86ce', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('df73d77e-52a8-440a-b5d9-2d3e718ccdfe', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ebb8478f-4c98-4f44-bb0f-6036942d3a3b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5a818337-07d3-497b-8d97-740ec2dd07c7', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('904d1c20-82f2-4236-aaf8-5866a48f3de8', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b471837f-604e-4fef-ba32-3265e73f9ced', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d19a0b6b-0268-4d59-a3dd-176fe7f8cd94', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('9542f37f-717d-4918-8985-a85b96c40e32', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a6141a35-6791-4d50-95ee-1e2f1e723d7f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8bea3826-aaf0-4ae8-a346-a3ac0d8a8143', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6d4e829a-88fa-4b5b-9f36-ebdb17cb152d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('c130e3df-1643-43c5-8cb0-168d7d4046a3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('2a23b891-90b9-4724-b7be-c8e0457e53cb', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8269d7c8-3ba1-4903-9cad-206d41ac89e6', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('f25439cf-05db-4977-8ce4-359c8047c292', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b02aa4fe-dd9f-4754-9d4b-793794965b7f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5249ca6b-cc39-4d6c-ba98-6def0fe2d52c', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('364c5249-2ae1-4c0f-a732-7c816f4ee9a3', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc12bcc0-c829-4199-a7c5-40cdd9bd7d6f', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('46f4e891-c4c7-441b-8e4e-3be5ce1c9ad9', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3c719489-1713-45e4-8689-d83c448c1369', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('3fd7cb87-99f9-4b7a-b7ad-ed018d976aec', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('782f02d8-7e18-4799-9985-4bcff3546cae', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('41f62d96-d6c7-4561-8ed4-209ad0ef8a83', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('ae700224-c552-4c90-bf40-618f2de9b85e', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('57862e6f-57a7-4b99-96b3-0c58334d0562', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6ad66094-6bca-4ed1-8414-4df62e3ae4ff', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d4bf0380-30f8-4c1c-8530-950416296242', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('bc19003a-f55d-462d-ab99-6a36030609ba', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('d30dfdda-800d-4dfb-93f8-48ed5aa89159', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('1a2abfca-78df-4f3b-906b-e7670f9f3b0b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('62bbba6a-e99d-489c-bd97-85556ef99db5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('40b75783-fa88-4ade-8f40-ba0b8ae2e99b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('e9902d05-14e1-42e5-a601-5a29a7d7319b', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('5c648ce8-7824-4460-9b63-937148d01f63', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('956a86e6-4e1c-446d-bc30-69a123398a70', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('b0649894-6476-4ed0-97a1-7ca715d19ab4', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('a84239c3-b449-411e-aa56-d73fc50bbc3d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('0bfe8308-de23-4b7e-b810-f13ca5f9e4ea', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('cc68d6e4-fa2f-4cb5-afdb-35c74eb82df5', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6a1678f0-fdd2-40ad-bc43-5f50e439646d', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('6b94725d-3740-4d26-a324-10e4e3fcbd62', 'rbac.permission'); -INSERT INTO rbac.reference (uuid, type) VALUES ('8f7626fe-631f-4f63-b937-bc00e8f2267b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce47754e-0d06-4b12-bc91-8034a4a046e7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d2e05c94-5c48-43bf-a263-307e9dafe466', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3706fd53-e952-408a-aedd-93ec6d5129be', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9ae5d7ce-d996-4510-9513-9b352cf4427f', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f19926e8-c484-4707-9dfe-2567bcf73517', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('43d7f5ce-6756-4b39-be31-5f2289a9861d', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('47b0efd3-0e9a-4275-b2c5-d50dd2b22024', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b7bb17e3-4bb5-4e56-8ea7-82c83f290e1b', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f53edb60-9b71-488e-9cf9-b546b1a41a27', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('58e39438-c58f-4aad-ba36-c6cba38cbe10', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b4f88dad-496e-4943-86f9-0c0a53a8a086', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('622441da-6eb6-4769-b217-0517d120ae19', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9b54e093-e76b-4467-b601-2fd984a46eb8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cbd8ff6d-bd06-440b-ac59-c28e812f38fb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d0319d41-e3ac-4970-b937-3a6dfb1b87f6', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('261f9b22-f120-497f-b2d7-1743429cbdc7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('de3fc307-29f4-45fe-ad4d-b2d221a80dc6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f82d3673-e425-46aa-9313-c6beebadd556', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('68178d3f-a62f-4a8d-aba1-4c31e16ce245', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dffa9b00-9935-41ab-97f4-8e0dd64253a8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2eee7eaf-aedf-4963-9f91-1650705505a8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('77bd729e-de25-49f7-946a-8e2bb01ba937', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9bd2654f-ab7c-4a27-a592-a6d88c297bcf', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8191b376-6d33-4ca0-99ae-48e8df1a4c8d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c7ea2fdb-14df-4e65-abba-932a8f299b0a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5a90164e-c8ba-4dc0-874a-fdf0fbbf049d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a9e463d4-7366-4bdc-a34f-8c3a4695eaaf', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7b14ab48-4340-4028-b5ec-4c63c3c74204', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('279792c1-89eb-4ce8-a408-6182eba0d5d5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cd1dcb29-0de5-4168-9533-4bf93aa9a1d3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51745b8a-19bc-4fa2-a0d6-df1a95462ca5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95578ba6-2639-48b3-b124-430862b413da', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('889a47b5-a856-4b2a-ac09-c8d5610c5208', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('62fb727e-926b-4d36-ba51-0755885df9c1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9340ed0f-3740-40bb-a4ad-d695ff86bd82', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ed0f8f52-41e7-4008-95ea-b2dc348f51f4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f498e9ce-465f-470c-b560-125e9f4bba17', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4086e329-1c2c-47e3-95b4-87200972b379', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6c0959a-c76b-48d4-a40e-6eed197f77d8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8b326d7d-bba8-45df-a00d-895f7c64ee22', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('836c9ba8-a972-44aa-b7f3-dc2cde577d76', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9336c198-ff90-44f0-9e69-58d0d730ea31', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d9f2c35-3226-4fa8-b61b-c352ab0657aa', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('851a50d1-f075-43e8-8b04-4631aa4ac7e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8a8806fc-fceb-488d-8c54-f54bdb252b96', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('77b4b7a8-1143-4be8-9e73-fdea50339047', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c645d340-b5dd-4eff-a041-c09ba34dde62', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b86f2991-86c0-4dd6-958c-94598f95e0c7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1435f302-f2df-4c70-9503-ba7c3d3c956a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bbff9028-689c-4b1f-bc48-fa82816f4779', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1fbc3b80-708a-4c16-89f4-f590476ce853', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c6bb3b1-18e4-4544-887d-f1ca8d715599', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c02e9eb6-82ba-49f2-a64a-4ca9caeeafd0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bfb672c7-40db-4c9d-be7c-66b73ff5c95d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fdcabb47-e267-4943-a466-cb22eb6acb40', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('587090ef-53ba-4090-bb60-07e7553a6735', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('014edbae-b8a0-433a-96cd-fb7ceec2eaec', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5503bf11-4c80-4342-bca0-12a813a75550', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('79fa42bf-1583-42c6-a45a-431a47c7e1fc', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('05657efb-bf3d-432a-84f2-e88d5357358f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c98d998b-86e8-4560-b7ee-32d886e09ca7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b92722f-8703-4041-8a90-b3831b5e2636', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('64182ec7-44b5-4de0-9830-d4d502de2d72', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6999763d-206c-4c74-8c38-df461a2b5c08', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('64ee9c0f-19c6-4f95-ac35-98ccdc2ab6d9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('061689ed-e23a-495d-a83c-03cbeb6431b5', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7e6a2f44-1341-4fde-a575-d735dc3d6167', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f56cf9dd-0b15-44bd-9936-180358f36dde', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('10cc55df-30bc-4162-b803-3e679382589b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('68c481da-6660-4ee4-b993-034035adaac3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f9215d44-2e5f-4643-8ad3-9c6f86336574', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19f010cd-7960-4e7f-96cb-749b0b517d55', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9cd47ed0-a16b-4608-a05b-2384c69c14b3', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('87b5ee74-8272-47e0-8382-508e7826a9bd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('29bc9f72-fd5f-4e77-a1f5-b0c26e72f0e2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8be81938-4380-4e47-a531-7f75994b5c7b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5ec44c43-71d0-4fec-9e54-4668b09e43b7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('84052d8f-5425-44d3-9fbd-7074fa15b51d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dba32261-10f4-4703-adfc-c709767a8089', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('36734f80-8b44-49a3-a276-8d30e2cbda80', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('83b63657-d41f-4a1c-b734-69fc0d931184', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b700ec87-f10c-4f8c-acca-b1f7b7bf0d86', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2da43f30-16da-45a7-81f6-655246785709', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('20e424c6-6960-4006-b5db-217495896189', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a5deb169-2600-4bd6-a1b0-cd396c0d01d2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c7a7498-1020-4437-9462-b53188cac668', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d4025044-6f0c-4522-a2d6-a74e0d77e25c', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81707abc-1b3c-4366-bf2e-88330dcedbf4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e03716b4-1f3c-49e3-85ec-987b2255b768', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cac9accb-2377-422e-aa28-099560ff5be7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f633082-b98a-41e3-a7c1-a012344ed779', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6157265a-8060-4b5e-b3c5-d859148dfaac', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a429bcf1-ae88-461d-89ac-c3a6ab0b51f8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9db20e03-c433-43b8-b6fb-7be16948c1df', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('161f701d-19a4-4ec6-9532-add4a75c3cef', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e07ca871-e19f-4742-b502-83d1386db856', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('25aacb25-32b6-434e-a83d-1c6b6d2c7f88', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44de04ce-8a6e-463e-b91b-0dff9d08f39f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('354d47f0-48f6-432c-9ca0-1a9e7b445575', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b58c60da-9bc7-415e-937a-ca9698feeb43', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59a43fec-b8c0-4924-a551-795d76ede176', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2ddebf26-9ed2-47e1-8529-7bd6695f5ad5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('00d948f1-9b2f-4485-969f-9adff4ceefc8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb4cbe5c-7a2d-40bb-93cb-f470c5cb1448', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6bf95086-8613-4e76-b4bd-373c5f4dd8ed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f7a3c8a4-2dcd-4365-86a6-4a6815f27754', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d90575e7-fa65-4442-bc2a-594d402d48c7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cb4e710f-faa5-48fa-99cb-538bd199375f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e7bf6ee3-d4f8-40c4-9241-d9d7f8da50f4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f25e0132-b738-484c-b705-9f7daedf5f5e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a9733a34-f4ba-47a3-82ab-4d5c6dc2de48', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('79c76d08-ddc3-4340-867a-a4bf672ee561', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6af9107-0028-4bb0-a84c-e05b2b563a8c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d445f823-74aa-4f13-b522-63f4ed72cf43', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('914f6ce6-4c3c-408b-b593-57fe5a655e8a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7b75fb08-d2ee-4ef7-8032-4b5a4e75bd76', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5afdcdd2-cae4-4e94-b960-394991740137', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('12631f3e-cf79-4ed3-83de-8e4aa5047558', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('926ddcf5-5e2e-4d0e-8367-aacff8a5f723', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2560e60-c9ef-4a62-aa11-047aa2a881c0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('33dd1dfe-b50e-4b14-8605-686388194536', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d5a14c5-ff9a-44aa-9e10-dbc7830be348', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('93bd7ad2-b02e-4683-93fe-18c8bccb572e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c8c8fd0-6d59-42b4-83d3-d05f06823b8d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b625f6a4-5267-4ee9-90f8-a0bef13b601a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5e63775d-1703-4028-8d6f-1ac5bc9bc23e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ec3ce444-8daf-4e5e-b2fa-9ae177031b1e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a191eb5a-d446-474e-aa42-0e0f4b50805b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('21c7c55c-6297-4178-b3cc-6417c8750144', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6848b0de-277b-48f3-919e-1c35919478bf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d4093d6e-cbc8-472d-b34a-aef1973e5c91', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81e6a20f-7423-49b4-82d1-64de6b39078c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2c26ede-90e9-4dd5-ae99-f4378113611a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2889cc0-5ac3-4404-a7a6-9f05f2f26b62', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e87e04b2-014c-4936-8910-d3c6367e0c17', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('11e792d9-140e-4350-8a25-2837432ad530', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fb2e7112-c206-413e-a26c-bc98d27ee77f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('60d6884d-d0cc-4638-a11c-ffcf7741d61d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9b25b6d5-ea8c-4fd9-a764-5c98b3d7a4b3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c70f69e2-04d2-4d4e-8618-700290784834', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('193e58b5-518d-4bcd-92e2-a9cfe5f8e822', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e7716785-7183-4ff2-8b84-ab215b0617f8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1a0dd9ff-2040-4bdc-8861-90b3c2c9a7e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('448bfa3f-a9c4-48aa-b206-76bdf9d5b233', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8aaf41c3-600f-4b6f-be1c-d0e32761e3f4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1be597fc-dfbe-4811-9a69-84c966cab438', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3a12b0ee-7acd-45d8-9afc-83109e370f53', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e5dd2f30-ad8f-421a-a693-029dd090fed2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9bfc93ab-aa68-4d34-a1b9-18a7d380fdbb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4fb1647f-2f42-4308-bb7c-3f81d76ed6e9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f538912a-3586-4949-ac88-e0290e05793d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ad1e0e26-7598-44e5-bc52-23bfa4a3fa3a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a98f5b55-0301-41a0-af70-bdd66cc51ef4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2058dc59-6192-47bc-824f-083689b9236c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5b2ee85e-5fb0-4081-a0ec-b8dc450e3ca2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bface2ce-9df2-4781-9d1d-42d063dbddf9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('45ad1e27-9e7d-4de2-979b-26e9e1625472', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6a1e8dd7-d6c6-4d62-b724-3e8e734736c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('90462639-f32b-4623-a611-d04d0e8c3af3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e59c27d8-8f2c-4f7f-900f-73c416fdc33c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7cf2ea28-9bbb-4f00-aa37-a57258ac913b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dfcb9a8d-5c77-454a-bb70-eb7b87736e3e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66f08b23-5156-462b-afac-8e6ab2a0b3f2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('86375471-2207-46fb-bbad-169e6a47548d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ad146ecd-4b07-4f27-aa42-1ef082b2a11d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a3a6f3c0-e50f-4255-bcbb-9f8621d21cd5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67c0accc-a873-4e2a-929e-457d3128a4da', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('786c9147-a632-481a-9df0-6381a6ab9adb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9c4319d9-b758-495a-a317-02c42f16beb5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ec027211-853d-498d-b9e0-50136338ba81', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('df8538df-8ca6-44e1-b749-48fa534ff060', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('448e55f7-b79e-46d9-bd48-7c3697b93367', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('da5b7e5c-6648-40f5-9e43-210a8c795fc4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cdc44225-e4ef-477b-b622-eceb2bcbf7aa', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('70c612b5-fa4e-4d28-9460-88df9b9c0c8a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3a1d242d-7474-4382-88b2-d9ca26c0fb8b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1febc3c4-916f-4022-bd21-47235f105530', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f774f68e-d26b-49ad-be57-1d6f00df85b7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d40106f1-12c9-4440-acfa-82a7ca690c71', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('75bcc779-10ba-4dd8-b1e6-eaa06661b721', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cbcce756-f68e-4128-be12-98d67a3ec870', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a137fda3-912f-41fa-bb2e-f6f20ccbe391', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5d4ef325-0433-4936-bcc5-88422ff3328b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('760c04d0-f20e-4490-9273-f7d637e8ada9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('73f04f81-a92a-498b-bdc0-2f5639b3cf4a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f5e0d43-7552-4cb2-888e-8b5a63020e25', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e753752b-b4cf-46da-89be-73116e05729a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a166321a-5513-4619-9bdb-8b73d714de05', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f70f1dff-3633-4f1d-a1ba-3c8842a83f43', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4de65521-68b5-46f8-957b-f74974191c6a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3fc8a4bb-26c4-47d2-b927-98776311197f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a3256533-cd2c-43f5-add2-f71d381cdbe9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3fdf5d5f-ec7b-431a-984a-848f95bbe749', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('74efa1fd-8fe2-44d3-82ea-de125b6c3245', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19cdc94b-d009-4396-92ab-7df7fdaf187e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98b3661d-d16c-4bf2-a4df-cca378c62c3e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('badc7eae-cad2-4cfc-9c86-e33690da6ce6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7999d7ce-e625-4c32-9fda-c04e111104e3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2528d6b8-faad-4a11-b990-93d5aacc67c6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('801ec852-1701-472a-b0fd-02e1df4fdd4d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6cabd1a3-8097-4d6c-99d2-4240bf7a1364', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e7d0417-6d4f-42f8-99f5-f2b4bffb79be', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('84952335-9521-4274-89df-97081b4f20ed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5d5a6b85-63e7-4c2a-8419-2e9e2f2ee92e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('30157dc8-070d-40bb-9bb3-e9f362a79b20', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59604b99-4da7-46d3-8f94-560496047f62', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d2ade14d-ac50-407c-af35-d34aa3de7112', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f69ec9ea-6033-4d69-878c-9e86943e0849', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5eb22ba-9416-4629-82da-c70b5a69c59a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1528b9cc-bc3f-4212-9757-8d3561baa8fb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a2e37858-5b3f-4ac2-a66d-55b573eb0620', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a943d2d8-c4d5-4dc0-aceb-397ccb0e0e98', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95b656d6-cf43-4ee2-85f2-e1bfbd04294c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('90e6061c-017a-4428-a3bc-de284850163c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d095ad34-1da8-4c90-8eb3-a613cb11ebd0', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c67b717b-87cb-4272-9bf2-1adae808b092', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59d3ebec-a4d2-4151-a982-895c9ac5f91d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cbc3ceae-6f8c-4bd8-9d6b-cd73e7ed07d2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7e162605-01d2-42f3-b242-bf5f633a14b2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('933c3664-1b01-4440-b494-1b03527abccc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6925557-e189-4cf9-bdf6-710bb6ef3d53', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('edfdccdd-4e73-4fa3-9b8c-410d643a2c2e', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('992f08c8-c77d-419e-a227-2dd1686d6e6b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e3cf1944-d3d8-467e-a70a-7c9457d9e858', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dec4450d-5cfc-4ff5-9d5b-019a7747e9fe', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d805187e-229f-4126-8818-cce8260ab65e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9fe19a72-607d-48f7-a992-4045dc1b983d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3be4b973-5d0c-49b6-ba74-784431b56cec', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c9befd2c-1ee0-4ef6-ad41-19134d9b6f6c', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('789cfb5a-1d39-49d7-ba6c-13eebb4001f6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cc414f18-8727-46ff-a6f1-19d39a64ddb8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c8bb86bc-fafc-4a69-b244-c47a24b030fc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('437f6354-4fc0-4297-98b3-6d486affae60', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8da909f7-88dc-4021-ac65-41ea261a6094', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cd261e93-e58f-43e0-93a6-a8d8f4d7d108', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b821d95f-9913-4a83-b4bf-a851b818e72a', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b1d76834-4f18-4316-a56d-c2a8ae935c46', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2a00622b-a1ad-481a-984b-1aa15b339490', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ed242038-35ab-4340-a9df-75adc9890cc7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4118526a-57ff-4e53-8755-86b3edcdf008', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66252cb9-5891-44ed-8606-a5c439842416', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc2e2b7a-574d-47f7-b275-94090bad4e2a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fdec138-a875-42ea-b26e-beef34f2996d', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0a77af39-b111-4ba1-bb29-d01fbe258230', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('222f7fdc-72bc-4e60-9739-7b9aaaf7e2ed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f1f9f27-551d-4cfd-ad0c-5a75cc40c812', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fced52c5-6b1f-4b59-ada6-e7491b4a9093', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f1d4efd3-5c86-42e1-9bb1-8750a2f3c761', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d863bab-2207-4cb6-8bf5-c914763154de', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5e247f88-09f8-4919-9f18-8d28ec0fcaef', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46457146-b7b7-493a-9a9b-52bea39d88a8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ae3680ff-6656-4bfc-9745-8a47d76e2c34', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a1faf426-c1ee-48e1-a019-e7cb37be31ed', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4ef293b9-aa72-442b-b686-7a410c1dd96c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('127cd0b6-de7d-47f1-bdf4-e9fb804dc864', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8ee94015-502e-4603-a25a-88ef7ec2ab5f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2facd7e-f571-4d78-ab18-6852adfd8433', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9273036d-c803-44c4-97a2-734938b17ab1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce81a20e-b1ba-4baa-9486-04bddbcda145', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8aff4be6-1d01-41cb-8531-4cf3f16275f4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3e713234-8903-4570-ba0a-226e53204b19', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bc877dd3-dc47-4a31-9160-35c3d51f3ee6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b04e0e1d-075f-4519-8403-5c2138bf5922', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b5a746e4-7074-4499-976d-c80e310bf1dd', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c939c84e-7f30-4659-8071-5249650c38aa', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('989681b5-af41-453b-ad08-3bf003f0ea6b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b5aa317c-e79b-49e3-aea0-613d7b21ccd8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5b4d0403-ef6b-466c-8ed5-03ccf8110bc6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d2207d3e-b974-44e2-a8df-1b9df3f5bfa3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c18655af-416e-46c2-b8ed-dcef6da068bf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f9b640cc-81fd-417c-bc90-759827548b3a', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7beb3232-b58a-404e-a0be-87920b745415', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c0c9ad9-d944-4e1b-8bb5-88bec1d68a61', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d150ac38-8526-4199-a387-989682ab0e80', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f701782a-945a-427b-b8d1-eb7aaf8a70fe', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cb6632a1-56b9-45d3-a4f7-d5f6358d5543', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c8cd6e5-d5f5-434d-87ab-e8376f73f04f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e912b48f-b628-4b6f-946e-c8551c53a3a8', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5b7baf26-6522-415a-b8ac-1814c9822030', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4f6d92d2-fe61-41f9-b764-d596d622b35b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f163a364-7ce1-44a9-b190-64dc5e5db218', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aa6b3146-aeb8-421c-9c7e-a912110bfff5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fababc8-75c1-4c4b-b033-13a1ce3424b7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85481b32-da42-4542-92f5-6e5d85b485e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b45fb51f-6632-47a8-a9bf-64214b133ed5', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ec5c9879-5f1f-4edc-9593-f66dbfd23463', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('227b3c28-7a79-4f91-ae6b-148322c3d40a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1443481f-933e-4fc2-a36d-249ab3e409b9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98df7445-5c89-4811-9d62-6ff4dad07580', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c2d51705-81de-4c08-875e-0199a4a662a7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bba5f750-df26-4fee-8766-bd9d120674d8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c02595e5-37aa-48a8-9c0b-795fe038b16e', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a77da5b0-418f-40bc-bb16-4cf68496b69e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2a456ed-bbf5-4dcc-820b-02f15deb85cb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e3fe356-8d07-471f-ac7d-2fd2cc221c51', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('25be12bb-9667-4d14-8c0e-f1d5fe0d23f1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c47e70f5-9a06-4c04-8df5-8f5a1cf1334a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('140b4019-0b61-4cb8-9c0e-67ae32cc5df1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2a5e380-82e4-4508-9209-c41de60dff60', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dfb1526f-97b3-467c-9353-def252ee3fa4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('07c20dc9-492b-4312-b011-0f7f0e5a05f7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f16fdccd-62ff-4d76-ab81-954eba2829a5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1111c35d-e9c8-4ad9-8fc9-670bd8434471', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7b4384b9-b24c-43e7-84a8-1146b0658420', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0de0e8f1-ad88-456a-9f9d-0c0f7bc15e45', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c171ccc-44f5-4b98-a935-607a33136ac6', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('48fcd828-17ca-4987-bfb9-88ff03d79d45', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9555e49d-c410-4dd6-b9d4-28e2fdb97eec', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('70419cf1-b91d-4e0e-a310-5f6bae23438e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('16de6e35-1477-4167-a673-ab39caaaea59', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5d405437-06fd-455f-b6bb-d3975a67dfcd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd10630e-6fb4-46b7-ad0f-37c987ceb235', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('48e6b69e-6886-4af5-904a-478662c83492', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4bb77a3d-359b-4c59-97c6-2b2d057f02b0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9edb117d-d8f3-40a5-b203-9d59d79cc58c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81c56c69-3026-4f09-b12e-e1d7f5189323', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8d8c187-6155-4dd7-b07d-09ea1ac099b6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('300d2c40-7194-43e2-8f2e-64f6fd618f34', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('96e9b0fc-c820-47fd-a9f1-205fce4bdee3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19061874-d54a-4948-844e-8cedd1b003d2', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6718cc14-a634-44b9-84b5-725bab3c9071', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('62bd240c-20ee-4ef1-95c5-e52dfbe6de2b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc5a6d59-874e-42df-bd2b-fe9d6d0041bd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0ddc1db2-9b0e-4b9f-a142-19741a05b0d1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('769a625e-f766-4b62-9029-f2ac2fad55bb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7403c34d-a475-4918-b215-3f3692509aa1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dec8de87-0282-40b3-9f2d-e1f6e49a148a', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a877eb2d-0398-4183-a767-b7aad0c43e1d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59724e8e-d9fb-4a0f-abff-7b78c1c84409', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('83e922fb-97de-4816-9312-bfb5f38b72b9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7a73d726-1f2d-47e2-97f2-0ceb8645a081', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('912c4ac5-4a51-4a08-bf64-f8fafbcd72dc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e3b1aa65-ae16-4320-946e-97d4d6102317', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2f85e53e-d6bb-4adb-9d94-7b74d1ad888b', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46e716e7-0176-478d-b2a8-46a73a3cd04e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('02b73e38-e8e6-435b-be67-f24c921744e6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e9475ea-2abc-4d44-972f-90261e404594', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6a10e84-1ce4-48f9-a2d7-3dd53472453b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c0667e65-6262-4d55-8f1b-75891ba87b43', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('12ae58c9-2742-4499-953c-081e93f0020d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b34f7e7a-8025-4121-bb53-600b22a4cc18', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd653aa7-d852-4812-b705-7d710e98928f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2b2fcc4-6250-46b3-bc60-3d9400012fbc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1f351971-9efb-4e62-b788-fd10b95475c9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7cf1797b-df8e-4760-969c-bf600b984f7a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7317cdc3-c578-4ad5-add1-437eb36f85e8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f2f534a-7af0-4c96-809e-676894f93bfc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b511f27-6e79-4af2-a068-8eb4f022f67e', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4aae44c6-f86e-4206-ac82-14b1d7d7e80e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d98ed26e-3547-4aef-9a20-068877689f45', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('165f0036-f302-4822-b033-4a598efa8596', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b578ba6b-0188-4937-92bf-12e716b79b96', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6ce193de-3616-48ba-b6c8-d096c97fa63a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('50e7317a-915d-4eeb-93cc-7610407aeb18', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb0f0395-af8e-4158-955d-ad320c218363', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fe45ce09-fb1c-48d8-a9d6-ab78428e4762', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9df8bd77-1f07-4c62-955d-4303f7101603', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba696987-8506-49d7-802d-a8c0582d7492', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('45448b35-aade-4d69-bc2e-6ae8ff0e2429', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c31e39c3-6091-4f88-857c-1138d947b0ba', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a266a942-4714-4944-91ab-87a70bc21b4b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8857fd83-e188-4b83-92c0-e8675d2704cb', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('17ee3e11-774a-4a74-8580-82d78002b92d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f44dcd42-7c8e-4f71-a9b2-62fe8df62395', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('99199b97-236f-4ee7-bcc2-9a9e42ed3c78', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d6875cd-0ec8-48c4-a475-e6c51b53e4e9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3418673e-f75c-4d2b-b883-d057a6f82389', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('57de3812-dd5c-41ef-9ced-d6a7ebc020fd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('40cc2f02-7eb0-460f-a4ff-e8820df15b6f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b5ec802f-b80c-4662-8c1f-28d98cbb9eec', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('acf8d49b-faa5-4fb5-a582-fd14c8eba4e1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d4ed6718-32e0-4eee-9861-32d664c0edc9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9f9dcc85-30ee-4d06-a7b9-c31049986d0b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a26ab602-827e-433f-b7bb-ffcfd4808d0b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3344a63f-12d7-4ccb-b602-29a2c2282812', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8c323142-a153-42a9-9575-b44899cb888e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('111253af-eb02-43f1-bbd2-5a84dc893e6c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('264caa55-3f5b-4ddf-93db-f0bcf9f173fa', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a426d1b8-0a8c-4d37-916b-857f94f0c3a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ac7cb66b-a676-425f-9283-1c0ff1ed7a41', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c94b6051-8824-4e95-89d0-aafc90538f79', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('49d730a6-d4e5-4299-9366-4b5fc7c608ad', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dbe087f9-7740-4f17-a2ea-bf6a413d4917', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('74226628-a846-47a1-bc0a-a746321ac9a3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a10c1086-17e5-4d02-be1c-46407abe19f3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8ab00d8a-f618-4c34-943f-76611ac6e844', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d5c2623f-d7cc-456d-be5a-a72355bdcfb1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('286fc1d1-c6a5-42e3-bd87-40f4ca9494bc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d2085b6-36ac-4663-b16a-ad89f1af0185', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a0b4a0d6-5ff8-4120-b3c8-0c0b5c9eea30', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('16f9c10b-4c4d-4228-a02d-4493da3d051c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('966e3f00-767d-49ab-84f6-0b678b4e0ee5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a83a9185-9054-4557-987d-c6086a85d191', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f18740fd-dfd0-4e94-8827-0511e11fdc6d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f047ead0-abf6-4809-865e-a0291f4d3583', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('23683202-f904-41ac-bffc-eb3ef688a2f1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9dbe7136-bc19-42a0-990a-5492fa009257', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6474d43b-7408-454f-8ed6-045c88ac8709', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('784c60b7-0043-44d7-925d-0ee643b5316e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('faa45dcf-229c-4fcf-b778-117fc26b8093', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66e9485a-c9a0-490c-896b-286fb9729ee1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6e49e38-4e9a-4ae7-b632-7d7f7ddb275f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c21f7488-e384-4431-9d4b-ae40b8d767f5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6644437c-1af3-41da-a698-cb9a5e0be97a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c7453585-2865-4464-ba7a-2e5a83ab2b07', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('16a57870-19c1-4020-8198-56fd7bfb032c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c7f76954-fd8e-4b03-a35a-757b523a5b46', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5dace3e2-5eac-44bc-9b7a-e221aa44d2e8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f646d6e2-d290-4052-a7fe-071a293ef6ea', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d73e996d-2b80-4a22-945f-3e31504ed859', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('875f7719-4fad-483d-97b4-4570aa9a9bc2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f0ac9ba3-d9ce-40b8-a4f4-d1b5d857fac2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e65e58d6-ab52-4db9-912d-49fbee2b9e93', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7b901509-cebc-4fce-a4cb-cfcbb6e09964', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f911475-d7c4-4847-b43a-94e4568293db', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('138f92b0-e7b9-4bdf-ad1b-f83460966626', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce2acdf4-5f80-4fca-8e2c-539bad84be41', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d24a9ae7-48b5-4b58-aa6f-4b6ab8ba4884', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2570afcb-757e-475c-91ee-2ae93bd22ea2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c0897451-3e4e-4131-9b57-4e60c7f005b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('afdc94e2-1fbe-4d80-8e7a-863c8bbd9003', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2ee2dce1-c3eb-4af4-931e-1b03064d41be', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('99b81078-9588-404a-a4b2-d9bc075174f8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6a59902-de78-4ce4-8685-9bc162575215', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8215b01-e2a6-46f0-8872-9d92b8ea533c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('04b7a0fe-5daa-412f-9e3a-014505f9dfdd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f802db1a-56c6-4dd6-a31d-112f3b9ca20c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dd1bee3e-7901-4874-a2e6-d13f339ceff9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('758e8cf0-3a94-4d06-a9b1-487b3aef289e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e7c251c5-bd40-4cea-a3a1-4c29a5cb364a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4ccf8957-2844-4ce5-96eb-e0ee16f8add7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fca2a807-b07f-42b6-ae20-c568611da621', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c299f938-4701-423e-ad2d-65b779abc4c7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1f9de78a-e423-441f-87de-97391ca7acd7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f4676364-09f3-4357-9410-5d3c672e1db3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f7a43923-1403-4da2-86ba-f39eb91cc626', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ffc6ee88-9baf-4fa7-9012-1b8ad51f920c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5abb716c-4bd6-4879-8c4c-fb0b159c2a7d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ceaf9820-b48e-4126-8505-0b0310777450', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('58e43ec1-3abb-49c4-a62d-db3995f8ed16', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c45aece-98c2-462d-a601-81ed588d0ba7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b1c08804-5c2b-4f20-8d99-e6279ff9baa6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7af6138f-41ed-4728-8842-58d7fafd8dc0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9055d992-d9d6-4565-bd67-7b386535ef6a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2cdba53-f0f0-4b00-b955-544bec4e6900', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('64c7ecc0-30d0-4a29-860a-d86893e878bc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('966e8a9a-7f7d-41af-83a2-01b03c2c36ba', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dcab0d12-7513-405a-84a4-bf8e2a8a63fe', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('445a32d8-8262-4e77-9600-15e245d2b508', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cb483b2e-77ea-450e-a927-0849a83532c1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b1d5853-f666-4f44-bc69-63193d8dbd7e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('40a9c2b9-7487-42d9-b56e-9780083549a7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d4f780bf-8a0f-4a05-ad90-fc6b53d66650', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('828b7bb1-49dd-4389-af7c-ccd14a12a0f6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('077e0d19-2c32-49d9-8440-052d913b4a2a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dfeb60b4-fb6a-463a-85eb-d2313deaa126', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6335926b-f8bf-4002-b208-d815e5ad6b1b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('380419fa-12f5-487b-af03-bc43377b8734', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f4382bcf-af8d-4b7e-adc5-0392a61096ea', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f8d5871d-af52-4756-a10f-3ece4c33cf89', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('92fc973b-ee5d-4be9-8fa4-7838b27f2828', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e8214ee1-d2b4-4037-830f-e21a92bb10fb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('996648ab-df09-43d7-9d59-f13405d69362', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9e71a113-fc3b-4f0c-84ad-cc442c12aae2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e67c76ee-35b7-4f71-9ba7-fe05018cdd25', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('45113889-9554-4e23-b5d2-e54ab4ec1f47', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('888a956c-2985-4e87-8209-9010bdd33a03', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1dbdf007-fa0c-4811-a77e-7adf1f1d039f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4ba8a5d9-3529-49ab-90e9-24a137a64757', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('82a52e3c-eab0-4d61-aad1-0564e3c3ccc1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1f979f80-a286-4328-ac23-465199ca58b4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e51b1598-52dc-4f5d-9b07-f67987ff5ff1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('47b71190-dd48-4ab0-846e-94631dab1207', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('703a635a-38a4-47d3-81b7-501e99ac9583', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('793eb554-1b47-48f8-838b-6b15107fb4b8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bc94e434-5d36-4bec-b858-1d307487aafb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ee2a8d56-6119-4d7c-9ae7-4b8ae17395f9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fcf91d45-e57a-447e-b9ad-5b8899abcc09', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('af344f61-b33d-49d3-bb89-7337d073ea94', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('90494b0e-69be-45b8-a5fa-c71fe7ff70bb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f8afacb-e9ff-4283-b1c5-54b8370c4f41', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('68437209-5c62-4337-9506-21be4687a277', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e753e59b-62c2-4862-b01a-3abd736fde2b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95b22677-fe0b-4fc6-8af4-c7ae50705792', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0021f128-740c-4f4e-ab85-612d76ccbe67', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('34eb62ff-0428-4e83-9f0a-41854ea0b0ec', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ae085da6-9278-48f0-a2d2-b214f0cd55ab', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e4082d20-6277-4b51-b70b-1d41375748c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('90d199e7-3d95-4d79-afa5-718df6ccc20d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4fba0059-339e-435f-8c6d-0b285376f4ba', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('25dfeaa1-30c4-45d0-b19b-3d0d88d65957', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a5600943-59d4-4ec2-8319-a727e28ec3b3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5da991a1-776a-489a-b56f-d5e089449f65', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ecd6fd34-6c33-41f2-b6f8-c3ad94a13835', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c19b8dba-ba9f-4926-a6fe-1abdaefd358d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5a0a9e2-e859-47f0-a26e-8c20f06c4403', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('50ad278f-7bcd-478d-b3e0-1cdc256c0759', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e2eed10-8946-4b80-ad65-5e22391178ec', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9ad5cc67-c734-4cc0-827e-3d2dca76266e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a33e3633-4ccf-4d55-8bfc-791127ffa636', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2e82259e-1776-4537-b7c3-e5044fd1ecb1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3724068b-69ac-46cf-b1a9-50c6d7c8db7f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c10e5a37-7f78-4bdf-887d-b681b5df5621', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dc6d1d21-3fce-4460-8f24-a41f763183c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f1e79cf-d61a-4a00-b380-660ad53d1bcf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1e38d376-11c2-4fa6-add4-a202aab7713b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fd3b6f6e-0fe2-40f2-9fc4-1fd3f88726d2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d189d2d5-40d9-47de-8fe0-1986ee10c700', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a8c4a6af-de61-447b-9bfa-a0d6472e32a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2662bed8-44a4-4a1e-b090-a221d274e398', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3da874af-ba54-493e-b4c1-b7986e50fb6b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f1c64bda-8cc5-471e-9d9d-4ce9282c4ef4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7743adda-1219-470d-ab7e-89500ba728b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6851da6d-16a0-452b-8244-f2c469bd8a3a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2787c036-4b7a-46ba-8ae2-47e0a70b4f8c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('209be47d-cb99-42f5-98b5-0cf434fa7ed4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9937daca-97c4-49ba-894f-758ee88bf500', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8ac1a2c5-ec64-4320-a83a-699b707fb0d7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ccc08255-d30c-4dec-acdf-183ad8d5c3fe', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4529dbf4-114d-4479-b4e1-191b5025e094', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c7609f1d-8da6-4baf-bd56-aefedf998cac', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e06becd-c599-44d0-938c-d1233bd828de', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('79951d69-b845-4536-a06d-ba9a0b87dd6d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5a2775af-58b4-4d5d-a011-1a678de1ba9c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('211e3097-d714-4c99-a2fb-b8b0d16243eb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0405d429-86b6-4e1a-b29c-62acdf173383', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8c2a56ee-f375-4fe1-8008-dd4b895cf59e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a8ceb1e9-b86a-4732-add5-7199c74ccaae', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('90912fc8-e239-410f-99af-95a8eff5b426', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('32466c46-25ad-4e70-b799-925d8a0205cd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7145ce25-b959-422f-8f2c-8097361bf6d6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c110ffc-6b36-4564-8cd3-7e313f707a92', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0df77b11-b28c-415d-bd01-058936ce59f7', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb15c30a-339e-43d3-a169-3b93a6a635b3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22041ed1-37da-4a86-bdd8-1eddc6101676', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('899a31d9-6c6e-4728-9a73-4ad2d8c7946f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('09d6dfed-fda0-409c-bbab-44a913a59559', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('53bf7dcf-d560-4389-bc5a-877c42e0c5c6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('21765a8c-4686-4dd7-902c-531dc124ff85', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9ee9004b-a6c1-40de-b2ba-ae3a0f81eb4d', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb813478-f30f-43b4-b7b8-b058970882d2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e37fd60-58f5-49b3-b8c6-e4855c26714e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c038d764-61d5-4749-a4cc-c6e9aaddd5a9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c1a1443-2334-4fb7-968a-bb4251e011f9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4dd5be50-ea24-4a6d-a70a-1697721c502c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('283e9cba-1f9c-4806-9f52-af3f0610e552', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0eb31fd9-2518-4d3d-8cb0-3c35e61d2927', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e324421e-6f78-4b05-8ed5-0eb391f079fe', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8c390846-5420-4725-ae4c-33a23daccdd5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b08b3e26-1d84-44f6-96d1-a11104ed6e33', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1d019406-d406-4d17-9183-6430804405ea', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2d8b1a01-2b01-4ed6-9416-cabdd13e8fe8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51967e11-58bf-41bb-add9-8561dc7e85da', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('644d653e-0b26-414e-b9c2-05627160e31e', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('274f45ec-aa1a-46e4-84c2-f15f0ee66124', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cdc88a5b-5845-419c-bb8f-be4171bf6108', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('932ccacc-fcc4-40c6-bdc5-f99f1de44d11', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3048fbd3-830e-4bf5-b3ca-c4b7cc460fb9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('200085b8-608a-4241-ac12-344db0b8e4e6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e72a5ba9-30e7-4ae2-ae53-6eae90d64983', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('38545759-12c4-47ef-a163-b8f4c100db73', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c790308-2239-4c34-a118-38795e3dac4b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d770c427-c0a6-4ab9-8553-875d0e9ab3fe', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('280536f4-7514-477f-915e-26c911eec776', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c509a545-b360-432f-8e0c-0aabdc2eb649', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7be4a71d-ca11-4d10-918f-3e0814d29be0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('476537b4-15f6-4690-b1c9-8431317dc5c6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('077a4207-e1de-4310-ab0e-f5e8d9623061', 'rbac.subject'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce97c5cd-c3ce-48d1-900e-e78cb236c3f1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4f1cfe75-6134-4a07-9cd0-4cc1aa13ebc9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e8a9f59-3907-4f80-a38b-ce3d31cede7a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('74972eb3-a884-4c04-9146-e49fc7579f89', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('48579cc2-7d55-4f0e-865d-8d6ae0d8b406', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e300d3e7-c99f-4e04-8173-2ee97171a948', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9c5062d4-6ed6-4284-967e-7e661a0f8016', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e31bcfc-172a-462a-bfd3-0c4300a3be02', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('31b757ef-769b-4665-92cb-af4169c856bb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9bdb8232-d205-401f-ab93-376ea1c29dd9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9b7dda2d-32bc-4619-a319-25631494c9b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('76d5fffa-389d-4f8a-b908-1814da8779d5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('53a5ba93-4f20-4c82-be4c-49e97c7d5740', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22b020e2-d2fd-435c-8c50-7789753f35b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b1cfb2eb-530d-422c-a94c-4165b900ec2c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ef9d8b84-a218-4eb7-80e1-597ca9083416', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c0127b61-407c-44c6-a115-805662b82bcb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('700637b7-43d0-4a0d-becd-3a75f346a013', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd376b83-c602-4e69-9516-efbeb101652f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e01c7215-b127-4fad-a44b-8e10ee43442c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0a15d624-e4af-4a38-b0bc-b6699191133b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f4f73916-43d9-47b2-8d2c-58e85451ef54', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('014df2bd-80ce-45f9-b3eb-f796e50e96f8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d30bac1-d0d4-49bc-8df1-f8d5f1226ecb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5a5a93ea-384a-45af-b24f-197597f90cd2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d5ef625-4808-4497-99a7-557f47a4a187', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('be649d61-15ab-419e-82f1-ce1fbac7b7eb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7890b69b-a029-4d2a-8ad5-aa65dd28b7d0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('78463a7c-7bcb-4a42-9c19-6e651fab2aee', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d3a69474-fea4-4b50-8a72-871f0b1a1e2b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2c60556-4128-4e9b-b251-d2906aefdc1a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('816a840c-6899-420c-978e-94ff3ce9ae09', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea255c31-e1c4-4241-9f4d-423f91f1b480', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('606c7925-1fa0-44d8-80ec-af77a469d047', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cd70744b-54ba-41a1-a772-3f7dbbe48fb6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('855b58a1-8ccc-42ef-8b18-589f25e75ed9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5cf0c904-f99e-4530-b681-1010ed67236c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a96d1a54-365e-43d5-9057-49d95deb70e4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('be1f42d8-8342-4606-9968-56597df359e3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('01dfc7bf-5b8b-4ca4-8c07-03991e2e9a3c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('52836fa0-288e-4a96-b104-82d2171d78a9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6b120aea-e662-4c3e-b28c-7b6be4c905fe', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('41688207-eecb-4233-b9b2-5f18eee23546', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('173079a5-7ba3-4959-912b-aa7570609757', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('db07583e-7a04-411d-9b92-33d4c39e35aa', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('03d6a566-70fb-482e-b92b-34fffe706837', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2ee0ef16-10ff-4131-be9b-73bae9f2e60f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6f238cc-d9ad-46e7-a13c-def16f0ce993', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d73d75b1-653a-4eba-8c58-8e0e9d16ef24', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd62ce60-6055-422f-a8df-25340a69537c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9e749376-4446-4f84-a3a6-0126a209bb01', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('134f0b60-0526-41e8-b559-1c90dc1408b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2f1a427a-f08d-4f12-92b8-a4d1cb70b217', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5131d1dc-c9ba-475c-b5ce-52634cd78b78', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c39cf0b-aec5-45ba-a444-f499a6818acf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eeeab670-63de-4a72-9982-514c8a6dcd0a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3c6ef604-c18b-4541-88fb-ca233fedfda0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1438527a-296e-41ef-b1c5-c8348df0c86a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5a24155-8c78-41b7-a673-cff084b7c626', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('70cfe5cc-66b4-45b0-aab0-d5839cff4516', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b616708-4042-412d-a57e-7cbf1b35af3e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d73e58f1-f9e9-4017-ab14-deb7117aa347', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ed8ccd28-b566-45f1-abac-68fe90cc85e8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e8740d62-698a-4d94-83e8-eab496600088', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66d97e89-67a3-4bd5-8969-499d1b6d2158', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b0392950-e032-4957-be9e-f04112052716', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('abc194f9-c783-43d0-9787-f81c3cdba59a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5d67e8d1-2f98-498f-a099-d49231726531', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85b81c91-a3a5-402b-99f9-204415b2a2f4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0d1bee63-fcba-4f5b-9a6b-5e4ac0a404d6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8b5a2b70-6f5e-43ad-be8d-cef2be011d6b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ff9918c9-e7e1-4f70-aa80-da9c49740d96', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2c4dad5-14eb-4f90-a9f1-bf5dbd3a232b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cccceb39-7081-4fc8-8816-4f1836330660', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22c1f87e-10b9-467d-86aa-0e9499ebf406', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5a2bd219-a88d-45b2-aa70-436d60dbc0cc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a1bd4a34-11dc-43f7-839c-0586857356b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b683c93d-0ad3-4d7b-bfa0-d7a93dee54ee', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba646cc4-0659-44ee-9105-09dc81d5b63e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('94f6efa8-91ab-4cfb-8aef-779607cc8445', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('473ce603-1451-4d7b-a349-3be047009fa4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('941c8c58-ddce-44a0-89ec-a6c49eadeaa1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4854884d-c0de-4615-a08e-62d0852977b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2acae6d-fb45-452e-8fd2-d16b5a61cf93', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('881ab218-4e1b-4999-881a-09dfbd85200c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('da431b6d-2c2b-45bc-b97e-5c727f8e5bd5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('261f2449-3d20-4c37-8e20-020eb39f6930', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c3942e8-e704-4284-9b1e-464ad5a8df40', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d08840e3-fb92-4366-a80a-743a30784ffc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('88d1b63f-6aa9-4bdf-8641-40d407f46862', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b3c4e793-94fd-41a7-a15b-d3a2f8c53ae9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('83241904-b79b-4ea1-b026-695d0359bfbc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('94780232-eeda-470f-a5c5-ad56892571a7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ef0239b3-2b2b-4820-a0a4-586f61b0453c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('850acad0-2e40-4a2e-9b06-4641b6c2f739', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6fbe57f9-92d4-4dd7-84f0-146337f536a8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('29447a17-0a73-4b6c-a10d-e06e2ad6bb18', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b4673596-d93d-4e4c-8acc-dcbff8055b68', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('510ab9a4-2fed-4cec-8bd8-9755b2e2e2d6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d476b4b5-88f5-4851-a8e3-650431cbef96', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5eaddef8-ff4e-4471-b2e3-ffb9639d071d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2505ea88-3feb-47ad-b96a-2ee2db6cebd6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d42f8061-3c65-432b-85a6-070721a1485c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('267b5d1f-e09c-4217-88d4-e30e12086469', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46b23b11-2e94-4ae0-bcd1-469564404aef', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4fb583d1-93e2-48af-abfb-bc30f4662096', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5954b710-2804-486c-9524-f05c267d675f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e7b5c809-59f7-4c67-b994-7b98fcb695ad', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b04e25ed-7c30-4260-ab50-0023cab71b1c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1ecf8b16-6ee8-44e1-902f-7a5fc2cd7473', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e38042d1-0858-453b-ae23-bf4664e538bc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cae6da95-0bb0-4ac6-b1f2-f95e9d72812c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4dc42612-0e8d-480e-bb20-72af1fdc211b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6a0282c6-ecc1-41db-87e3-bf99b54cc17d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1c5912d7-02e2-4309-949b-cca69728875f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1beb1243-6ef7-4fdd-9cbe-b4a910261fad', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46671f1f-1fdf-4582-a0a2-c255a4ebc141', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8619f4a4-1e58-48ca-8a60-f6d15c0211e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5ee5fc83-1e03-4788-a5fc-1019b4573937', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b56ac444-8847-4cbc-8f30-04c85ee63454', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1930516d-76b6-48f6-84f5-d472b5761d5d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('546fc944-7527-48dc-976d-5cbd1535562f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9baf8ed4-dee5-4014-9d91-6ca7c21297bd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8fdefa16-5f91-4d5a-a6ad-df194c48a64b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('05c5872b-6a1d-45d8-803b-7797e06650cc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a4488ee9-b51c-4f44-96e5-81d36e6361e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1301e219-cc77-4152-a0e6-fe81988a688d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7fe86d82-1b9d-485e-a206-a4c9bb39125c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8a96713c-f52a-494b-9856-5a7cc869449b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dfeb77e8-087e-423f-b4b5-8e8111a8b83e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0debf423-4128-4959-94b6-c4e17adfd25f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('38aa2ac2-71e5-4805-94ae-61361288f235', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd35e25f-a9d7-41f9-835d-55026654c03c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eba5fbe1-b196-4df3-8d92-fd9023668744', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d0ee13fb-5f61-40d3-b38e-02eafd89160f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a6ff0898-04e1-49b7-8621-b42846df06e1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6970814-b140-4805-95f3-610c215eb5ab', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c9372e0-cb21-4ae7-a461-df086ad19426', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e3c18d7e-cb24-4063-b0ac-dcb8fd3d2b68', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a930208f-7ef8-4296-9f70-24c50656ac58', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb43edcb-0d20-4614-b45c-736ef4f56380', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('db94672f-1fbf-4898-bff8-2bfb5b2450a3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1280183b-c71a-4b86-bdec-7f3800679ef4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3cdad6bf-60f7-4dd7-80b8-4b1bfbc0f7b7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d1d8fae9-566a-4a6b-8a1c-372b63108fe6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('684d7313-c093-4da0-83e8-bd73c6cc0bb6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('939dafca-fe72-499d-979d-6fe0288e6807', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('42a22abb-f604-4980-b6fa-adb1aa4e0adf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d226bd12-192c-43f1-bc65-45803a17c4a3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('deebf94a-2ef8-40bd-8538-9227bb901fee', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('06bf2ac2-61c5-42e9-917b-8b68afcc0d47', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a3aee0e9-b8f3-4262-80ae-5cc6154cdc10', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7a8959c2-e6c0-4af3-9d64-117811ec0d02', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4fe450ed-3a24-49b8-98cc-fa85de9ce889', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9d6a3750-0d32-469a-a476-2d8525f7e692', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c11382ee-e0e3-4b25-b8ba-640dde8c20bf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('82d6e2a0-3c2d-4a8e-8638-4903696927d5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0d98be37-8ae9-48c8-9bff-6b7581e256fa', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('25acc71c-db8f-46e4-950a-8ea76637bb9b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('de8da2bb-9e4d-44e7-ad03-e9763db4331f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b754d22-82a2-4349-af85-2cee67716f66', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('390087c9-9c6f-4c2f-9c77-af65112c520a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea4baec8-4128-4e59-b0e1-69b450c46755', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('24f9488b-412f-4314-b160-2897f4dcff1b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e9887f07-65e4-4b5b-a134-f023fb127cbf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('310cdf00-c863-4ea0-9e4e-9eac8a74f51a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2e07da63-f1f6-4342-b090-f3c465e9093a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f9d5ba94-1514-4400-88af-7b7d3798f473', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c8cc9a24-e3d0-412d-867b-8e617e40f1e3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('20926d99-1f1f-497a-8e13-ce3cb4b1eb73', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('32b78d45-4a5c-48a5-bec2-efacd97dc76b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b54d5034-1898-4712-a472-5ecac0e22a1a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('caa58c78-6540-4f75-a24c-d4ea5f218cb0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('57ee73c6-769e-461e-9cea-7bfe56970bf7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ae30faa4-b82e-4e65-8324-360fdba2d504', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e65ad361-79d6-46a3-a7c7-a18048b7237a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f38fcb66-ea16-41fb-abdc-ea3df857d5e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('97344c39-24d3-4df5-8dba-ba41ff28a020', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81ea98dc-258a-4ab6-8537-8de22e9e90be', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0a2e575c-9d22-42e7-8446-546ac3cda8ed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c787015-c910-455d-8b2c-c3ae7bece7e7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b1efc8c9-2f6c-4ec2-84e5-29444c0fcd29', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('680b8464-0536-4f87-a952-56e549a70a99', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9444adae-37a0-434e-97b7-3304b5577498', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('93ec1b20-de2b-4af1-924f-047a7afa0276', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e17045f7-b4ef-4c12-beee-56b1b5ef7190', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4330591d-61d5-4435-827a-c71b8328a700', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d6d69027-db1a-444c-be6a-e14232b71647', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0ca35f5d-778f-4207-88ae-beb5a648a6f6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('511d8f3d-266d-4c3a-9091-a7b16d8e61bc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('61aef2e8-ca62-4a62-8a4c-6a56f6fa6880', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5167487b-90ee-40b9-9c34-535b74b3186e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f03d3fab-a32c-40a8-9fb3-ff456bbb7f45', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a0a8a5e1-e11f-44ec-984f-163e049c81e1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4a861961-b89b-4ed1-8a22-076edb1fe182', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4241127c-1c6d-41b4-9350-3aa73785f6c5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c9f6461-5ab3-4c39-870d-e66aacd5d522', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('206fcdf2-c22e-480f-9029-42183cc2990e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7d188b98-3755-4753-b776-7226df8db3bb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51c51fa2-3706-470a-9d15-0bad421ea7d4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8973550c-23a8-40d5-bd36-4b4f8608841e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d3aa37e9-88d7-4099-8fa8-0bb25f6db328', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e887ff28-0576-46a5-8faa-b4167f9cab6a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6becffbf-7ca9-422d-a429-c022f023d9ae', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e1947aaf-5b7f-4597-b296-25830e9c945b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('32860409-f9d0-41f3-b19e-25a38bdabc3f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a822e970-7b6a-417d-81d0-a8db0c985427', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44f00bec-0091-4523-9235-84aa669de6df', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6fc5eacb-5328-41c3-a71b-e7712338862a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('efb67518-722d-4f1b-8280-e3f894406dd5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('87f8ac1d-b082-4961-979c-cd3de0e46b21', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b8a958a1-b18b-4198-995c-7057791c7b6f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba7a634b-c352-418c-a8c0-58918f32f8a7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e3eeab03-d7bd-4dcc-b076-3bca06fcedcd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ed0f7762-a094-4a88-abde-8472da33bcfb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1be4a900-49fe-4fef-b4f5-47643f463859', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9455fccb-71fa-4cff-bf89-5dfc719f3374', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea674a43-6195-4c02-8bbf-88c2255030ce', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fdcffa04-a455-4869-ab8f-2f2fa05e4b02', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6b918a1-edaa-4170-b6eb-9c8257b9a72a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67b756a8-aff9-439d-8ac8-b8965b63ac32', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c3fa6a59-6d7a-4f1a-a5a5-3ebf64250a5d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d85c013c-e791-4bec-ac0d-a217472cf425', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c21abea9-6973-44c7-91f4-2d163d97764d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('60297e5d-2f7d-4734-9a25-f2639ffb7fb4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b94eb65e-0105-4cf9-b238-cd3e4715c08d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7454ce37-a2ba-4f52-a5da-2190203ca089', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98ecef93-9816-44dc-a028-61cc9403efb9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8bc6523-20de-42c3-93e6-5884924a7cdb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eed193d1-f65d-4738-b8ee-d991aeea4389', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('da9600c2-7dcc-4a7d-87f1-33f4a441e807', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('03602c91-9c55-4264-8c24-9f9d3cbaf869', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f1afc7a2-588d-4b7e-9975-7b0eda21f846', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f8a806d8-a37b-4513-a77d-26cf05108c68', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c184a3f4-ab4e-4263-a14c-70243c83e166', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d53e98ff-47a8-4be8-a668-c3b45398f278', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b9d1cb3c-79f0-4640-b951-ad41f79d7b95', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cad96a06-91b7-43d8-897d-7bfb1d7054fc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8806c446-5551-4059-ba53-850a2d147c7c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('11749bf4-1bba-4698-93cc-41cd8d261166', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3807de9b-30c6-4a1a-a434-85e80560d3b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0beca0d8-2895-476e-afce-0923bba7e701', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e03da822-f071-4c66-890f-f93a458aec28', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c8f5fe32-5429-4991-8d88-ba9a79aead8a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ff0dff7c-9ef6-4ffd-916b-7a4fad718e8e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7880ca8d-9bf6-4ae4-9056-5677ef591442', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e811eb41-9645-43d9-86b4-d3b522acede9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3f16c617-f9ff-4634-b4b6-2cee590e2cd0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4812d3ef-02dc-4a03-8d13-7661dd92477d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2bcadf08-a16f-4ab6-afbe-83db1b1424d0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('624f1c38-a8ba-40a3-8f6b-dfe76cc36034', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('195afe34-3bc9-43cb-86f7-7eadfb5d25cf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('02e3a73a-07fc-46df-a14f-569f31249c16', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08a3ffd0-77e4-4759-ad73-d42ca4d2d807', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f87398bc-225a-4eee-bea8-7983be6ae529', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6e962b9c-39cd-4cec-9750-c36419ff6319', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('236b88d3-09bc-4750-9219-61529f7740af', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a5eeaa7d-bf09-41e9-9414-470442665789', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1f552123-71ce-43f0-b091-a43adb7a8a0c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('09a6064d-a472-48e9-9755-d0117f2af6fe', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4cc5242e-7cc3-426c-9025-ccab1d8a895a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bab68a5a-2016-454e-b143-8c334188d2c4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('60dbf8ee-3263-4878-990f-ab43fe96e48c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9115be3d-2bef-40ce-b0c9-339e460c751d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba27345e-0699-437d-b4ca-24a8e326c345', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2850544-cbc8-4add-ad35-4b634370b913', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce0b0564-7cda-4c03-afcc-0854f3c5e519', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d1767f98-0fc1-48e6-ab30-0cab02504ee2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('da979efd-9d87-4dc5-a839-493e883cf292', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c1816e75-de8d-480d-9a62-30805b9d2f99', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f913c978-1afc-4af0-9bb6-8c21eed95991', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('374b8a48-00ec-4df2-9320-848bedfad9de', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c55c0032-b1a4-47ac-89da-bb9c527a4a73', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cf0de0eb-126c-4c60-aaf0-626f5c17820a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b4224d96-af95-4008-9a96-9ae04b44913f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('38061696-b53f-42a9-86c0-77b7196a871a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e668cce4-9f01-4c71-b28c-79859e02971b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('594d657f-567a-4e69-b28d-f2b79136ca2d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('99c49e4f-cfe3-41d3-940e-915c2a2e9641', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22600f05-6955-48f7-8930-c884c9c31b06', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d7a0d94a-c274-439a-b500-0f69b13c49fc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b28425cc-f859-43db-b3f5-64b5fb6a668b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb7e6ebf-472b-40b5-9d88-47263fdb01cf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('de1d831c-b96c-44fa-80a3-725856c6f998', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8cc95b98-8edc-4652-ae4b-9752d3cfd6b1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c573267e-79c1-4e2a-9e95-55613006a3c8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1bcffd04-b60d-4cdc-8fe7-df9bd04caf47', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6ef557f3-0b1e-41e9-bde7-8abea686f965', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7637bd59-9da5-4cdc-a37c-dd588769d092', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea1789f5-11fe-4ec3-8d12-2623ba592c7f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b66e76e3-086f-4edd-86f7-b052ada8397d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c1d3e826-4d68-4ec3-b3c4-5617a1c14371', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('32defb6c-2a81-44f2-ae79-7d8544d807dc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0144b94f-8302-4eeb-bc90-d09e06966ac7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9e5fa680-2abc-4f25-bb22-bd2fe04fd860', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6587000d-2225-474f-a5c3-480188036398', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('353d7a47-2248-4875-9776-469e7a028cae', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0488a5bf-a825-4105-965f-3fa793d5b9c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c817da8-f355-4456-8074-7bf433924285', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2d7800a6-63a8-4017-9613-6c693d3cd171', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f32f51d5-3384-426e-a1c1-b5b6a263b647', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2f06897d-859c-4e56-b9c2-947d128e3d63', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a7ff4f1c-7c33-43e0-b264-37339141f7f9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d6a853b-5d93-4400-ba4c-a28a96721af5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cb9db0cb-6a60-4f56-85e9-97ca9734071e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b70eca31-fcf6-40f6-9792-2fdb66bb129b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b38a6e56-e439-44d2-9ed6-3223e21c6224', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95f09796-be4b-4b39-a759-a1f5a4fe54fb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c3a212dc-036f-4e84-84b9-6e7367b407a1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e97003a9-9162-4142-8d08-814e6c8fabd9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d96f1d59-085b-4c42-9e01-1513b232a067', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8d23634-f1c6-4a13-bb39-bae8e187df04', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f3e17013-eb06-49e1-94a8-2e81e0f8a706', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1373e547-4804-4c8d-9014-ce51c65f3a06', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6712a948-ac81-455e-8d87-cb05438ac85d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bdeffe17-405f-4ad0-8131-82728ea0e382', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3e298df0-8c98-4e48-a103-cfd3bbe2bec6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('afceedea-4a23-4f6f-a0a2-a210ac148935', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3f156460-0b5e-4e31-9ffe-bd27ad172ade', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9fe16585-5125-43c0-a683-f4d1579f784b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('957da54d-43eb-45d5-a3c4-34976d178bf3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9405dc92-3dc7-4f4a-b799-514ce78ac05a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b519921-7548-446f-a6e2-0986f0cec622', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d013dc5-c320-4873-99bb-d3cbd287ccf5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c561605-0895-4a2b-b850-9572156e6635', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08008ffa-675e-46e6-8f5c-bbb701d67fd1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8bfcdf97-8c34-46ca-8159-1314cbb42105', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c8583847-e84a-4286-b04f-368c61118b00', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8c41124-ff96-4bc4-b3be-d0a8091128b6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea2e5ea3-6e8e-473e-9bca-3972c30c727a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c33ab3ab-3d3d-44be-987e-9f1ad950f25c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('84f70526-107d-4b57-b7c2-653c8efc2737', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ede31012-fbaa-4a4a-b5db-001a2ded08ea', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2812b2d9-15c6-479c-b59d-bf980f4bc9d7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dbc52a0b-fe89-46a8-89a8-f155a437fe07', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b29939d1-67c0-4527-88fd-41812023f402', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cd5218c0-fc28-464c-bb9e-ea0eb9698f66', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('10cd909b-0099-491f-9a73-0cf1d7765f35', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('db6edaf5-7e57-4e26-8172-20fe06d19e16', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd7f4de4-1435-42c2-a275-b56e49670e52', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f936257-6096-4792-a496-b92e46d93d0a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3086d58a-42c3-4c88-ba4c-a1025e79218d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('814e38c8-c053-4c27-9487-997cf318a550', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c123b9c1-7755-4fa5-a0c8-ab6bcb0c7156', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('529abd87-8855-4eab-a795-a83717bfa4b1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e51c89f-6101-4b6e-be17-53df018b88f5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6aa26a03-2515-4b88-97aa-1d100dfe872b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('de10229b-be9d-45dc-b1bf-8f832ebffe68', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8695131e-a5fe-4e01-81da-99769f924a12', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('779e4c3b-97f0-4218-8eab-5575a6afa54a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('10063dba-d6d4-43fa-ab89-d682c47a91fe', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('70cf4eb5-99e5-49d1-9c03-70316381bb21', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1b453f97-a12c-4d51-bf95-2e782b425385', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cf95f6ed-2e24-45ae-824d-8cc58ee2c2e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3b195996-371c-41e4-9b66-a50553582e17', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e9ae339-2166-48b7-82e7-f319413db079', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ddcd1293-8e77-4cef-91ac-9abfbc2bcd44', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98d81696-7c71-4ffe-bfc2-1fea37613440', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('43b09570-1e0c-43b9-811c-4aeb27eba284', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0f5c3f08-d249-404a-b740-d759fced2d09', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('756acc01-691c-46c1-b2f4-53321cc442a2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c0656b5-472b-4859-af3a-b8f1c53231a5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8ad792c1-10e1-43fa-8d5a-a6f3810878a2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('75550e48-c62e-4734-9406-ad720b5b1f90', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f3bf0870-b546-4607-a032-a3da135dda48', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b26cca89-03f0-4498-bf64-7385c0b7244a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9998b7f8-aa0f-44b9-813c-61a2861e242e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('76968391-174d-4530-b310-1244c4b1897a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7ffabc42-58db-42c2-a3cb-e4ed830f47af', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('863eea7c-8b49-494a-9654-9963f2dbb4e5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b67105de-0348-4d4c-8ccc-aab9ed905eb6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('11a4c50e-451c-4041-92c6-671263f82f2d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a78188dd-3129-488c-b6e1-4889725f5215', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8255ff29-5961-496b-9fda-c71078e47e51', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19382a5a-b982-49ac-9005-9358fa7a670a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fe0228ea-649c-45a4-b729-181aba7f3294', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f218c4d9-d10b-4445-b381-b73a71f5848c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6ebe0c4d-1649-4d08-897e-805019faced9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5fc0f70-790b-460b-a072-d1f9c01bc7de', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5242e0b6-12e3-4a59-bf06-de114cb69ff4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc09e45c-99c6-46ff-a51f-39de6d561c93', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b8350678-d30a-422a-bb5d-79c65af2f890', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('87567caf-5abc-4511-9191-27dbdbbee88b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c85e8116-355e-408a-93fa-c699da2a76f3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fe9a533-2cd3-4433-811c-fcc415acdf60', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3de42185-1e32-4936-b305-d990b85c45c2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('359d8691-dc07-4b5a-9179-0f78927b4660', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb8fc553-9dbe-4ea5-a3ea-02d129841f68', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2698d560-1c07-48e5-9d9a-78ccfb2c0631', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('21bc4186-042f-4643-bbea-61f44563225d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7ceb0f31-aa57-433f-a2e3-0408c2b88b10', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0726dd6c-118e-4cbc-9077-d4dcb0e61643', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('24c34e16-c5e6-4571-b850-fb64b5ddb61f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8dfb5e53-1554-4e5c-a045-85121ce4bd71', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8aa371b8-dd2d-4471-95ae-149e30502e54', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('13a3ca39-6352-48e1-b1fb-82f3fc5558f2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d04aeefe-4ba4-466f-a563-b811674c6de9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6aa35ccf-fc0c-4fa9-baf3-383bd7c6bc42', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e5871fb2-3928-4139-9468-10f0f12d5e5f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('12bf1e90-3965-415a-b2fa-de48afca81f5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('834d7138-e338-4517-aacb-1c6319fa34d8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e3026ecc-4a37-438b-b53e-e4ac2d4acd87', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6409531-6513-43a9-84a7-eff44b18285a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a9296dcc-a040-460e-9319-d93938975fc1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7b9008d5-0555-4209-8594-8d2c11e376d2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('256083e7-90ac-4f38-9bc1-deedb0f78d2c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c470f55a-75fd-4754-95d8-02db7679b5e6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('306c497c-f967-41e4-88a6-6d357955a6b4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f93693fa-7dc5-4513-8537-be9541d6e5dc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('33a45f49-ac74-4444-a193-2ed1e0be110d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a43a17b9-e207-4edd-9184-790b10b105ce', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d5a60c82-347b-4ebb-b95f-afff297bf966', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b93cca78-ac4f-497a-90b4-2fbb41ece3a5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('78de8932-0d41-49a3-bd52-4b01648d77c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6e7feeb7-4891-4ea3-96b6-00d883da37c5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1ed7ff07-778c-4920-a550-563b27223228', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('73fbb1f4-99ac-43f3-8d7c-e032f636754d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('57083628-836d-4f19-9359-5fb11537f81d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7db53bc9-99f3-478e-abb0-437dcbd32051', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('65238cdd-b9f4-40ce-87db-581432f3c7b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9771d06d-8352-404c-aaba-743800e621e9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('31b17fc6-f132-43a5-8e48-652c48306331', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b34392da-5070-40dd-ab44-d411a9742f6d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e37e21bc-4d4f-4d41-8c24-399be1680a15', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aa9b0636-bcef-4296-bfc4-2beb3c99da38', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0d96a253-347e-4903-9db9-b362335e4341', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1350b6fe-91ee-4c79-bc87-e2632a01100f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba80c834-f5a8-4243-98a6-9a3be63c4f47', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bff60077-ab16-4e5d-8667-1ad2b801b961', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('42f0c634-d86b-4129-822b-f103cd6e0755', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b36563d-caee-4170-b444-ec02ca919165', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dbead323-2088-4b0b-ac6c-599696219411', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b6f28163-8b15-403b-ad8e-8322ae8bb5b9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cb295fdb-e294-4b05-944e-f0a4929ebeeb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9cf4d386-c968-40c4-8af9-401c58cca6b4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f3af3c81-a512-47ea-8b47-0386291e6590', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('14b3a0c2-46d5-409e-bd0d-ff369c37950a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dc8ae2b6-d20e-4592-8356-3547bcc58f80', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d6ea4d88-241f-4430-9590-918a5de2a3d4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3010c421-5c96-4f0d-b214-c773e0915564', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c038c2d-e3f8-4593-9733-0e1d2c85e318', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('270aac69-03bb-4429-b925-3019bd92cf32', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7d632200-5506-4856-a3c0-d806b1ee708b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63a0e010-3a4d-4ec7-bcd5-2fa63a1cca23', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc2159a0-53c2-416b-9daf-506258c420e3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9de4eb42-73cf-4178-ad43-0bc7b9042c76', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f101cc07-ed84-4e34-9f70-62ec6a646e81', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e1cd9ef3-11e4-4907-bb78-b30f83f576e8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1d4c6f1f-200f-4a68-ae7b-6fda13687e41', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2877af8d-ece8-4b33-8b68-a4985caa2635', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a4b7dd17-bc12-4152-80e0-4186caab003a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6ec65964-76d1-4e7d-aacc-6a18e4eadf67', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3dec9bdf-06fc-4a27-b26d-5918ad1e5990', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7e71f107-6953-42c7-a560-dc9036094198', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51bb98dd-9201-40e4-b008-221337eeb471', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7efca22b-d9ff-4331-a718-ddfca5ebac59', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85505863-6857-4ae9-82de-f9394eebd7df', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9a93e3c2-b1c1-47d1-8761-0cafe9b42917', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ccdf92f5-ebce-4d9b-b544-e470959b498b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('307b971b-39bf-4a5d-8595-ad080abafbb0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c3aff634-452d-47fc-954f-9edebe3a0c74', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('37dc0f00-4620-46dc-83a6-3d64cbc7a1a2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('06917568-e508-436a-a50f-246ea2afe064', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('84fffac0-e3e1-4374-a4e1-6d16b91d9e8f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b152c130-be97-416c-b531-52656dd3c38d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7a5ed45e-7096-4f48-a0d9-83df51f3349c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d6c011ff-bf38-4f09-be3e-45f89eca1ed4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2395c78-9098-4d15-9ac4-b330a6802390', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('52fd5f0b-55be-4e14-abfd-6b94ff5b830d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b371c978-c2d9-4b06-94be-a0944f0e8b34', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a81d830d-68c5-44ea-bd6b-968a28f90197', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f8fd6f7e-9507-47ad-ab42-fbd72c3718f1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a64973bb-c814-4af9-b020-99f5f726dd24', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aa3db109-7ed1-496a-9490-62dabce849e2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9fb3f5e1-472b-4679-a4a8-099557352ec7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c2537c8-eb2c-4da1-b78e-071377668767', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('909ff58a-4c4c-410d-a3eb-f17cf15c330c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('07b606b4-e386-4d2d-8ecd-438aa4b3cd80', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b643877-6882-4d24-bf51-fb39d8a59287', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce71b519-42cc-4674-8bc0-a2df3c13b6c7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('425b6cf7-172a-4e48-9f66-5592d4e25a99', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51982882-3575-40c4-86a1-c05fedc436db', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5b5433b1-b6eb-4034-841b-559cba014f35', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5ce74841-55a0-48a2-86ff-253dcfdf8a6f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9851392a-7c6e-4642-881b-dd7728556b86', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fe903d29-2b20-4f62-8973-ce885b0d03ab', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c6415c0-9900-4de6-9459-e4d50b8e9ae4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6035bf8e-466b-47f7-a3e8-96bab2e8033a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fa80b5e8-d9c5-4d4e-b7c7-3eb28a90f991', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1326d07c-623b-40fc-942a-659f5c7308ee', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('118e8006-bf10-4b7d-8f07-fb4b8d9de592', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5310f493-97fb-4203-b41b-71423252cc4e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a2f2cc36-6c62-44e0-aaec-b4749ed25558', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('09d8befe-d786-4023-b10e-5479f6d09bc1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('03b9f057-a59e-4253-a83a-ed4d7058a663', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('252d4677-4f71-4719-a287-37245b03a8bf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('108a7577-6cac-417f-a0dc-84c799c54797', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5367452a-5726-452f-a76b-8393cc5e6689', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4538eaad-57b6-4089-a058-2e7b2adfc2ec', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1a32ebbf-8e70-4268-bb9e-dbcc7a501b71', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b8faa38e-6fff-42fc-a1ce-b84070077a61', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('af6f87de-0aa9-4320-b5ba-96a8ac23c9e6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6da9d98a-3318-403e-a948-bc33efe3d5ce', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9821f69a-b029-4a8f-b1b3-229517380f60', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8bee7b6c-05f5-4538-baf9-452d909f0657', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('03245b58-dd24-4cd4-bf3f-d9ba51a69810', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ff171f90-f6f2-4c7f-9128-051462cb2368', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2c0faec0-6d09-48e9-9ba5-ef060e4d5f6b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1b1da9f7-1fb1-4b94-94d7-57275b028d54', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('94866c63-1d9f-4b00-b0ff-c6f48c5d6462', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('871fd02d-def7-4c83-b40e-23029a4019cd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d86f4fc3-58a6-4464-8836-4ce8b34f25c9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ae26c1c9-ca79-4a83-a050-0eaab121ce3e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('11542ad4-cd41-4d26-b778-a25b29175f7b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e6d44cf8-f6fa-4138-8410-982613c62c49', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dc7aa55a-ab16-47eb-a29b-79e64328fa31', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('37c59916-a966-4dca-a1e3-0cffb78ad141', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08963816-c027-42e1-80a8-f55dcd6a02aa', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b546d5b0-59f6-44af-a54d-d8e3097a3640', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5e3ac214-0f11-4af9-b637-50ff3f841b76', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85d1d5a3-30a5-4bab-9670-878abc6bfe54', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c2ccc14e-f11b-497f-95db-5397aa38012b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('36490d00-f5d4-4722-b285-9cac45e7dd5c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba13ab33-99ee-48ef-b205-73e9adea9651', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('891fe7ab-2113-4f20-ab6d-3d81cca0941a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('918840d4-592e-43eb-afa5-ad6ea37043a3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d48cd569-cc1f-4f27-bb9a-35154e5fc0b2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('10ff5603-7bfa-490e-a468-6d231db02ac6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1ec552f6-834f-4b68-ae60-6d39e6d887e7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d53e3095-38c0-4be0-b7c4-17d6c505c370', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('82982647-714a-4203-b8f0-3d9fa5d22b4e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('39a2c817-387a-4a54-a751-6dfc0d781f8c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('76d74da3-9fbd-43bb-9083-093a9254af2b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0303b9f3-8860-4ebc-b808-d4d2da18f5fb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('09cb2efd-3998-4b84-a315-788b6375ffa6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c17186dc-564d-4f82-914b-202ad8bc9941', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5c5e2c73-6a91-4b38-a290-fb7fc94d6cc0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b05450fd-5e5b-4aa1-b334-0b886ced9492', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('708ff719-70c9-48f5-8664-dbf49352d261', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2710f7f0-f352-4e71-a527-38076d6966ce', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b012ee61-8155-4fa3-bee0-9a0918452bae', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7fd8da11-6a47-4ca3-8bf3-9713a6ac0305', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63ab27e2-5a5b-483e-8346-0024da814b06', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6c83af72-d5d7-4076-b7b6-33ca23c80ff8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('14fd3310-5109-472b-9eb8-9b3aac0cc5c8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8833f9cb-d000-41ef-920f-6e6ba586c65d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('49e8c569-1fe0-4215-8cc3-698054ff896f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a351e412-5f16-4c87-b09f-6c0290e20b7c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e190f5b-0333-4f70-aabc-71d2e810a712', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0fc0933c-0397-4b0d-ae81-18c41d3fe082', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8eb1d02d-d44f-42a8-bd93-a05174ce15e0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('133a7879-3f1c-4daf-8b16-9160b4477288', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('77ef9867-e939-4d36-85e1-4a573c4a9b55', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cedad28c-ea54-48a9-b2f8-e16a29ec56a1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d2ef2562-a654-4af3-b1eb-6e8bcd35c03e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7377295c-c6d9-4826-b712-ea5df5c3d8d1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5ae15451-1a59-45da-b59d-02884a418fc1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('638a0990-bb30-434c-80b5-65f3e33732f6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c0844f33-c3b3-477f-9321-4b342474802a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0de0bb80-9691-4f70-9bdb-53a862399dc1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c8d78c39-6d4d-48a7-96f8-80fdc50b2059', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('84802890-6128-4134-8ad7-667491cfcbf7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19932b77-d4fd-4664-a0c6-ff8fb707f697', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63eb26c8-3d39-45f7-b2ef-5038f301bddc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a71abf2a-ab11-4bdd-8591-6977673bdc32', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fadd73e5-eeca-4f5a-b07d-998d11eb411d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6dc07a2f-428b-4621-9f39-8679a5a5a780', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e1cfb24e-d3c2-4279-b1b7-0e037766a0c3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3c82a048-8d56-4f34-98c4-a20e193f815e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('47388b74-46ec-45fb-a817-031c959a6c2e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a9ce43ae-4dd7-4ee8-bf8d-d2f3fba4c803', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fb0b7122-f782-414f-85b1-c1df876a3441', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0195bb79-457f-42a6-a21f-ffd238256b28', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1230adbc-b61a-4ba1-b298-c831c2862e8f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8280b446-c17d-4d5f-aff5-ab391cd0af09', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8c70ecf7-82ce-4661-8cc5-0fadbcc4151a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('53e80cc6-7e19-4c55-8c1a-3190844ae734', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7aceef4b-2faa-48c5-8355-72db528f4822', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85e6093a-5013-45c3-a756-66e50d03b6bc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('24fab1b7-ae06-42e0-8746-4754b526994d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7044a856-3670-42b7-9719-4a8638fff92a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('13d82035-64c5-4ca9-a85e-988bc4a2eb4d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('20f04373-bbb4-4b9d-a89f-d21272d75d59', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('62ca73f6-89b1-4113-92ba-a7823aabf31e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('367f629c-223d-456c-98cf-ddf6600d5858', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4c98fcb4-e0b6-4692-86e5-dabb78af17ed', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('740e371f-18b1-4e93-8408-2fcc777b7da6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cdc318a4-f418-4564-a38c-f93562dda048', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2c15e623-a22a-435b-a125-3edbf2a9b5f5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1c9c5558-dd2c-4293-bfcb-0160e981b6e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ced737cc-1da8-4b12-808a-13e36b8bc37e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('79ef402f-0c51-4ae0-a0dd-f0a09505a273', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('19241a87-0b31-4156-a479-cdb61cafaa66', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b67cb5e-3570-4ca7-945b-94f3390bec81', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22b95a69-d861-4d90-bfef-a9c3f4ba5d52', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5306f8ae-55c4-460d-a133-45f8eae30eb6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a1ad0f25-f3ab-4bfa-8e4d-674d7ddc3ae7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('39500fd6-4dcf-4c33-9766-c9b4071e4754', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3f31fd85-c31c-4258-8219-2ed6f7a38f29', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5feb8ea2-f497-4058-b056-dd96514c70c5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3461faee-7a67-45d3-af18-7de8686c381d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('164e7fa0-ccac-4331-be5a-dc965b1c31d6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dbee33c8-80d8-40c9-9d16-af5c99aea9ae', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3d17a863-17af-48a5-a6aa-abc815209773', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0447c01c-fae5-4c80-a59f-a9f330321b9c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1b4208a5-e7ba-460e-922f-a9fb5c7e79e7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fd1b146c-609a-486f-afe5-c87430e1be15', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cebd9ecc-f841-4d44-a3fe-3c82827f2918', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d09b10a6-f74d-4e87-898d-851cfdb9dffb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ac3ee728-8957-4b2e-91d7-9f7a0e543931', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3a1e0eb9-bf91-4bda-b804-8707d753644e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('30b91518-31ef-4b3f-a539-c1f7566e0c77', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e9971fb-270c-4897-ae63-50f457d9d0d5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fa9a7713-93f2-46c6-b3de-9d6e42bce983', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('052b4092-a5bf-47f3-8ba2-0734ec9129d4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0caafe33-8257-4550-9e75-c8a828d5dbc6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4c75b994-e714-4781-a51d-6f582ae07f6e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7f74a25b-753a-4534-bd83-0db07cc6df2f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('05a6b2b6-58dc-4310-bcf1-d923168e2070', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('64229d80-11aa-4910-9e0c-a211d9a5ca95', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9ddb3c98-f345-4f59-b067-7673d0e06673', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98f81765-6d0e-4cb5-ab49-da912f668f5d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f4bed22e-44be-4ce4-9d95-5d9be630012a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8a7273c3-5012-45bd-9d3f-72dd52163117', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8772af22-67d6-4721-bc48-20f841f171e6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b31618ff-d749-4aa9-86b8-08eb2de9dcac', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2899fdb3-40ae-4885-8d6b-7c0f07493ef8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9b229b0a-e7b9-4fce-a134-c6f5199ce495', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ce3d8199-1a11-409c-8f0f-99a8344f1d1a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46ba8c49-58f7-441b-a7c0-290a9f490a1f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1be877de-9e9e-478b-855b-f4f0e6dfb842', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ec3bede7-5502-40df-bcaf-d2782c15ed50', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7a48ec29-24be-4d13-b788-264eb6fe6327', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('98c6c409-250f-4977-89da-f3c242f4be8b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bf5371a6-e09c-4484-b57c-62aa6befdd0c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2fc229bc-25f7-407d-bdfc-e9469c17ca34', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6093331c-adb2-44e9-baac-ef073278751f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46d04d79-5187-44ec-8f30-e6f823bc47e6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a0cf1824-6284-4031-980e-1df923d144e0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3817a2b3-7031-4489-8c87-23babe729843', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0a93387c-682c-45d7-8a24-e538678f5cf4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d241e268-fffd-4d21-9936-819ae9975f85', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('86514079-9959-4ffe-9563-4be364780b39', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1bc97522-8adf-4246-bb4f-9a870002fbd4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('94fb08b4-d5d1-43a5-a395-b1e261a46e0b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7ee9690d-ebff-4afb-95db-fad387eb4255', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d6e4ad57-a163-4508-a694-99a87eeeb986', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2d00deb0-bb73-447f-b867-71be2d2dbfda', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5eb167f7-80c1-4c71-9c63-b9d6994ec251', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3a64d35c-f155-4420-a87f-ddd771f7e500', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44c0b607-7d0a-4701-9570-8d339189020f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('238a91bb-2186-41f0-a97b-6e4c62a2c6a8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('91f36783-f411-4708-a88e-b30fb94d849a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('52c74fa2-27f4-4046-8712-759b3f47e48a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0dc256f1-c7eb-4c52-95b6-a05ef1f92d4f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2a60ab65-5d4d-49bf-b184-3b1ef563bd62', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8b30e218-5562-41af-82ce-bf3f633d1f3d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('553adc79-d3f6-4b92-88d3-8c9328e5a616', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('31a9442f-92c2-4f7d-9895-a7095ee96952', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('832cde07-7e08-41a0-84e0-201f12393e15', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4e1db019-7622-4ba1-aec7-4046419a7b28', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bacb714c-ac84-4f51-b8e3-fc74b27e1388', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4e4469ab-f0e8-4927-a374-33384a97811f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4f6ce070-55e4-4d2c-9429-5d4b3fa25077', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('274595e4-31af-488a-997e-688d10886a47', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c110be44-7852-4eaa-b52a-c87a93de1076', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b9ad5d7e-cf8d-4265-9271-2e32128b69d2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('596f965f-b224-495b-9f5f-5150af69979f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e77c42c3-559a-44af-90cd-304eab1646a5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba6c1883-e891-4628-bea0-78b9787b1403', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0ab92d43-0a98-4d77-9f65-44d74acfe5b8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3877cf69-dfcc-4ff3-83a1-65ef1471f919', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d8fb33e-f5de-4716-a301-a753f59c5aed', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6542fe1-149a-4244-b812-18ad82ff555f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('80da5984-53fc-4439-a4b2-2aa030416ddf', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2715a520-f38d-486b-9053-055f6289c966', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1a09398f-873b-4c9a-9392-c129ccf0d636', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('46a6fc92-c738-40d2-be20-7762997fdd21', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44074e80-79cc-4965-9525-29ed20419544', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('201bce64-1c53-4047-bfd3-1892e4bb545f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ab127630-3367-4898-b0d7-f3ef0f6fb7cf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5927cb7b-54a9-429d-a229-d3ab87cccecb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('53f0c6bb-a76b-4f8d-81f9-a476c9106436', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b2c4c782-4afe-4518-8c92-0de8c70b70b2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5a04d74f-230c-451d-ad05-3f08d0e95b0b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('88d7ad95-2568-4cfe-8f1c-e09ac9fe8983', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('32326817-2750-452c-8898-bcb42c36d85f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dd52b6d9-4a90-4a10-9ca8-3d8094a0aadd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f7c2a405-965c-48a4-aecb-4312952d072e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('138ab6b6-1b04-4565-bbcf-db30047e0050', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a67d167a-e0da-4fe0-b2a1-cc320687f44a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ab46de32-5a21-4029-b5c2-517f6d6002c3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('beec505c-c47c-46ff-bdb5-7fe04a5595c6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d5048fcc-cb35-4f37-bfdc-611473026b50', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ebf101f3-6206-4cd7-a5df-276dcec51cba', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('31faa035-267f-46d2-b9b1-af688c393431', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('13854f26-4d9d-411f-a6a8-d1cf8c267a32', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44900785-555c-468f-9aa1-277c191fc3a6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b33fc20-f3b2-474c-9d9e-40be8240e900', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a24b3dcc-92b3-475f-8741-4399f604e189', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('36c7d299-20b9-47b4-a2ed-bd7031ad3dd1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1d6da0f9-048c-4b62-bedd-5f4d4d35b284', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('95ad7ff4-f585-48c5-945a-1a87c3bb2229', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eebc57f5-8fbd-4665-9328-78b0a6600478', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1be5be35-a23a-4f02-967b-f4a7237f482a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cf88430b-e0a1-431e-9912-098933e6771c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb9181ce-7b72-4ed9-93aa-49eb66db32eb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f9768956-c483-4cf1-852d-b6767a8d96cc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('12a30425-8c0e-4e0d-b9ae-da96e2776217', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('917b274c-a8da-403c-9ac2-5be884f4a47f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a37b1549-de63-4830-81ab-816dbea5ddf9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7bddc04e-775b-48f6-acb1-c1c9e638f836', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('283a7da7-7cf5-489b-bd81-a370cd694f3a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d8668032-3755-4ef6-8ea7-7c34e0109e25', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fe2d0171-effb-42e9-ad87-d877454fa221', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9dc88526-27f4-4c56-aef0-740429a8c457', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c4f3311d-618c-4e1b-9e0e-925465a5f932', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ec817efa-d1de-4264-91e4-608b736b59fd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f276aa53-a904-46ec-863b-18e593fd2c3e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0fae86ec-61fc-4f23-9713-a51f3f49505d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('17df9716-97f3-4970-813b-d144044d718f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('57070af3-92a3-4285-b6e8-8644989f8fce', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('087d73fd-3c94-4735-b59a-189efda4a80e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('82813289-dc57-4c85-8c73-8e7f71966bbc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6d7c3c90-cec2-472a-b143-3f730bb92d11', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('54ab8484-47e5-432c-afd4-7791561e09a7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e9f7adf-90bd-4ec9-bf40-82963cd51410', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('846820c5-9147-4f79-9b06-62110498d191', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d5007585-6703-493f-a24d-f99f4fb1b09c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7cfdc7ad-f7bc-42d1-9b72-ce871adf665b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('330cd455-c002-4416-8074-feb6c6b4849d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b0f7eade-7384-445b-9f6a-76f19007d9b7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2eddb4e-842b-450a-a9a4-54a3875b33c5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4a4b0f7b-8506-4ed5-be19-7c0baa476c45', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('256a2cac-4d33-46c0-833c-fd12d91af365', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('815ba931-a309-42fc-8865-b077937d4bd5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('34bbf849-5720-4440-bf30-378dd9748533', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d7dd1750-2c6a-48b1-bfa7-ad708c3df73a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d252783-00e1-4fec-a661-ec1154d98a2c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('20af1fdc-7bf2-4f7c-941d-5294057a2148', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('830e7013-1330-4974-925e-20e142b148fb', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85b69ad4-c6cb-4ef4-8d96-94abd80c9352', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d0bcff97-900b-4660-9245-993dee9485eb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1d4bc5a7-76c0-49a2-93dd-22e0554d886f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('36e09c9c-05d3-46fd-ba19-91e3dbb1ded0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aab86d81-273f-48e2-91ec-8379a4097dea', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ae3d0091-aa98-44a3-adbb-2552b6179e97', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e16ceaa4-25a8-449a-9d9c-59a87fdc228a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5885b073-ed04-4ac7-9f4b-664507df0de1', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7ac91a3d-9409-471f-b6f6-8f50ea03a292', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1a2692a7-05c3-433a-990c-54a184a91661', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b0a82131-7ecd-4685-be5a-89dd1c4cc7de', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b27f42df-1a56-4626-a3cf-1eb46e7e8770', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0897f76b-9b66-45ae-a884-5c7edd121433', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aa81a9b0-86ef-4ebe-98d3-54359961608d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51727d0c-b455-4171-9bc3-23ff5c73ed81', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d79f2a1-1130-4416-8c72-b6cc85740644', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e062ff79-b8a3-4f75-8e9f-ae3b31f92022', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44a911af-8a2f-431f-9e1e-004746901334', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('af3322a3-54cc-4315-b815-607a8c362d2e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c885871c-5f3b-4a02-a550-f962132d898b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dc730495-43f8-42be-af37-a084da0f568e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8ea7ce48-b945-4053-8255-be69b2aa688d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cfdfa9ee-7570-4a4f-bad4-0e18fdff5004', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3df1d2db-6ed7-4d0a-ae22-6e90140ca432', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f7eab9a0-7f14-487c-9434-669dca849b40', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('656d1c2d-2ad1-42df-9774-62e931e3bb0e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('819393f7-e96d-499b-8663-3adaaf1b0a73', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c142ae8-d190-4c1f-aa85-24f12eeefc9f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3abf8555-9c07-447d-af5b-47bacb517ad5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f3d00781-37e2-4b9a-8107-bdc123df38d7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('89218636-1f65-41ed-b729-d5967f17d33e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cbff4b85-4722-4e87-8adb-34923d9987c0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('52ae0923-db99-48e9-95b5-d6884b6d4642', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6f009e98-a9a4-4d93-92e2-e955d04bb7e4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('58769cf3-490e-4d20-8255-3e0854d8384b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('212a3a64-9d05-44ae-a394-e335cb98cdf7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('21a21577-f8e6-4856-8c80-996000f525c9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('160977ed-ef11-43d8-9ff7-af86c743d2ab', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9a4fdac1-5925-464e-848b-1532c780ebdf', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d94fd859-6e03-44a1-ac1d-059ed72e23d3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e108043f-3dcd-498c-9560-cde4ed35680e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ac5044f1-1f16-43fa-afe2-24d80506ae5b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ebb468b1-047a-492c-a76c-5031645e7824', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a2effc4a-acdc-4660-973d-e5313a9df528', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('42491f82-8223-4dbf-8660-688e35fc5694', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aaaf21f7-baff-4867-b84f-36a16f0fcbf1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66b246c1-b389-40b7-b238-48903a3dae95', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ddcec555-0f99-4cec-9d45-b0ddd4e7fb26', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('76d3e38c-0889-4169-814d-5f7e36c0c767', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4d9e1a7c-84fa-43c7-a1d7-e898b20df129', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8c236a58-3fab-421e-b8a3-6c9df1269fed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a4b5890e-c3d9-4eda-8a8c-3ebc20a39061', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f35bc896-c93b-42ca-994d-4f5f4e2e5b5f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a5aac82c-b1b9-43d0-90bc-e7c0e0341e1c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6372e9ae-f522-468e-95b5-06a527854b0f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('35f61da7-bd75-4482-ad05-d50ba7e099ca', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3c22ad48-dc16-4af3-8bbb-54ce2b7d91d1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d5009976-c8c8-4d64-b39e-08f019999ae9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9f2f2eae-80dc-49c7-810a-69b10fcc3421', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('42557861-103c-4fb7-b3c6-0acd3d7737c2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('85dbc28b-c5c3-4914-b645-a36056f4cf17', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('45cfb9f8-8e5e-438d-90f7-6b1ee872c003', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ac1f7518-f255-47bd-bf31-29d3cd2bb57a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b45ba485-ee82-447e-8a4d-42679a233455', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ac9bd6e7-e7b5-4f25-a873-79ff3436fa66', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('52d12930-5ca0-4344-bf72-32faf8dc5d9c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba038cc8-3ca3-4c25-9805-08eef60945b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b5be48c3-0721-406c-bf86-b7dc1d6a7016', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ba8ff028-06d6-4536-8e79-6c46f8e4b9a2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('470fa9af-f292-4516-be71-346b1e987d83', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e62715a8-2e69-4a59-806e-000886fedd92', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0f8fd73f-526c-4e76-a5f1-043e44386cc3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0e0eb247-f0a2-435b-b44c-34ffc5ecfda6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1aa9a0f2-47a7-498d-b0e8-9e73ef9f5b00', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('57130e2a-328a-4402-bd54-a76cb815503c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0baaa10d-4abf-42df-9689-d6d72a9cc418', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7c958983-efb4-4117-a2a6-4a3d35c233b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c9732223-5e57-4d36-b412-91122ecb900f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a1476e12-e8fd-4bdc-a1a1-68177652431d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b12dcf3d-9b06-4d32-938c-209adc18ce37', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('daeaae1b-5d88-45a8-8697-cd2e22e519a4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fd07e597-fc5d-4c64-b491-76a5420aec78', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ecde7ac8-3b81-4864-8b26-2e07cdc49190', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc871f18-a6a5-4cb7-9f23-fee703a845c4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1e643070-dafa-46db-8294-fecd8249232e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08c5e34a-9a18-445b-9fbb-85a3ff34927b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('71520b2b-f697-4135-a748-8ba36939915d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ffbddcbf-8922-4b3f-9248-47b86638a1b6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('07b70014-fbf6-480a-a128-6dadf6ea6c49', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('193ceb34-df58-46b9-92e5-62ce50a367c9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c198dbfe-def4-43ff-ae55-8e0a58f068c7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5f37d6b1-5ec6-4c91-8f11-32f95dac7b9e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('68136a56-de73-425b-bc05-ab6fed1cdfd1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('43c48616-3e31-4bed-9727-f9e6d6447378', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a6a56680-46da-47fa-b5a0-5012f91bb3d9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ca68370e-d560-42ec-bb93-b14df8eacdd8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('48f6d390-367b-4e7c-ab30-c2e7009248a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cd8e900a-3f5f-4b54-abdd-72b79c3f3203', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f47459e8-dfd5-41e2-8b4b-c7999197f56e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cddce99f-aca2-44e6-aa84-b1fc98c35c8a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4386a60e-d5b7-4f36-bd53-1de1e52ea755', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e19225c5-a87b-464e-8c63-3f52a45b107f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ab491da9-8661-485f-90f4-a85c7f3310f6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b0214c88-ae13-4faf-9870-01872398bbab', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9398d762-ff69-44a0-a07f-2149bf07bb4f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eebe4432-38e2-44dc-85c6-995cbecd173b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f1838834-17f4-45ae-823d-cfd97b9ad7d0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('94815866-8e0d-4177-9026-3fdad0866fc2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c9448020-2d88-456d-827c-0b24917a78c6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8b8b38a3-679a-4331-962c-c540eada4c22', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a59c2244-46ef-42ce-9a35-9efeb0a02068', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4556335e-4c02-4879-a850-cc792db27b5b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('88eaec32-bd9e-4fd9-973d-1aaa932c8115', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('62c26e94-cc22-4558-9bee-8ec8e6d29b95', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a0c34da0-2ce5-4877-8172-1306a2599c87', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0eabdcfb-e308-4e52-8c7f-27643332c947', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('14e4dbf5-5fa3-4010-91e0-c56e71623ba9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('359f9b02-63f0-47eb-955b-52a344462735', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('345b8b7b-a948-446f-949a-2a903b460032', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('05d18d2f-a5be-4b65-9e78-8fa91db4c68f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f049b588-1279-40e7-be2d-2e691e8a4090', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a41ad44b-e566-492a-b2b7-9a1ed2bdd18b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('39bc569a-8594-4a3e-954f-3055b382af9a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6df50d79-b958-456a-ac84-a8786f0f18a7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5879bb5b-1171-41e2-bff7-707e18fc0582', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a277424f-d7f0-4568-8cd9-5299a13d0f4e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('66c939e9-0515-4cb0-ab1a-8dcd9243c53f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ad1241d8-512f-4589-aed2-958e1fd6441b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('39a2eb59-2ba9-486d-8146-0a9a4d85769b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('539a38db-5f7d-4bbc-896d-616bd32f0f06', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('209720a4-ab91-4b78-9fc0-ad5780a97934', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('17e8a223-4aa0-4e35-aca3-f381f9ce1328', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a24d0918-c78b-44a2-8c90-965940f30b95', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('10971aec-daed-47b5-8514-f88f9ca1016c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e0c2115c-f70e-4c77-87a7-d1f524f47df4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6cfb3c88-43bd-41a3-9c01-29bbcb67752e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2bb03c85-0eba-4ef2-be45-7bd03fb60936', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7e91e09c-a072-44b1-af1f-bc1e6430d371', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4dc88a9e-38e7-426b-a598-f246cef849ed', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7db8de4f-b7d3-4a3f-b2d7-4abf43a4235f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3333c620-ed65-4a4a-af0b-71106e0b5b30', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f8591833-ef9e-42fd-b91b-f66b56267b0a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0ee9e55c-9b0f-41fc-9bd5-981f124846d3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bf27b482-99fb-43fe-8789-b926b9131a32', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51da6c66-df21-4619-bb68-2538c6ef2c31', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a16e2346-b56a-4ea3-b07b-f5f494b2b42b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1d24331c-d029-4539-8b40-2b891f6a75a9', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7514b6f6-f31f-4397-bb3d-eefe138ebb9d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0b188bb5-5eaa-4c5b-9989-7ccccbc9f2c1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bf58a617-cb18-42a8-b34a-56b584e6daf1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0860ac5c-ce03-4f7b-abcb-562676bca90d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('173a65d3-7eb4-4910-a83f-08ce5ed65583', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d3e00370-8788-4a7c-83d6-693a01ccac0f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fd972637-8015-4a7a-9591-683814d6dc1c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81aefd8d-c7aa-48a5-869f-1df15b4b68ae', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c1f4725e-747e-4d03-8a86-b2f4fa4459ee', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c57ee5ea-1e8e-4a28-bfed-0bd4477fcb06', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2c9d05c-4e79-48cf-8093-e8fa4b0a655e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('79cf3f87-a87d-40d8-a91a-cdd257866de7', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('408d2e43-8fa7-4c98-a0f8-4a52ebcce3bb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('48607eac-4413-48eb-9b01-bd264a9b607c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fc0b7f19-723c-46f3-b40c-a8973fb5cce6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e131dff7-b974-4e12-8324-732296676146', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('99188a87-efa3-4365-9135-700c0899d0dc', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('30ec4923-e756-46cf-ac20-79065a4f36bd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59adeeef-e54c-4b26-8a36-f4dbe0b05273', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0ae403ca-5143-44f0-b997-be330a72ee97', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('01635d74-7e94-46e0-aba2-a1c8d471aaff', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aca34128-8a96-494d-a9e7-4e891208b023', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2f8771ba-3650-43d8-af99-ffc413066a42', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('59e7f9e1-fa76-4f88-9ccd-da4eb105f0e2', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0aa2520b-5481-4d8c-a478-964e4441d5e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('89ac1223-5561-4835-8c9d-681ab874a47a', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f5f51c10-010d-4d5b-bb8e-b2dc353ba051', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d71a8b9b-b0da-4675-a6c5-45d2664c70f5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('03089301-5a05-4c2d-abf3-b95267b2edef', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b32ebf6e-d5bb-4b03-9d03-10bcec3a6172', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b204ae10-065f-4969-aedd-4c25602a821c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fdcc08b-295c-4853-957d-d171b1accd40', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e7101997-a1b9-43bd-93a7-8b24fd506f05', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dfb1ef2c-af28-40d5-b625-9f157f1323d4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('dceec9d4-d2a5-444e-a27b-4a16c01b155b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2d5f609d-aac6-41b8-b7dc-ebb66f4b3833', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3a07b077-aebc-48ad-ab29-6d375afab845', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e4c728ed-535a-40cc-a460-3174b695f899', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b491c0ef-e4c3-4692-94f3-bf13b2dfff8a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2a9d3ef1-e293-4301-914b-0ed781b63689', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fdad2cc6-4985-4407-ade1-857bd91c5518', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e1ddefd3-730f-4085-8651-a24dc88b7330', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1bf68e49-2a97-4686-a8b9-8cdb46475326', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0bb4851a-2274-44cd-85ff-fc4b4710f602', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ccb79609-4c10-4c53-bd5b-3a128e7f7ebf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fdfd2976-fc7d-422e-8b5f-91f401927b18', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4e5c24fc-e3d1-49f7-963c-e386a72be2f8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a8dc5128-f0db-4f0e-b599-a87eeb73603c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0fd249e7-1454-4914-957a-b3ec7bf25bee', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e9daa877-1886-48db-abab-5516000c4d8e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0334125d-2eca-4694-9cc3-abfbb58b49f7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb74107e-cd5f-4207-87e2-69f4d67eb7f3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7a4d5839-8342-48c3-95e1-d7032ce2a6a0', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('eb46cc8c-d08e-4b43-aecd-b0d73b4c7a4c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('232fe9ca-d6b6-4105-869b-435f0b1357cd', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5fcac9c5-86b0-46ec-9eda-fa65d8ae1a9f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8f422852-c9d5-4c4f-bac1-ea4950ea77d4', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8d53905b-418d-4c91-aa71-d4c49184cbae', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('06d170a1-f3a5-453e-9a08-3dedf2ecc0d4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('1ea18a1f-6676-43b8-9fca-20b7e575c31e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2194c042-0182-42cc-8174-6f219e3c4e65', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e5bb95d7-2fcd-4767-a200-c7c48e01401c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f792f250-1f61-4efa-a515-d04af7ad5e18', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b83a49eb-39d3-4c98-8c0c-5a1fb1862079', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0c5a46ce-1c25-4f5b-9dff-5f5be50cf6a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('71c29d57-de3e-4f00-9303-2d51e8c11b20', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('02748d62-3212-4465-8c05-aabc3f919a08', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('adaeb8bf-e22b-4bb9-ab33-66e19053ab31', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0cde804f-7eed-49d3-8eb4-d55e806f8957', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb372939-0891-4068-bf4b-651e8f2a03c8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('88d51826-68ce-4d8a-9a65-91429e00d053', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b04e429b-3f95-4dea-b61e-3e96d114ecd1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('3014663a-10bc-4a8b-b47c-2c805b198d7f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('74b8c100-35a5-4a9e-882b-d106b0656e15', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('702c700c-a440-4771-b203-9c030c1c100f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c73f5078-0505-44ea-b0e1-57390f4d5a3b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('86454239-fb95-484e-9f75-142ee5ca2a5d', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('69067b5f-41d0-447b-aba4-31764c6d6e04', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0017035a-e8ef-4e77-a43d-938cfc7962f5', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a3d6ce3f-655b-452b-91b1-539956c8580d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0198a5da-a2fc-4f7e-bf41-54642325d8dd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('e2f03c7d-5026-42a3-a18f-ce770314c22b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8e019651-e0a0-490f-8592-55c7016cec2c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ca0cb3e0-c89b-45a1-8614-c6a6f7a5e80f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ee5eda97-ff2a-4646-ae01-dcec47a7688b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('41bf1ce4-7d32-4bc9-a240-6f37aa7c5311', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2214774f-6235-4cb9-8713-e2ee51b213d2', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('008b96bf-c732-4063-95fa-8660cc3e378a', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('919c64ed-015d-4a71-9287-69f554378b69', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a8ca5cc1-5e21-4837-9f78-bc4f8aed2d4d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a48e5290-7207-469f-85ea-c5f5b2150d1f', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('74d9ec93-6755-4198-bba3-b900d1391ddf', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('39c84db0-c0b8-48bc-9602-f6371fee499b', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9cf52144-7c0c-4031-a0dc-b5f7d0581115', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a9998fe5-2760-4309-a904-8e4f6787110e', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('81268148-75ff-467a-8d73-b8e4f734d83c', 'rbac.role'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7878934b-1841-4918-85e7-ce853fe8fdba', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('18630744-5484-4f55-94a4-15b6f8a8c791', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7e2d1a3e-03f8-463c-9300-7e0b9bfd0eb5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('23115d61-dd0d-4545-8240-2415ab603868', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('4b8fc5ce-2f77-43cc-8c11-caefef50e9e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7ba7e7db-d2a0-4d8a-a982-4b592a6519d3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('28a1da29-5665-4481-be2c-23484fede329', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ad772eba-1cc4-4973-b407-ee1292c8cefb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2b1bd996-ed42-4b6f-941f-a02115b5c49c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('114ce5a9-0704-4f91-98d1-7f4f2e6d6ac3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9532739f-1149-42ed-bb1d-cac1d14d4380', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('04a9b874-65cc-460a-83be-47366ec3c35e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fac002b1-7dd0-4def-9c60-ce441ae74bf0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d0c2aec5-df1e-4a43-accc-292636a196ee', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c16db138-0d91-44b1-bd5a-b8361d1773a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b299282d-1cfc-41b1-8936-2dcbfe1017ca', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('bb211784-8f68-44ff-833c-3f501a33ad0f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d80e22b5-9ba3-4ad6-a392-fddaa4a5532e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('2afe8e61-bfb1-44c3-8685-bb5390e9ffa9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('d1fb0181-59a4-4c35-a6da-9c4c8c420f4b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('7f04b4ff-ce51-4c25-b924-eda9c80beab9', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f7036040-6df9-44df-a4a4-40b8065234b3', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('aa8c9c0b-ac3d-4fe4-85ee-22876b77a346', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('5612b460-e9f4-4c7f-8f30-fabca1954260', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('793d3808-9277-4bc1-b39e-46fd0b5028d1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a46e7e72-094a-4677-a2ba-b027e117c814', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('34608829-3d7a-475c-b734-f3692e102b82', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('176b447d-ce47-44da-8219-a00244a3d5e0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('22500be4-6daf-4c50-9120-a4d0c6491720', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c772675e-39bf-48b0-b10a-1a2ff065c3a6', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b096450c-b5aa-4a9e-9b80-8633ca2243a4', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('651a87c6-db56-4963-88a5-5dd7b74d53ce', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cf345447-6015-474d-9c1f-2fe7b879edf0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('9654e7cb-b714-4f8d-9a7a-5a2e9dcbe09b', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6eb3f2e6-4f80-4ec5-b121-e0e6ab166e6f', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c7a074b6-6e8b-4570-a8b3-baf483e67c14', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('16c5c51a-6b85-48fc-a19b-b1d0319c414d', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('ef9747c5-e7b2-4a22-b4cf-cb05c7cc0d6c', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('a5de5a65-81f3-482b-baac-4054940ea7b5', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('c32e6121-a5fc-4345-b6e6-26eda31d266e', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('96383615-0c59-4cc9-9292-723a1c0f4a52', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('db092336-0de9-4c19-b5a7-9f035596b364', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63dd3ba5-db8d-481b-8eb5-ee982522f4d0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('67f40c40-c638-4350-a11b-951b0bf73bf0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('0166244a-b22b-4567-a09d-bd113f3430b0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('b969f3ba-2936-4937-80ff-c440300d3f10', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f6d1a800-dbfe-44d3-a939-e168760203dd', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('44a7f281-7acd-4536-a7da-db74fc7d5a30', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('51278cdf-daff-4fe9-90b2-1e651847e0d8', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('852d7666-33fb-4246-b2c4-1efbecba4da0', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('fcc39eac-cca5-44fb-b728-9b4df8aa3874', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('6a568f34-8ab2-4a74-941c-266e28a52836', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('8a4f7331-7bdf-41a9-85c3-5ea327063d71', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('526ae830-0342-4a87-a95f-07d760391fb7', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('08a87b5d-d5eb-4d77-aa10-1afa61c87e38', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('63c07ed8-5b6d-4cb7-b663-6a5ce5e63fcb', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('cc4e1270-9d63-449f-ae27-a492326f72b1', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('f03cc85a-b722-43f4-8d56-a29f1387e692', 'rbac.permission'); +INSERT INTO rbac.reference (uuid, type) VALUES ('16994a15-ef4b-4c7f-b123-e9c2e03919d0', 'rbac.permission'); -- -- Data for Name: role; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9bd819fd-f91e-45a9-b2d5-1da33f69c33a', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c9e66e49-a298-4325-a291-5c6a484b4dd1', 'c80c88c4-fd1a-4ffa-8c6f-b9c4fc050c64', 'GUEST'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b08554be-1c78-441c-87b0-5dbd7378a983', '1c52fc2c-6390-425b-993a-788365e85d05', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('94724e79-a840-4218-a5d6-e669c73ba53d', '1c52fc2c-6390-425b-993a-788365e85d05', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d366868e-1c5f-40d8-90b6-9159123762fb', '1c52fc2c-6390-425b-993a-788365e85d05', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('966e57d1-3610-4b50-8cfd-033a701ba50f', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5228a4f7-f78c-4841-a40d-52d994d21a29', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a22f7977-6575-4c54-8b20-3ae24ce14df6', '53ce9fd8-5798-4ae1-984e-4ad5a2d3ed9f', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('138cbab9-184b-4679-8caa-6d2ee82de3c4', '441d53f1-af50-4e73-9b53-48468700d257', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d3f6b0be-2fc2-4b3b-98d8-e72db656be65', '441d53f1-af50-4e73-9b53-48468700d257', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('644e5b6a-c4f3-4e8d-a40f-6e7fbdb1368e', '441d53f1-af50-4e73-9b53-48468700d257', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ee1f7e4c-6d00-4eee-a778-e936f019b149', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d98fc0d0-9dd9-4aa6-8580-34ebff7cc1ad', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c767e22f-f90f-455b-8733-7e58ca5ffba7', '483c5cf4-8c5e-405c-8f98-8139e80a7dce', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('71186c13-cea3-4223-9a7b-033ba9412920', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7975c82f-8e22-4696-bd8a-fdaf4f5c6a3a', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5abd1ae5-da0c-415b-bff7-ef07513e08aa', 'aa9af033-e564-421c-b235-2dd7d5b96559', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c3163a16-abd8-428c-95d6-420b806f3291', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a6ae3cf7-5f85-4f06-9e52-8fe2763c4c1e', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2b391e5d-6b69-4999-8ede-1885d700233f', '5d8eac1a-86b2-4dfe-a1b0-34858fd04a86', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bc3a8a8b-a276-4a3a-b750-bf7857ad1cec', '25083463-3713-4a20-b579-c1e34d542bcd', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4309a7bf-0556-40d0-872d-dcbb13273c62', '25083463-3713-4a20-b579-c1e34d542bcd', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5034d61c-e9dd-4b48-8dc8-b9279e015494', '25083463-3713-4a20-b579-c1e34d542bcd', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('acc6f8b6-e950-491a-99d8-432ab5f10b8d', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('662d0ce7-6216-4366-9691-cb5e6020e36f', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c16a64f9-5dd6-447b-bf7f-f19d542b981b', 'dbf6038a-0387-400d-b083-411ba014ff6a', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('60ac113d-c253-482f-b057-c83399cabc22', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('36cbc041-bb3d-4058-9ccd-2d608992aeef', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8c7cf942-2ebd-43d0-88d7-5b2c9a52551d', '4ffa7ab2-f9a5-4d68-9d78-c92f5d2920f6', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('03cee890-5e1c-43dc-8489-8ad117941f68', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('79cc0827-439d-4357-8749-97d21830f648', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1cf65eee-3ae3-4c77-9ce0-e156db37da82', 'c5bd22df-9452-49c1-b369-b98c10a90853', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d75237c1-598b-4ce4-8e7f-ce5870f464b1', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ebc79c6f-f4ce-452e-bd14-f02f9b6412cb', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('96bb1170-326f-47f1-a8d5-c6b9451cbc11', '6a90be4f-4017-4bb6-957d-0ac7c92ccfa5', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a14e50c5-8609-4448-8855-5e76818df2e0', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0818dc0a-1fd2-4a99-901e-0dab13697d85', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('461bfac0-a91d-41d5-a96c-4987a67f59f4', 'a8380163-1e05-41c9-9614-a0af334d49ac', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f39f5cb9-bdfa-422c-bc23-2e564025722f', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f7a89449-2ef6-44b9-95df-b32b6a9f290b', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('54cac581-c28a-4727-82ac-0f4af93da96d', '03229434-fc7d-43f6-89ce-892d4fa2f8d2', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a8653567-6c67-484d-9c69-399fd7ca9fe3', '7321b71b-7c08-49bf-ae45-12f69644378f', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8d8536df-c84f-466b-bd46-17e8ff67b43c', '7321b71b-7c08-49bf-ae45-12f69644378f', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('12f0b062-6115-42d3-b1bd-b82a0e31efd9', '7321b71b-7c08-49bf-ae45-12f69644378f', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('77af2213-1fcf-4ce8-926e-26c15a6e6f31', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('76b1b55f-cd51-4a0e-8c4f-003c6411c2e8', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('85d8e49d-9148-4431-a020-053fd4376574', '8f9e5a9a-d273-4b89-bfcf-b9c077e13d21', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('801af8b9-6a98-4758-93ee-1cb6ea634bcb', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cb843eb3-0d44-4099-a3ee-989d1f9f53d7', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b0ccd4de-9f63-4848-b52a-7ad776dddd78', '9b4179ba-a41d-47e3-bbaa-a180b2965f04', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4ca46ce7-a371-45f8-aafc-b7803b821eb6', '31eb8927-f7e7-45db-a350-bece46fd2300', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3b95dee8-1138-434c-91e4-5e28d537fa0e', '31eb8927-f7e7-45db-a350-bece46fd2300', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bfa8792a-886d-4a0e-a6f9-abef9ff2174f', '31eb8927-f7e7-45db-a350-bece46fd2300', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('407bfcdf-1273-4569-8483-5cea353c546d', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c33226f-3c03-4147-93b7-d41d378cf0f5', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('198cac03-a83b-4a24-8559-29ef72cd24b0', 'd5b31ba0-0fa5-4e89-871b-df13e4d3834a', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e1624410-b367-4523-bbf5-59f33582b16f', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cc7fe0e8-d7b0-4ee5-97a8-4029e8283e74', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9eb2735b-2b09-4f71-81a3-3ce8fbedae9d', '825cdd9a-8562-47ad-ad23-58ed52dbbab5', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3e114ba1-65d5-40a2-9539-3413cdc28798', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('31909570-3577-492f-a7a8-c7345f213bc8', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c6f4fd85-d5b4-444b-99ac-3133eabf4534', 'caf3808d-21ec-4391-a57b-ea59eafe2c75', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('062ce171-efc3-4f07-8aa1-3486948ade81', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('611c71bc-4ce5-4a20-b819-95d274f73227', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('febfbe7e-4bf7-4385-834f-017201aa8756', '89f83a40-5d7b-4f33-ba0b-29207f263f15', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('76a7ba85-7f36-4a2a-90b4-41cd89bbdf91', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('29338455-e154-4447-9c36-9eb49cd398bd', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ab576b5-1092-44bc-81f2-5f21f24810ee', 'ed1ea73e-5097-42c1-ba31-fe11480f3089', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ef043b77-f00c-42a5-b628-fa257cbe98fb', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('568bfaa3-d857-432d-accf-ff32377587c9', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6cc9abee-77f2-4e9b-ac65-f9cc57f00825', 'ea4932ab-63b1-4e5a-9965-6f8604a14923', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e6214fbe-8e7a-4b20-88f8-e1c64e3caccb', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b20cc2e5-2836-47cf-913d-d5cb7aec6356', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c2d87277-0280-41c8-b0c1-3c431e7fc33d', '59f3fcd2-ff1a-4a23-86bb-4af58b7df404', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('450185ef-185f-46b5-8842-8e4009576183', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b5c771dd-5b62-4631-85d8-5702e34266c3', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3a8a00dd-e39f-4381-81a3-4e4698dcf29e', 'a84dcd2e-f4fc-468d-a0b2-a8c449cc9420', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fc14ee74-f82a-4d8a-8db6-5b9627563922', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dc6711c9-3fd7-4913-86fc-2bbd48b590ee', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8dca2daf-408f-4e45-a777-a3f61b543450', 'f50adac4-8248-4179-bfaf-26f03d96d13b', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b31f0400-18ec-4b70-9578-0f887d35021c', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a9238907-5ce4-40c3-81a7-3822d6bc7c5c', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('81b01454-08e4-48ab-9879-4b7ea82a0531', 'f4e3fd05-43f8-49cb-a167-91a91640a117', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6954b103-16e1-44f0-9aec-cf5cad98ff6c', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d7925313-949f-4b4e-95c4-23e82e5b2f7c', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('df81248e-911b-4793-9913-0538a12ea820', 'e63e7baf-f809-4c1c-a9e0-912ce0a610e9', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('32e802ba-ffc4-4b80-bcc6-6e913e0e1d42', '7e11b785-e756-49de-a3b3-2f001ea79993', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('408c77c7-1c50-46c2-a0e3-27046473e0a5', '7e11b785-e756-49de-a3b3-2f001ea79993', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c25516ad-8358-49e5-ae55-ccecc2fc9b3b', '7e11b785-e756-49de-a3b3-2f001ea79993', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e8750395-3b20-426a-ba1a-e46eaf62ef86', 'd616957a-e628-498e-b230-be25244d4e30', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c1b20a45-166a-4b7c-bc66-a935f58c19f5', 'd616957a-e628-498e-b230-be25244d4e30', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0059aef9-29f6-46c0-abb7-ae9e8ddc14c7', 'd616957a-e628-498e-b230-be25244d4e30', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c0534e7d-6f73-42e5-aff8-ff9d47e3186d', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a48c6e6e-77e8-481a-bca0-916150b6fd20', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5b97fea3-07be-443f-87f4-9a0764e31215', '65c4d29d-3cfa-4823-b5a4-37321b3e9c5d', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6a826b99-66d3-4bca-8462-e0957149d607', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3f0dc306-e3b9-4324-a05d-1de298db1039', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0a2e5ced-6a56-4413-86f4-b2e663feb0e9', '348a082d-3ca8-44a0-adc2-06a2aed23cd9', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('494974f4-1809-4ffa-82a8-96b26a88b483', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b0fbb802-35bf-4971-92a3-225bd6433052', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('64b677c5-c58c-4a84-95d4-69d005c4a682', '55dd7d96-751e-43b2-afd8-4803a55b422a', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e34d142d-dacb-495b-a937-87ee4e1c09fa', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ad60bd89-f1c5-4ca2-b880-5bbe60da3969', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6b61b520-c228-407a-9b99-47031cd7352d', '6ae4a9c6-0012-45a1-8d6f-3cd6f73a38f3', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('96df783e-4e02-430d-bfc2-ec05e51c17fa', '351d423b-c277-4300-afcd-7cdc9942f48b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ef7dd3f-65e9-4e24-ae3c-d960e47b8b26', '351d423b-c277-4300-afcd-7cdc9942f48b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d0d6036a-4fe9-4823-943d-bc784037a589', '351d423b-c277-4300-afcd-7cdc9942f48b', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ebe006e3-8fa1-4a4e-88c7-50a0ad5ba2ed', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2dcd959a-8fb7-4ae6-9ca6-b1186d0a3af2', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9f4f63b2-6439-4c9c-ae86-305aca317339', '08e856b7-4c1e-4f9f-96ad-6127de069fa2', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1dcac355-585b-439f-ac9b-52566674c34d', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d6bcb4b0-343e-49a9-9067-47ffc922e88b', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0a2c4bdd-2c62-4e55-b8dd-c7a80ec319de', '06741b2f-76ca-44bd-b1ae-9bcb0f29f167', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2e4968dd-1b34-4509-ae49-26525a1b61e1', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('79f6ac07-1368-42f4-a1ae-a9a357a8426e', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9e239542-d709-4bd3-9286-29c94c37908a', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c0087469-c932-4639-9f7c-577e275791df', 'f72c1add-5a68-445e-b3b3-4d4ae33144d9', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0dd9c0fb-8cb7-4c27-b87b-ba17aa6ced70', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b488d259-9ffa-47ea-9494-722a4f97a8c9', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bd68493d-3b5f-4b08-88ca-7c2c04b7e5c4', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('85bc915b-2c1c-41de-a6ae-5a7ff1dd719b', 'c51dfa23-75be-4ce7-ad85-acfc8c0a3b05', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('07e54dc9-9b64-464c-9894-08d88a01cfb6', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('63952462-0544-485e-8e6f-a344be47cc97', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('03613dc7-4ec1-430b-a213-291b587700d5', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('06736882-96b1-4e48-bcb0-b897a5929f8d', 'ef085ca0-2cc6-4497-b739-1668e6acb687', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7a2bfdae-7219-4781-9da1-ed34a2b61868', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('788ffc41-ac92-4dfe-b5ac-0e18e2249262', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('27f136ee-b3fa-4aa7-8806-45e856c2c56c', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6b3fba1a-8703-476d-b6d4-077e0e94cdc6', 'ddb4f0d0-83d2-43de-8024-a98953c1e821', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ed86d8bf-4ee1-4903-bb57-bb178b75e4a9', '9702bd74-e7d9-440a-a210-64905274c259', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('59461651-6e8b-4e92-a992-c6361933f78a', '9702bd74-e7d9-440a-a210-64905274c259', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('00922fe9-7f32-4a66-9e9e-959719b12c5a', '9702bd74-e7d9-440a-a210-64905274c259', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('78721925-7bdb-4e4a-b6d6-a1a2822efcf3', '9702bd74-e7d9-440a-a210-64905274c259', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cee3b153-5528-4547-abf6-0abfb951c3e5', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c7155b13-a749-4856-9832-3b2c3f652e08', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('647db241-3be3-4ba7-b34b-d971ad566a37', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c0fd6753-8f4c-444b-81b8-bc779d1cc7c1', '17c6fe53-5c84-46e5-800e-2ab62bcf8a4e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1f222590-d082-4b39-baf4-883dc9a46409', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cf45ba5b-f46e-4638-96c3-8fff424da6a7', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3edbc6f6-bd84-4390-970d-5e344664f86e', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d9fa8f0e-e40f-45da-a3fc-37a6e973cf13', '262a75f6-0c99-4101-8301-0cb95f7cb81e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0458c878-07f7-48cc-8cde-866110a379b2', '6263942d-84d3-40de-b460-04c52e2a7f36', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9843689f-18c7-472f-833c-262d2348ae61', '6263942d-84d3-40de-b460-04c52e2a7f36', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('133d043e-f9e7-462d-9519-1ae05a47a1be', '6263942d-84d3-40de-b460-04c52e2a7f36', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ac14c959-2f96-4fbd-9970-87a2b07dff95', '6263942d-84d3-40de-b460-04c52e2a7f36', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3fee107a-c77b-45f0-bb75-b8c48980dd8a', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5743e552-306b-4aa1-acf3-23d6d1ff26c2', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('003086d1-689f-41da-9ea2-e61c50dc6c10', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('face87b5-b7b2-4525-b615-9c917e6f11c9', 'f1d2c18d-4cb0-481e-a948-934324a74f61', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cff56822-3173-4489-ba4e-eeb10924cefd', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c9a6a7ba-a1fb-48dc-a3a9-98822c90c102', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ece49845-4b04-434a-a12e-2e5ea1d2c241', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3412d5e9-9e1e-470b-af39-015652349d4f', '7f820d9f-4aaf-4097-90cb-5d2b6a0d4e3b', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('692d194a-ce6c-4932-9a16-08fc5b853bbe', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f1c115e6-df2d-4f39-b0ce-0954cf0cb1c9', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c9c5a8e1-ad7c-48f0-b747-b574b96de461', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0f4a2da3-f4bf-4454-9ff8-0fd71157fb45', '510f22fa-273b-4c27-a99c-0ced2c8ac722', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('25aea726-1671-41d0-9264-5bb7c4972697', '92b842af-05fc-405d-b0db-7a667228c221', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6a9c2ebd-0656-4634-bcf2-a10f53a2b649', '92b842af-05fc-405d-b0db-7a667228c221', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ddcf6c5c-7d81-4399-825e-2c8f6639f869', '92b842af-05fc-405d-b0db-7a667228c221', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c15e0b81-002e-480e-93f8-93b06f87bbff', '92b842af-05fc-405d-b0db-7a667228c221', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ad81e516-9454-42a1-ac0e-7e4ca2ded76d', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a115bf5c-94f4-46b0-8506-e41ead116a8d', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e45e99e4-bd4c-4ee1-9793-5e1ce4c24be2', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9fdc3c83-e6fc-4494-bba5-ec2f2b814448', 'cb0c0d31-b1a8-4f44-afc0-e096c83fee56', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d2d49e70-c8c7-449a-a5ae-03f377663ac9', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('50593216-70ed-4099-8e53-51f5f95fb14e', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6c5bd6d0-2679-4b89-a125-57e510f4027d', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('be395dff-ff4b-40ae-a537-5c84a2d3a783', 'ff8bf4b8-2eaf-46a9-b2af-3c0369f2112e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c753ef5d-0c69-4807-b43a-4d3e1d500389', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7e4041ba-8a1b-40a6-a7c5-80ae8b9cf397', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c7434ab2-1e19-4777-a38e-14330f4a02a7', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7a9c1ba8-4d6e-4f77-94b6-3fe8e2095540', 'd8b3342b-fd1f-4db5-83d6-9b13f63a3058', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6a17b24d-e8b3-4659-b391-b1f72ef80029', '3c0abfbb-0006-426a-903f-6f435e03276e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('79bfede0-cffe-46c4-b27c-0e40846e2447', '3c0abfbb-0006-426a-903f-6f435e03276e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2243d1b8-20ff-4556-8185-69dedd3fce8f', '3c0abfbb-0006-426a-903f-6f435e03276e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4f843b40-95b0-4bfe-af06-2fc65df2ee56', '3c0abfbb-0006-426a-903f-6f435e03276e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f2ab3bc0-b751-4564-8161-779ed29b1777', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('93f2adce-e4f2-4f16-ae97-3763f6384d3d', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('63240dc7-30b8-4562-8648-d84689be5460', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2a7ce36c-2e39-4286-ade4-d3df16838700', '76c70bb8-38cc-404e-ae2b-710f94e708a2', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eafdf04b-58f7-46a4-aca7-4beba0fd977a', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fd65d7c5-416f-46f9-b01e-218f58575f54', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('39643e22-f10f-43c4-b6a2-dff5e6fce870', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ac5c37f9-3cad-40ea-8b7a-eab9f23a2e2f', '6ff8b863-15dd-4646-96bc-fdec9d271aba', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('520a7251-6e8c-4344-9103-3dcd1445235d', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('63aa3fef-05bb-4217-9c0c-3b71d2567a8e', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('861927b0-a03c-4d7d-9dfc-e5248240e9ef', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c76214e6-d6c0-4fec-a919-3f0f579e65d1', '8c9e386f-d331-4e54-8d7d-ab768a575c77', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b392990f-d44f-4754-8059-f5fa9114b643', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6eba0739-280d-448d-9837-a68d57138524', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('14dd83bb-8b3e-4ba4-b1eb-806e48d9ef85', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('db577236-d0d2-4c2f-bbd6-246a46c70278', 'aae8aaab-ffd1-4254-a702-43e4a4a3c79b', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e88ba159-11c9-42fa-899a-e58cf9acb9b7', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('07d6b629-0619-408f-92e4-dc57b25e341e', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('33960cd8-c35e-4e12-93d4-a03f9ee56f11', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('11cb2800-b7bd-4b53-8f6b-9a3398de8834', '14ca6db0-b2db-403a-98f7-09a4aece479e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('98cab550-aa9b-423f-8687-063fdafe09b2', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6bfe76a6-1377-429d-8eb7-b3ba3cdf0414', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2af247be-533e-4e76-841e-46f8758be2a1', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c23d778c-25ee-45d3-b65a-877bcf1fcfff', 'e9507d52-a4ed-46c4-a761-c3a01fb42511', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c0721ca2-ebb9-4efb-9170-85983c08c7be', '82771891-737c-4c22-8321-c2542f973dbe', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3e7064c2-0b1d-4978-b8c8-df23f1342163', '82771891-737c-4c22-8321-c2542f973dbe', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ca5cbee3-107f-4ffa-b2de-777efffc27c5', '82771891-737c-4c22-8321-c2542f973dbe', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6d7dc53a-3f6c-4acd-ad65-2aad626af0ae', '82771891-737c-4c22-8321-c2542f973dbe', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fb497976-84ec-4688-bbbf-cb7b788cf927', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3299ec7e-0a6e-45ca-a6af-2f253dae41a0', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1c07acdc-fdbe-4439-8e64-739b970501b9', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9c5c0e45-2026-46b8-8f49-1b665aa804a4', '5460e6bc-ff8c-4137-b262-9587833fd26e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('db639259-14d3-4037-a775-0aecc5b28e49', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2009013f-80e4-4f14-9d59-9f5027ac0307', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0fe07503-4b4b-4eb6-9080-081671416888', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('db545d05-0872-4c73-b09a-c9bec5f63bf8', 'bd58eafc-8b10-44fc-9877-fa823ec2168b', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('71e27e16-50cc-459b-96fb-4b8c1201082b', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('da7719db-1c60-48df-b3cc-ffe7ca5df0f5', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8ba1d2ae-9183-4e86-82a9-e59a7e62e4e2', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d9d12b27-ae58-4ae5-b109-9a873ca8fea7', '28f9bd77-e35d-45ce-b7ae-5e49a961caf0', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ec5fd55f-6c3c-48f9-bf25-d6937f731633', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('84596d4a-c803-408d-87e0-2edccbf46866', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('22f39ffa-2f6b-499a-ad1e-6392e380f4e9', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6b6b95c2-45c2-4803-b595-e1d4e62912d4', '1586854a-cd2a-4378-ba84-fd371c8d06c7', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e47a8edf-53fb-4ee3-a9ef-b7306f3ce489', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a028c0ce-a639-4431-bd4b-7f4339986e12', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2f620914-54a4-404f-8297-c209a1b666bc', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('31037a84-6031-4aea-8702-9ae134616972', '29759ed5-a529-4555-b0f8-77b722d5cf48', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fc26785f-19fa-476c-93a1-d751511c8cc6', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('645901d5-e40f-4c62-aefb-a465db8e329c', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5fe85149-78e6-4735-960e-353a088d355b', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('14db4fed-0e39-4912-8616-cd4bb2335a4c', '568eff85-93e4-43fd-9e46-bf46ccbd76bb', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('102e1ab3-76f6-4812-b627-9becd51c2657', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5a4982c6-bec1-4cbe-958b-89dbc24e013b', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('37f9dd35-f71d-41b5-971d-dfd9c6ccccc5', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cdd5c1ec-2338-4784-b430-01dffcdcd53a', '68821d28-1f12-40fb-93cd-c979ab75c04e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('903ede93-27b9-4273-8ec6-2af94a38cd60', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a4bff7bc-e032-4606-8e6f-cb48b8dc5846', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('435b9cdc-5cfe-4d35-89d4-85bc68ee6967', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ca60104-96c2-46f7-bf36-e5acc579f3e9', 'bd150cec-ea90-4cbe-bd1b-872330452c1b', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eb429a65-504e-43c1-a194-a58f3aa21da8', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f5596859-966a-4d5f-9e34-cd255fa2452e', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('12901c4c-0376-47a9-a9f3-f73acba2905d', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e8c89c01-b7b4-4c3f-949b-b91f84498439', 'ef673d13-b575-4c2a-84e7-849432e0213c', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('21f928f2-d60e-4885-9d16-ac56767416bb', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0b32e53f-fafa-44d4-93b3-c544d2ea99e1', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('882da02d-8e85-40e9-9740-d20d6ef5c0a6', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f3e16f5c-42c6-4f75-af34-76a92aaf4a06', 'dec33315-b6ee-4257-8b4f-79ee2b3f86af', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('65434844-1290-47a9-8a2f-e8b7430a3798', '452aae38-0b88-4771-b632-9d883909bd8c', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('08116e94-3a11-4286-be4e-53600b9ece82', '452aae38-0b88-4771-b632-9d883909bd8c', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7006fb81-7298-464e-af9e-de7899548c10', '452aae38-0b88-4771-b632-9d883909bd8c', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7048b10d-c499-45c1-8f04-f675d387d7a1', '452aae38-0b88-4771-b632-9d883909bd8c', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('438ec914-dab7-4fa7-8b85-3b8f89c9defd', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('be73c28b-c17d-4afa-a2ea-ade468bcd885', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('68c8e437-f0fe-4bc9-8143-79f96032568f', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0b976d62-6eab-48da-84ad-8a52025ce66f', '354920fc-1b03-4c43-a9ee-52d0b11e07cc', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0629fcb7-03b8-46af-b60e-3f2e3f371f1e', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b85e909e-c4aa-4f8a-add6-0852179c69ba', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8f589e1f-ff7c-4e41-bee5-ff33807ba4dd', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9a8681ff-f4a6-4ba2-85fc-1623725c9029', 'e77a9a29-bc8f-48ea-a854-6efb979b86aa', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dedbb861-5c9b-4ecd-8573-70e7e2d226fd', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0af56a45-20b6-4818-b7e9-90e4ee9373c9', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ca0eede4-a9b8-4988-9da4-47830d8fe5c8', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b043e81d-9fba-47cf-a98e-f80dce34346f', '68dea4fd-58cf-47bd-91af-745dcf8aa697', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d1ec7d97-2494-4220-bd5c-81e709cd3926', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c9f248c6-10f8-4ae9-91ff-c25d8f355ec3', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('32418973-8381-4c36-99b4-f26750994819', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3c443fbc-dffe-4c72-8522-96ef96276f82', 'd3a7a3d6-9ed8-4d49-812f-6dab4afecbe5', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('720ad69e-cb68-4653-8d31-6df8bb93d3f9', '171aa70c-1909-417e-9daf-b17c36857995', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a4ea6adf-ebca-4d9f-af65-80e38cbf9fdb', '171aa70c-1909-417e-9daf-b17c36857995', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('57f95e9c-d5c6-4a4b-8969-cc4451a7bc59', '171aa70c-1909-417e-9daf-b17c36857995', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('41403571-c524-4355-882b-b30af5000849', '171aa70c-1909-417e-9daf-b17c36857995', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f98f4c1d-b7aa-4e43-abc4-306832ddb8f0', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('962281d2-0226-4e95-a682-a99c3a437f88', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('861ce7c1-cd92-40cd-963a-0c0e5caadc08', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('485b7c84-8089-47f4-8111-f6533cb8b959', '49e80455-a6b4-40cd-ac0c-8ec2e5dacaa8', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9815ea68-519b-4aa0-9f9b-f0667a3c9467', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('aed54bde-3462-48f9-8845-b2917efd4a52', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1c67671f-349a-489d-98f2-7a6e6fc84746', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2679288a-5661-4387-be6d-808e13e2f1d1', 'b4a78230-3b9c-4cca-971d-b9c2171f22ca', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a9515288-170d-4817-852c-43403863ec9a', '2267ef17-1092-4799-b042-8b06389bd4a9', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('41040940-a56e-431d-b876-43c26ee04cca', '2267ef17-1092-4799-b042-8b06389bd4a9', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('73f146ee-548d-4429-9146-5b75c6d9f457', '2267ef17-1092-4799-b042-8b06389bd4a9', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e5bcf7c1-ea1f-4c6d-b073-751380d13765', '2267ef17-1092-4799-b042-8b06389bd4a9', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d660a6f5-b185-4fd2-af58-fd3e9a69b8a5', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fb83effe-60ab-419e-9ad7-d0ca116888c8', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a22092fb-7d7f-41b6-bfb0-fcae5aabcda8', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b57a71fc-19af-43e2-976c-5572d455f343', 'cd0221f8-3c5a-4a7f-9519-ec6dbb51f425', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2953305f-c465-4345-b16f-68ed28de5249', '05f9829a-f505-4758-891e-5f38b5242d75', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('762cefda-0cb3-41e5-995a-b87f654b4b8c', '05f9829a-f505-4758-891e-5f38b5242d75', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9ffe66fc-c5cd-469f-ba2d-ef8aa7faaacd', '05f9829a-f505-4758-891e-5f38b5242d75', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c42097a3-922d-4e0b-9b47-00a804174f48', '05f9829a-f505-4758-891e-5f38b5242d75', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('48c51969-edf6-475e-a24f-f55430f7af85', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('589e092b-bb46-48c1-b6ed-bfd8aa18c037', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('482facc0-a3f1-474e-8f3c-7a92d54dd5a6', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9b5b528d-4f78-43d6-9dc6-6a4c2e242bc6', 'd11f4aeb-430d-4b7d-95e0-bb3f57bf9b83', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e83be41f-07c7-408a-9d45-504f7897e2d4', 'ede0d030-8e66-469a-a11f-43f818863809', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1e3b494a-859e-40b2-84d2-ce25081f04b1', 'ede0d030-8e66-469a-a11f-43f818863809', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('40d1a082-2612-4b10-92ad-970d6d9ff4ac', 'ede0d030-8e66-469a-a11f-43f818863809', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bb129bdb-1b70-4c35-97cc-ff6396197e0c', 'ede0d030-8e66-469a-a11f-43f818863809', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c759b6c3-65c1-4c2f-b440-3070b36677d9', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('65f3a917-8510-43ed-b64a-9fb875dcef14', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('00712e6b-e706-4e0f-b551-c7dc4614857d', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bc411acd-2a6e-4386-a537-2d98708ff312', 'ad34bbcd-54bc-4da5-b5b6-2a2b42ee2fbd', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dc086b9e-22f3-4f9f-9c37-eeef9edbed06', '505337e7-2099-4d83-a2f5-7447bc63a387', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3886e13c-4802-49c6-8c94-7439d5f609d0', '505337e7-2099-4d83-a2f5-7447bc63a387', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3df71fa7-354e-487e-b007-81c01e03fcc5', '505337e7-2099-4d83-a2f5-7447bc63a387', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5aa5b42e-b148-4681-8188-5e4ae09c2a1c', '505337e7-2099-4d83-a2f5-7447bc63a387', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cb308667-ef0e-4af4-96b7-67bafa383953', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('42589adb-5faf-46f4-88bd-53baa315c72c', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('37947345-1e74-45a2-bb5a-964534106fe4', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8c474a1f-2ec2-40c2-81c7-da3178b41434', 'e22a4ca4-95d0-4f8f-9b07-a90ad07f367a', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7bff095d-8c8b-4ce8-9dc7-ba9582fdde86', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a046da0d-216b-4e65-85fa-9a9e512b8546', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fb868a05-aa95-4c3a-892f-95866efb0bfb', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eeaa4092-85ba-423e-b6c1-24baf93477a2', '54dc9b39-be6d-4ac8-b5e5-26abd0c7f82a', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fa7fe745-543f-4e81-b368-2fb7da4dc1d4', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('36011508-4a4f-4f37-9fb3-18d00c661ff7', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('adce5859-3567-441d-9159-e39116a6763b', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('80b7f5a5-ae51-4a71-a8c5-23b355d72eae', 'd0c7ee55-15a9-4773-9b7d-a2f2d6833469', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('314604d4-4063-4192-b142-1a0410275882', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('26ab9dc2-3da3-487c-846e-3bb7cc28f0d4', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bd7bec83-31a4-461c-a9ff-f9d6fd2189ff', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('23fd725b-ed04-4bcb-ad25-55809e416f6b', '8ae4d050-ac5a-4bd4-affd-53de24264815', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b87cea82-5428-4ae8-b8d0-6cf3ca7a9cbf', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1df8e8bb-fded-413b-81ab-ab105f4407c3', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('428e4654-0d62-4306-a97b-325b311a78e4', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('02b7d33b-d6e6-4e70-9eca-103a1f33460a', 'f1bb26c9-79bb-4929-bd66-fa5821c19bc3', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6690edba-2f37-479f-9349-446be36b63cc', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4c7032f9-b39b-4e81-afb1-4aad349538ee', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8c276820-a255-4c60-b5b8-f57810e0ab39', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c08efb0-89cd-4274-b0b2-09e232d3c60b', '264dc502-036f-4af7-b5aa-f991cfe795b5', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1f0f2d77-e8b2-4c04-85e4-09fedbafad8c', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3e8da516-8841-4987-954c-15909540f046', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5181412d-2787-460c-b51e-2f2c97f8e051', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f590c9a2-e5e5-4d61-ac5b-e1fff9d8c8bd', '9c568d47-146a-4be9-8ae0-c233ef79b212', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('217190fa-fa45-4a12-a2d8-a58aaa6732c4', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('506b8a02-350a-4802-8639-d35c231a047d', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b4bcd762-98c2-44ab-a130-2be6e83d23a8', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('af1a2c68-ad3e-461f-8ddc-e952532bb50a', '3b3cb721-4348-4aae-afea-5935d3e9475c', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('57bcec51-b2c9-426d-b301-3ee801acd8a5', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e9f3374b-749a-4548-9436-29a75e5e18ab', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fa988deb-0f9d-49a3-a075-147134d037dc', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bbb4fb59-9830-47e6-89b7-0d3dd66d52d6', '8ffad1b7-8c4f-4d3f-9af2-e8c9bb7cf84d', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ca23eab4-c6ae-4a7b-8c80-0f50a06766c3', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6b190de6-8a21-4f39-a1dd-eb6ae523e8e0', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9a7c9014-0599-4afc-b01e-f0346d717c17', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f134e8cc-d678-4cf3-8a14-10bc8ecb4704', 'ce0d5692-c5f7-4bc8-ba69-aa409d0ec078', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4bc718f4-83d4-443d-8a80-93d3aeeadbd1', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b6fcfce7-3117-4b66-9f0f-f9ee3211b8ad', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('13e241ab-7a0c-465b-a220-8349896e9191', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('712f655a-c76b-4a0d-a2c5-04ee76e398ec', 'cb6b3cde-3fe1-4127-acaa-69fd7ece0b0e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4dfd857a-a21b-4c99-82c6-ce6c9f1b1990', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cb5146a4-625e-4c32-a0ea-d1d0c224e1b8', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('557aacc7-96fc-4c31-9a96-ecec09d7fe3f', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5ecbb381-1585-46e6-b942-e3e14896ab77', 'c19283ee-f365-4bcc-9251-c9d5d45aedfe', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c94be9f2-0de0-44ea-9f93-e48980321db2', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8dc77464-badc-4cb0-bc0b-d979585c87fc', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('53f8e5e8-df1d-4bf0-b84d-5a2b4d0e38d6', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3f746db8-3087-48a4-b9fc-f5b980287905', 'c1d816d5-1d79-4996-bfaf-f2158c3a7dce', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f01235b8-39c1-42c4-83d5-a1e51c1fdd72', '526ddec1-2738-48dc-a696-6c3579201851', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('af79a39c-1b00-485d-a4e7-5ee3a77afe65', '526ddec1-2738-48dc-a696-6c3579201851', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('918c9a58-7fd3-490a-ace7-4e432cf6a2e3', '526ddec1-2738-48dc-a696-6c3579201851', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f05757fd-3ee2-4141-a98d-95096b86aa13', '526ddec1-2738-48dc-a696-6c3579201851', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c8da4dbb-2a84-4291-9075-8da0c4e257a7', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('91de9bc8-0c04-478b-b8dd-7d5ba36229ba', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9a11ff8a-8a4e-42c5-b37e-7c9706747581', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5602ce7f-cf99-43e4-9d54-4324e7262dd1', '2cdad63b-9a5a-42db-a383-9c552f1d16c2', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('de39bb09-aecb-479a-9b94-0f8f850a421f', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('02b39977-ec89-4a9e-b7df-9ef1f4e0dcee', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b723c3a1-8bb2-4f3b-901c-1219c04861cc', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('55336c43-e7ea-4194-98a4-fbba54330f8b', '7ff40241-2808-4bd5-a1be-22636c8fd26e', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2b015fed-111f-4bb3-9314-054c4f5e02a9', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d6cb1e27-4d6c-4308-991a-dbb80e2ed0dd', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a01b1061-d4fb-4ad7-b6c9-a1556cb05999', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b31b9e66-752e-45d4-87bc-e06d95de7ba6', '7afc8c46-3635-4456-bdfe-6ce0702fff28', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('feb5fe79-001e-414c-8dc7-09657384b63c', '63e06470-764c-41b3-92d8-e114d4e52664', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3ad1f655-d278-41ed-bd16-6bb4662834dc', '63e06470-764c-41b3-92d8-e114d4e52664', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8c23f0a2-3c88-4526-b122-4088e4143682', '63e06470-764c-41b3-92d8-e114d4e52664', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('21f69032-ae5d-40de-9834-61bef9345741', '63e06470-764c-41b3-92d8-e114d4e52664', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f2b7ed96-48bc-476a-a323-d69e3fa622b2', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('de2f2450-cfd5-49f1-88b8-4dd5d67af141', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0ce06202-a733-454d-885e-d47597f3fdc1', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('edbfdc0d-5541-487a-a68f-a6aeaa572d7b', '8bd78e9a-428e-4400-bc0e-543808a6ebe3', 'TENANT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e45e9efc-c353-496b-ae01-2cdd1a377189', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e17798f5-5150-4fb9-8501-a736ac4aa461', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d3d639f3-61a3-46d3-8c6e-33af6f31f718', '860a931c-5819-4cc8-9379-c2d530cd30f6', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('06f20485-c8a0-4c8f-b197-473da910ad4c', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('be48fda3-4879-4578-ab53-7ef02cb2d316', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0ccb26b5-ca98-4998-8e94-18ebca2dc643', '4f9ed0f7-dee6-4d25-afdf-9de24fc10c05', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1614f74d-3fe6-4ca0-bc43-2deea2bbe5ea', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('02367e67-e418-4eb2-92d7-241e3ece14e4', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b56c72e1-8717-4238-8755-52de32b7e9a8', '4e047029-cd6a-4cd8-9022-bdf092aa7b7b', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('67ba7d20-5994-4a7d-a326-d68ce566bbd0', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('09a5131d-4cc7-4373-8aa0-7183cd6cee62', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('08903550-662d-4b46-bfe2-74f263288b3c', '1afb5eea-6d05-4801-90b1-ee0e4ad420d1', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3561c528-a2d8-4291-966e-3ba044436e56', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('202a6508-7fef-459d-b5b6-890b088d82be', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('928d52ec-02f7-4765-b71c-7d3ee4e9c1d9', 'ca0baf78-f634-430f-b9d3-351a6d1a6723', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1e716d6d-cae9-45ed-bb67-28deecf8f459', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('14cd9303-6495-4df5-aae8-4e4c8fd6efe9', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ff268833-fd94-40f4-8a00-65ec735997c1', '8a6743f8-ecf2-4500-8983-d657b9d61b18', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ef169461-9c02-46f4-a6a9-6c36aad196ca', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dbcb84e9-2de9-47f9-88aa-3fce9c269877', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('34cc8a49-ea9b-466e-8579-7827e09f5d35', 'cce6083f-6122-4759-85a9-5ac021b2c95d', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f08199e6-b59c-4cae-a738-6d37d2a484cd', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1c0c395e-a062-423c-b153-d17fcfdc42f8', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('180970e6-4774-43ba-be24-92cc46a1e9f7', '29a29c04-ddf1-45d7-b0be-d089bd41cfc8', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cddf6529-abe4-42be-a8e9-a0f635cded95', '7761056f-60a1-4981-a45f-55097922cfcb', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('70474bae-df93-4ba6-951e-5ca5fe0fc4a0', '7761056f-60a1-4981-a45f-55097922cfcb', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f0394d0f-0314-4cc2-b77b-412362610ee8', '7761056f-60a1-4981-a45f-55097922cfcb', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0f4bdccc-973c-4465-9692-110165157e47', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('07cea3ae-e400-49b3-bf50-8653f7d4d0bf', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f843e0df-6c28-4d29-bfce-0dce1e8220ba', 'ad6a8f86-9dd5-4d84-a05c-b13bd0d0ef2a', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0c0f526f-d1c9-4ef7-b3b7-8535a1b739e6', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4d60a0ec-e76a-4f0e-896a-56aa061b60a6', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2203cdf2-5069-406b-87f0-6e600142edd8', '1ee9f29b-08b9-4651-a866-24e3c6c1f337', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f13a4f1e-c8d7-4504-a75c-9e2b0ea492f6', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f9a40c25-3b07-4043-90fb-ac2826818923', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('22be1e9a-65f6-4c35-8b28-39dc7982770f', '9a5d0728-35a4-4fed-8f48-9944255ddee5', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0cd1afc1-d446-425d-8f2e-10982a72bcf5', '0e352061-8280-491d-9125-d1547e3662f8', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5b835d54-b474-480d-96a4-668e762a5c15', '0e352061-8280-491d-9125-d1547e3662f8', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3b5bb3e5-0965-4129-8d2e-6d3d09a64c60', '0e352061-8280-491d-9125-d1547e3662f8', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d15aa4b2-c357-4a70-85a6-5c997a88356c', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7a39dfe4-5ae9-4cd2-8d34-a93db0c725b2', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('33999dfe-271e-493a-a577-7d698ab46d63', 'e7f9797c-0871-4df4-b9ef-e658e97825c0', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('41226c0f-ba77-41de-b709-9cddf9a77eb3', '23731ee7-5762-4c61-b825-d19a31217388', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('89eccc8e-de06-4a87-ba5e-1fa50e6daad0', '23731ee7-5762-4c61-b825-d19a31217388', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c12aea38-955c-4577-91b8-bb520d4b9579', '23731ee7-5762-4c61-b825-d19a31217388', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4a3de509-83bf-444a-8b6e-0dd8a3ad1d3a', '23731ee7-5762-4c61-b825-d19a31217388', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c012fc1-4d66-4247-b453-c318437c486e', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fcfbf19f-e3c6-44d4-8451-950c9bb2ee3a', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9efb3b6c-0fe8-43a1-9a07-0dcdfeede7c6', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('19b377d6-3ffc-481f-a7e5-9ac48e47d16f', 'b60fcf6e-d16e-47d8-a3e4-9c55903f8c88', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('98d32fbb-e9d2-4b7c-be28-78849d7efa9f', 'a41933db-1aac-4207-a8be-1e90621d834a', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9c564fe3-deb7-434f-95c1-948c62421c70', 'a41933db-1aac-4207-a8be-1e90621d834a', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b73eaf37-bae8-4421-b5b8-9073a14a8a74', 'a41933db-1aac-4207-a8be-1e90621d834a', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3b727500-318d-41eb-8a8e-5d71604a2cee', 'a41933db-1aac-4207-a8be-1e90621d834a', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1f9f0c05-8408-46f5-a02e-48dc02568dca', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a139736b-5ae1-4b92-912f-b1fdcf04bbf5', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2cb21268-8efd-4310-9230-4a84852e79de', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7133241d-d238-495f-96c2-bff68b98065f', '43cdf6ca-6e2d-4fa2-8615-e6a368679a56', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('88bcfc80-afa2-49fa-886f-a1e913ab448f', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8a21ac5c-af4c-46e8-8938-180d6467bec8', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1f10356b-7796-4761-8f7a-53bf2e82b4e8', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('102906a0-8b36-402e-82da-1ba78bedc71f', '2c3575e7-0ee8-414d-a7bb-f3604e526075', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('611e8315-a98f-48b4-b284-10bcc905fa2d', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b772ba6a-40b5-443b-84b2-d447db62bf71', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('487b0fac-63eb-4188-a465-46610050184e', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3949e0ac-bd4b-48fd-9094-f8eb7cddfa27', 'd5a9dca4-6dd4-43ea-b791-a80c27e2be9c', 'REFERRER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b5f4c16c-1b65-40c5-83f6-96f9d5af4d0e', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'OWNER'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2d11e79a-9df6-4d11-b192-1f7c1e25f658', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'ADMIN'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c1e676bd-6b42-4e9f-be99-e7ae7553aa0f', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'AGENT'); -INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('77059463-c7ac-49ce-80ae-d8bb2a312046', '84f64b9f-3d8b-420a-b75a-782d6619028d', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ce47754e-0d06-4b12-bc91-8034a4a046e7', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d2e05c94-5c48-43bf-a263-307e9dafe466', '33af1d05-a7de-4552-9118-7900fe5fde7d', 'GUEST'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7fe86d82-1b9d-485e-a206-a4c9bb39125c', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dfeb77e8-087e-423f-b4b5-8e8111a8b83e', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('38aa2ac2-71e5-4805-94ae-61361288f235', '691db509-b67e-46ec-a859-c4cb05fbbd70', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eba5fbe1-b196-4df3-8d92-fd9023668744', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a6ff0898-04e1-49b7-8621-b42846df06e1', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c9372e0-cb21-4ae7-a461-df086ad19426', 'b4a3b50d-1c1f-4052-b584-0b7f2aec1a42', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a930208f-7ef8-4296-9f70-24c50656ac58', 'd363745a-e94f-48be-8397-4b361570a54d', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b9592474-79f3-42d9-828f-8cc2e5c8ba7c', 'd363745a-e94f-48be-8397-4b361570a54d', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1280183b-c71a-4b86-bdec-7f3800679ef4', 'd363745a-e94f-48be-8397-4b361570a54d', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d1d8fae9-566a-4a6b-8a1c-372b63108fe6', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('939dafca-fe72-499d-979d-6fe0288e6807', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b91f7dd8-b4a4-4f9b-9192-300f8e982c6d', '7a334268-7d11-4765-8fa9-17e2c36cca7a', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2b70b335-e6b6-4b11-b138-4e7b3c4c50d4', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('06bf2ac2-61c5-42e9-917b-8b68afcc0d47', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7a8959c2-e6c0-4af3-9d64-117811ec0d02', '33b40eee-30ed-4924-859d-6c58b5aa4124', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9d6a3750-0d32-469a-a476-2d8525f7e692', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('82d6e2a0-3c2d-4a8e-8638-4903696927d5', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('25acc71c-db8f-46e4-950a-8ea76637bb9b', '16da0560-e134-41c5-aafb-1f7a5b33692b', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0b754d22-82a2-4349-af85-2cee67716f66', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('42d9e5ef-8114-49d5-b6cd-1f5bf43c9d1b', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('24f9488b-412f-4314-b160-2897f4dcff1b', '1fc10779-390b-40ff-b641-b6b5e2634ebb', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('310cdf00-c863-4ea0-9e4e-9eac8a74f51a', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f9d5ba94-1514-4400-88af-7b7d3798f473', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('20926d99-1f1f-497a-8e13-ce3cb4b1eb73', 'caac18bd-9277-47ac-99bb-368e2d64dac0', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b54d5034-1898-4712-a472-5ecac0e22a1a', 'eead6995-dd54-475f-8194-74445c421305', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('57ee73c6-769e-461e-9cea-7bfe56970bf7', 'eead6995-dd54-475f-8194-74445c421305', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e65ad361-79d6-46a3-a7c7-a18048b7237a', 'eead6995-dd54-475f-8194-74445c421305', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('97344c39-24d3-4df5-8dba-ba41ff28a020', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d206ab6d-9620-4bf3-8ea8-2c8b0b86cd8e', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6c787015-c910-455d-8b2c-c3ae7bece7e7', '4b68de11-a658-44bb-be49-ad592e73e3d8', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('680b8464-0536-4f87-a952-56e549a70a99', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('93ec1b20-de2b-4af1-924f-047a7afa0276', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4330591d-61d5-4435-827a-c71b8328a700', '8e7648e6-e74e-4a37-b9c0-3a5998921e1f', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0ca35f5d-778f-4207-88ae-beb5a648a6f6', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5b391d1b-439d-4ba6-9be1-dc9e8c161c7c', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5167487b-90ee-40b9-9c34-535b74b3186e', '25358342-4f90-4397-b4c4-d90524ac0b7b', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a0a8a5e1-e11f-44ec-984f-163e049c81e1', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4241127c-1c6d-41b4-9350-3aa73785f6c5', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('206fcdf2-c22e-480f-9029-42183cc2990e', '4997dce8-4927-4a10-a7b3-16c574eb79c9', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('51c51fa2-3706-470a-9d15-0bad421ea7d4', '9dcab961-1465-40e3-8d83-357b22af2674', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d3aa37e9-88d7-4099-8fa8-0bb25f6db328', '9dcab961-1465-40e3-8d83-357b22af2674', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3f62e7fa-ffed-4a15-88c2-2d4a231c7db0', '9dcab961-1465-40e3-8d83-357b22af2674', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e1947aaf-5b7f-4597-b296-25830e9c945b', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a822e970-7b6a-417d-81d0-a8db0c985427', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6fc5eacb-5328-41c3-a71b-e7712338862a', '29e2d42f-5f00-467f-ab73-f2ff59f2792d', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('87f8ac1d-b082-4961-979c-cd3de0e46b21', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ba7a634b-c352-418c-a8c0-58918f32f8a7', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ed0f7762-a094-4a88-abde-8472da33bcfb', '627a274d-55b0-42e7-963c-8b0cc3e204b4', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9455fccb-71fa-4cff-bf89-5dfc719f3374', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fdcffa04-a455-4869-ab8f-2f2fa05e4b02', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('67b756a8-aff9-439d-8ac8-b8965b63ac32', 'e8151525-ae0c-44fb-9755-72be88f7f6b1', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d85c013c-e791-4bec-ac0d-a217472cf425', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('60297e5d-2f7d-4734-9a25-f2639ffb7fb4', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7454ce37-a2ba-4f52-a5da-2190203ca089', '7857f7cb-c93d-4d21-a4e8-b91a28eb7007', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d8bc6523-20de-42c3-93e6-5884924a7cdb', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('da9600c2-7dcc-4a7d-87f1-33f4a441e807', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f1afc7a2-588d-4b7e-9975-7b0eda21f846', 'c3b8c521-37f4-46b8-89f7-1931159e9a14', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c184a3f4-ab4e-4263-a14c-70243c83e166', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b9d1cb3c-79f0-4640-b951-ad41f79d7b95', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8806c446-5551-4059-ba53-850a2d147c7c', '137fb47a-07d4-42cc-b2ef-8e371041cf41', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a8e7eeaa-7dcd-4ff5-a04f-1d84eafa4b6b', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e03da822-f071-4c66-890f-f93a458aec28', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('95cfeaa7-1c01-4090-8f37-fc3306cc0ba9', 'ba6468f9-2d1a-45c9-8f5c-71edc1a4ad6f', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e811eb41-9645-43d9-86b4-d3b522acede9', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f2ef6ba7-3a5b-45fa-a4ac-1131df8acb1b', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2bcadf08-a16f-4ab6-afbe-83db1b1424d0', 'cd48cfd6-6313-408f-ae7d-9af047d0c22e', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('02e3a73a-07fc-46df-a14f-569f31249c16', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f87398bc-225a-4eee-bea8-7983be6ae529', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('236b88d3-09bc-4750-9219-61529f7740af', '417b9a15-5e1b-4d15-b1b3-79dc19b49c50', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('09a6064d-a472-48e9-9755-d0117f2af6fe', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bab68a5a-2016-454e-b143-8c334188d2c4', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9115be3d-2bef-40ce-b0c9-339e460c751d', 'f5dd291e-f8f5-4240-93d5-9fc1e56c376a', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ce0b0564-7cda-4c03-afcc-0854f3c5e519', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('da979efd-9d87-4dc5-a839-493e883cf292', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f913c978-1afc-4af0-9bb6-8c21eed95991', '177ab8a6-2f70-4c2d-b1ba-2153d0803b16', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cecee6dc-89dc-4b67-ba2b-adacbbc2c0c8', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b4224d96-af95-4008-9a96-9ae04b44913f', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e668cce4-9f01-4c71-b28c-79859e02971b', 'ff030436-d19e-4606-9d48-7e192eaf469f', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('22600f05-6955-48f7-8930-c884c9c31b06', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b28425cc-f859-43db-b3f5-64b5fb6a668b', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ecdbb376-51c5-4de3-82f5-c5e73c0f43c5', 'c8050a1b-0d28-4aa7-ac77-958c99152cd1', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c573267e-79c1-4e2a-9e95-55613006a3c8', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6ef557f3-0b1e-41e9-bde7-8abea686f965', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ea1789f5-11fe-4ec3-8d12-2623ba592c7f', '89bca3fd-d7b2-46f5-821a-64c5566d03f1', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('32defb6c-2a81-44f2-ae79-7d8544d807dc', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9e5fa680-2abc-4f25-bb22-bd2fe04fd860', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4de8cdcf-ecc5-4f3b-b3c7-3d674d5c0ac7', '2fd1ba30-936a-41a8-8fbe-e93be547f44b', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7c817da8-f355-4456-8074-7bf433924285', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f32f51d5-3384-426e-a1c1-b5b6a263b647', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a7ff4f1c-7c33-43e0-b264-37339141f7f9', '450cf76f-d9bb-4308-ae8f-bd09bbbafd31', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b70eca31-fcf6-40f6-9792-2fdb66bb129b', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('95f09796-be4b-4b39-a759-a1f5a4fe54fb', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e97003a9-9162-4142-8d08-814e6c8fabd9', '38cc5d59-085f-449e-aeb3-439febbabd9b', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4d63a8ce-72e4-4bc4-8109-ec9e664cb5e3', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1373e547-4804-4c8d-9014-ce51c65f3a06', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bdeffe17-405f-4ad0-8131-82728ea0e382', 'a3cb6be0-b9e4-42f8-ae29-ef2ba0f3a763', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3f156460-0b5e-4e31-9ffe-bd27ad172ade', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('957da54d-43eb-45d5-a3c4-34976d178bf3', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('96d81c1c-7d32-4b58-b7d3-7d7d88d250b7', 'd7485220-e4f2-4683-9e84-7728a2ef4ebf', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c561605-0895-4a2b-b850-9572156e6635', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8bfcdf97-8c34-46ca-8159-1314cbb42105', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d8c41124-ff96-4bc4-b3be-d0a8091128b6', 'd6488771-b5c0-4f39-a6d6-81af6ca982f4', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('84f70526-107d-4b57-b7c2-653c8efc2737', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2812b2d9-15c6-479c-b59d-bf980f4bc9d7', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b29939d1-67c0-4527-88fd-41812023f402', '7c10a7d7-bac2-41e2-a5c0-963e191239a8', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('db6edaf5-7e57-4e26-8172-20fe06d19e16', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5f936257-6096-4792-a496-b92e46d93d0a', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('814e38c8-c053-4c27-9487-997cf318a550', 'c3d97013-0ceb-4cc7-a59b-a4f70107acea', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0e51c89f-6101-4b6e-be17-53df018b88f5', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('de10229b-be9d-45dc-b1bf-8f832ebffe68', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('779e4c3b-97f0-4218-8eab-5575a6afa54a', 'e50c983a-060c-47c9-9d47-efd552b1e618', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1b453f97-a12c-4d51-bf95-2e782b425385', '48618c28-9304-4ccb-b022-e2cbb1832944', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3b195996-371c-41e4-9b66-a50553582e17', '48618c28-9304-4ccb-b022-e2cbb1832944', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7de2ab25-6b6a-4b59-ba8d-818110ae4ccb', '48618c28-9304-4ccb-b022-e2cbb1832944', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5ca5bb1e-f56f-4dab-a86b-a9ec1959d3f8', '48618c28-9304-4ccb-b022-e2cbb1832944', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('98d81696-7c71-4ffe-bfc2-1fea37613440', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0f5c3f08-d249-404a-b740-d759fced2d09', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6c0656b5-472b-4859-af3a-b8f1c53231a5', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8ad792c1-10e1-43fa-8d5a-a6f3810878a2', 'f415978e-b5c2-4a99-962e-3d31a4658780', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b26cca89-03f0-4498-bf64-7385c0b7244a', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('76968391-174d-4530-b310-1244c4b1897a', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('863eea7c-8b49-494a-9654-9963f2dbb4e5', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b67105de-0348-4d4c-8ccc-aab9ed905eb6', '201b417e-4ebe-458b-a7ce-a287c0ad9287', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eb1575ee-59a8-4bec-a1e1-7eaaf8ecc6fe', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8255ff29-5961-496b-9fda-c71078e47e51', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fe0228ea-649c-45a4-b729-181aba7f3294', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f218c4d9-d10b-4445-b381-b73a71f5848c', 'ce2e4e6d-8b32-4ebd-b253-f4a59d5732fc', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5242e0b6-12e3-4a59-bf06-de114cb69ff4', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b8350678-d30a-422a-bb5d-79c65af2f890', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0f833f5a-8afb-4934-a8a6-9dadbdcf89dd', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c85e8116-355e-408a-93fa-c699da2a76f3', 'f85f9a58-7651-417f-b1b2-cf522bcce415', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3de42185-1e32-4936-b305-d990b85c45c2', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bb8fc553-9dbe-4ea5-a3ea-02d129841f68', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bbfb4fc6-80f7-4a82-aa82-3d787539ebeb', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('07aa8ca8-e06f-4335-9cb0-99e98d45b2c6', '78123dac-fed2-4e3e-817b-0c13a2129dfe', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0726dd6c-118e-4cbc-9077-d4dcb0e61643', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8dfb5e53-1554-4e5c-a045-85121ce4bd71', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('13a3ca39-6352-48e1-b1fb-82f3fc5558f2', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d04aeefe-4ba4-466f-a563-b811674c6de9', '463c4856-495f-4ab3-b26c-7b2f96b05ab5', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e5871fb2-3928-4139-9468-10f0f12d5e5f', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('834d7138-e338-4517-aacb-1c6319fa34d8', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e6409531-6513-43a9-84a7-eff44b18285a', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d00a14ad-fe79-40fc-8f72-722fb5cd30bd', 'b9854fdd-5192-4e2b-b82f-62639ff1a3cd', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('256083e7-90ac-4f38-9bc1-deedb0f78d2c', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('28bf24da-eb68-4a99-8ff9-6e4145f5e805', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f93693fa-7dc5-4513-8537-be9541d6e5dc', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('33a45f49-ac74-4444-a193-2ed1e0be110d', 'ecf9603d-1bc4-417b-b953-552b8f08f6f3', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d5a60c82-347b-4ebb-b95f-afff297bf966', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bb40b3e2-f355-491e-a3cd-fb3ee258d4b8', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6e7feeb7-4891-4ea3-96b6-00d883da37c5', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ed7ff07-778c-4920-a550-563b27223228', 'dd0eae3e-7f45-45dd-b686-f39e046918b0', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7db53bc9-99f3-478e-abb0-437dcbd32051', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9771d06d-8352-404c-aaba-743800e621e9', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b34392da-5070-40dd-ab44-d411a9742f6d', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e37e21bc-4d4f-4d41-8c24-399be1680a15', '164d3cde-e2ab-4239-9dbf-de1c963158ac', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0d96a253-347e-4903-9db9-b362335e4341', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ba80c834-f5a8-4243-98a6-9a3be63c4f47', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6f90fa6f-da1f-41aa-a74e-bd06ef60f48b', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('42f0c634-d86b-4129-822b-f103cd6e0755', 'e9bb6489-3e78-4707-bbe4-70b1fe6212ac', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0c87e31d-cca8-4fd2-bc7d-fd2c94312c0d', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cb295fdb-e294-4b05-944e-f0a4929ebeeb', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f3af3c81-a512-47ea-8b47-0386291e6590', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a0a1bcc1-9eeb-43a6-a2a5-f172ebb3df29', 'a85fd289-2383-4abe-b796-9b0b47d702d2', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dc8ae2b6-d20e-4592-8356-3547bcc58f80', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3010c421-5c96-4f0d-b214-c773e0915564', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('270aac69-03bb-4429-b925-3019bd92cf32', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7d632200-5506-4856-a3c0-d806b1ee708b', 'bc8c4b35-c55b-4c3e-9122-94485909b17e', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7d40c68c-9bbe-4e81-97e3-bb14ed4bd6ff', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f101cc07-ed84-4e34-9f70-62ec6a646e81', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1d4c6f1f-200f-4a68-ae7b-6fda13687e41', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('53e3a9ce-b1e5-40d8-8bab-62ddc3b711fc', 'bcd0fdb5-7415-40d2-8265-85113a4b66be', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3996f1c9-f36a-4c5e-b0d8-d36e6f9bf08c', '268c2ce6-8945-4393-9916-ac90050f064a', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6ec65964-76d1-4e7d-aacc-6a18e4eadf67', '268c2ce6-8945-4393-9916-ac90050f064a', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7e71f107-6953-42c7-a560-dc9036094198', '268c2ce6-8945-4393-9916-ac90050f064a', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('51bb98dd-9201-40e4-b008-221337eeb471', '268c2ce6-8945-4393-9916-ac90050f064a', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9a93e3c2-b1c1-47d1-8761-0cafe9b42917', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('acf8c4b2-7c5f-4e89-9696-77a598b5f8b8', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ed2f5f84-cc30-4f29-aef7-48eb64a5fb15', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c3aff634-452d-47fc-954f-9edebe3a0c74', 'fb23d39f-0150-4503-8bcc-090b1ed3d0e4', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('06917568-e508-436a-a50f-246ea2afe064', '86b706e2-9225-482e-b82a-d4ac4adab065', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b152c130-be97-416c-b531-52656dd3c38d', '86b706e2-9225-482e-b82a-d4ac4adab065', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d6c011ff-bf38-4f09-be3e-45f89eca1ed4', '86b706e2-9225-482e-b82a-d4ac4adab065', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b438e7a1-f5e3-4fb7-8f36-5d4b7b4bcd11', '86b706e2-9225-482e-b82a-d4ac4adab065', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('52fd5f0b-55be-4e14-abfd-6b94ff5b830d', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a81d830d-68c5-44ea-bd6b-968a28f90197', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a64973bb-c814-4af9-b020-99f5f726dd24', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('aa3db109-7ed1-496a-9490-62dabce849e2', '2db1a3ce-910d-4f3d-be67-b3a0a598d834', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5c2537c8-eb2c-4da1-b78e-071377668767', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('07b606b4-e386-4d2d-8ecd-438aa4b3cd80', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ce71b519-42cc-4674-8bc0-a2df3c13b6c7', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('425b6cf7-172a-4e48-9f66-5592d4e25a99', 'b5cfc5c1-b775-4c59-8967-66d2cf7851e5', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5b5433b1-b6eb-4034-841b-559cba014f35', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9851392a-7c6e-4642-881b-dd7728556b86', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7c6415c0-9900-4de6-9459-e4d50b8e9ae4', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6035bf8e-466b-47f7-a3e8-96bab2e8033a', 'ddbda55a-0143-4224-bb6c-7ec5e8b79465', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1326d07c-623b-40fc-942a-659f5c7308ee', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5310f493-97fb-4203-b41b-71423252cc4e', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('09d8befe-d786-4023-b10e-5479f6d09bc1', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('03b9f057-a59e-4253-a83a-ed4d7058a663', '47b7bd3f-8668-4934-bee9-56708e835d7f', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('108a7577-6cac-417f-a0dc-84c799c54797', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4538eaad-57b6-4089-a058-2e7b2adfc2ec', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4a4d7c0b-0b78-488a-a2ef-740ea6dda2bb', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b8faa38e-6fff-42fc-a1ce-b84070077a61', '80a9daef-e282-499a-ab2f-98a016edb8f7', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6da9d98a-3318-403e-a948-bc33efe3d5ce', '93d9827e-63dc-418e-a021-25b400847b2e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b2f0d8a8-ad0c-4c52-9c05-967973c99f8a', '93d9827e-63dc-418e-a021-25b400847b2e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('03245b58-dd24-4cd4-bf3f-d9ba51a69810', '93d9827e-63dc-418e-a021-25b400847b2e', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ff171f90-f6f2-4c7f-9128-051462cb2368', '93d9827e-63dc-418e-a021-25b400847b2e', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1b1da9f7-1fb1-4b94-94d7-57275b028d54', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('871fd02d-def7-4c83-b40e-23029a4019cd', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ae26c1c9-ca79-4a83-a050-0eaab121ce3e', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('11542ad4-cd41-4d26-b778-a25b29175f7b', 'f4219fae-353d-4324-90ca-9f313a8c1c17', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dc7aa55a-ab16-47eb-a29b-79e64328fa31', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('08963816-c027-42e1-80a8-f55dcd6a02aa', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5e3ac214-0f11-4af9-b637-50ff3f841b76', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('85d1d5a3-30a5-4bab-9670-878abc6bfe54', '219baf3d-0bb7-4252-b92f-4cfa97cb633c', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f0ed7f00-c4cd-4c76-a9a4-e7a21bf59fa6', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ba13ab33-99ee-48ef-b205-73e9adea9651', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('918840d4-592e-43eb-afa5-ad6ea37043a3', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d48cd569-cc1f-4f27-bb9a-35154e5fc0b2', 'ed0fb977-6512-4452-8505-378fcbbd5060', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ec552f6-834f-4b68-ae60-6d39e6d887e7', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('82982647-714a-4203-b8f0-3d9fa5d22b4e', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('76d74da3-9fbd-43bb-9083-093a9254af2b', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0303b9f3-8860-4ebc-b808-d4d2da18f5fb', 'a6bb6f3a-eb45-44ff-918b-7a94f9f770af', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c17186dc-564d-4f82-914b-202ad8bc9941', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b05450fd-5e5b-4aa1-b334-0b886ced9492', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2710f7f0-f352-4e71-a527-38076d6966ce', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b012ee61-8155-4fa3-bee0-9a0918452bae', 'af82432c-09a8-42a7-9525-e9095025d4dd', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('18fb2aed-c5ba-41ea-ac09-4ec940ff6eff', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6c83af72-d5d7-4076-b7b6-33ca23c80ff8', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8833f9cb-d000-41ef-920f-6e6ba586c65d', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('49e8c569-1fe0-4215-8cc3-698054ff896f', 'f691585e-eb5e-45bd-8d8a-8187094ed0a0', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0e190f5b-0333-4f70-aabc-71d2e810a712', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8eb1d02d-d44f-42a8-bd93-a05174ce15e0', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('77ef9867-e939-4d36-85e1-4a573c4a9b55', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cedad28c-ea54-48a9-b2f8-e16a29ec56a1', '65879210-cf7c-4e5b-a2d1-742a42fcb488', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7377295c-c6d9-4826-b712-ea5df5c3d8d1', '97e5ed67-e81c-4c12-b354-45db951901c0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('638a0990-bb30-434c-80b5-65f3e33732f6', '97e5ed67-e81c-4c12-b354-45db951901c0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0de0bb80-9691-4f70-9bdb-53a862399dc1', '97e5ed67-e81c-4c12-b354-45db951901c0', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('701ea625-3ec6-4ee9-8fbb-fb95ab1137f7', '97e5ed67-e81c-4c12-b354-45db951901c0', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('84802890-6128-4134-8ad7-667491cfcbf7', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('63eb26c8-3d39-45f7-b2ef-5038f301bddc', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fadd73e5-eeca-4f5a-b07d-998d11eb411d', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6dc07a2f-428b-4621-9f39-8679a5a5a780', 'a0e5508f-533d-4f7c-9602-6f23fa85e601', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0eacfafa-b06b-47f6-8bd5-a4c4c7d4986d', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('47388b74-46ec-45fb-a817-031c959a6c2e', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fb0b7122-f782-414f-85b1-c1df876a3441', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0195bb79-457f-42a6-a21f-ffd238256b28', '2eec1138-d2ad-43de-a105-605d0182a1f8', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8280b446-c17d-4d5f-aff5-ab391cd0af09', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('53e80cc6-7e19-4c55-8c1a-3190844ae734', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4e5bc3c9-14f5-468c-8ef6-6bcb25c17948', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('85e6093a-5013-45c3-a756-66e50d03b6bc', '7f24b032-3906-4b4c-9e91-4d0fd9f7855c', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7044a856-3670-42b7-9719-4a8638fff92a', 'fad03414-b62b-45d4-93fd-51c52149762c', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('20f04373-bbb4-4b9d-a89f-d21272d75d59', 'fad03414-b62b-45d4-93fd-51c52149762c', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('367f629c-223d-456c-98cf-ddf6600d5858', 'fad03414-b62b-45d4-93fd-51c52149762c', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4c98fcb4-e0b6-4692-86e5-dabb78af17ed', 'fad03414-b62b-45d4-93fd-51c52149762c', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cdc318a4-f418-4564-a38c-f93562dda048', '48a0fa39-0d72-4c0a-800f-afed02865850', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f2a2d3d5-165d-43c4-91fc-7912f8a96bcc', '48a0fa39-0d72-4c0a-800f-afed02865850', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ced737cc-1da8-4b12-808a-13e36b8bc37e', '48a0fa39-0d72-4c0a-800f-afed02865850', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('79ef402f-0c51-4ae0-a0dd-f0a09505a273', '48a0fa39-0d72-4c0a-800f-afed02865850', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0b67cb5e-3570-4ca7-945b-94f3390bec81', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5306f8ae-55c4-460d-a133-45f8eae30eb6', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('39500fd6-4dcf-4c33-9766-c9b4071e4754', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3f31fd85-c31c-4258-8219-2ed6f7a38f29', 'a84434fd-e879-4208-a8e8-8095e22b72bf', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3461faee-7a67-45d3-af18-7de8686c381d', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1b8bd64a-cf02-4cbe-93d4-9b85a04d30c8', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3d17a863-17af-48a5-a6aa-abc815209773', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0447c01c-fae5-4c80-a59f-a9f330321b9c', '93d87d13-efdb-4d31-83e6-3b13db983c12', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fd1b146c-609a-486f-afe5-c87430e1be15', 'bad214a0-5220-4433-8714-52e4c736585a', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d09b10a6-f74d-4e87-898d-851cfdb9dffb', 'bad214a0-5220-4433-8714-52e4c736585a', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3a1e0eb9-bf91-4bda-b804-8707d753644e', 'bad214a0-5220-4433-8714-52e4c736585a', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c2fac16c-b4b6-4d83-9b57-7ac814d4a8a3', 'bad214a0-5220-4433-8714-52e4c736585a', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8e9971fb-270c-4897-ae63-50f457d9d0d5', '5add96a4-6fff-4fe2-8628-669d72252417', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a352a7f2-6caf-48bd-8f2e-90a1b3d248fd', '5add96a4-6fff-4fe2-8628-669d72252417', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7bdb3dd3-ed56-43ff-8a99-a49101ba7d48', '5add96a4-6fff-4fe2-8628-669d72252417', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0caafe33-8257-4550-9e75-c8a828d5dbc6', '5add96a4-6fff-4fe2-8628-669d72252417', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7f74a25b-753a-4534-bd83-0db07cc6df2f', '2185083d-3134-4b30-9dcb-674058feaac2', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('64229d80-11aa-4910-9e0c-a211d9a5ca95', '2185083d-3134-4b30-9dcb-674058feaac2', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('98f81765-6d0e-4cb5-ab49-da912f668f5d', '2185083d-3134-4b30-9dcb-674058feaac2', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f4bed22e-44be-4ce4-9d95-5d9be630012a', '2185083d-3134-4b30-9dcb-674058feaac2', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8772af22-67d6-4721-bc48-20f841f171e6', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2899fdb3-40ae-4885-8d6b-7c0f07493ef8', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f68f9b54-fcc3-45ed-b2a4-9db7bcc5add3', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ce3d8199-1a11-409c-8f0f-99a8344f1d1a', 'c60e1d4e-01a1-42a8-9521-1681c77b350f', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bd1cdc2f-13aa-490d-84bf-1cea1d91fd05', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ec3bede7-5502-40df-bcaf-d2782c15ed50', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('98c6c409-250f-4977-89da-f3c242f4be8b', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bf5371a6-e09c-4484-b57c-62aa6befdd0c', '17ea3654-289d-4892-a837-3ddcaea2d7db', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6093331c-adb2-44e9-baac-ef073278751f', '60702c01-7285-4eea-a937-6019d6e3661d', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a0cf1824-6284-4031-980e-1df923d144e0', '60702c01-7285-4eea-a937-6019d6e3661d', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0a93387c-682c-45d7-8a24-e538678f5cf4', '60702c01-7285-4eea-a937-6019d6e3661d', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('35a0a69f-e93c-43f7-b406-3c2d01e1cd8c', '60702c01-7285-4eea-a937-6019d6e3661d', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('86514079-9959-4ffe-9563-4be364780b39', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('94fb08b4-d5d1-43a5-a395-b1e261a46e0b', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d6e4ad57-a163-4508-a694-99a87eeeb986', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('67e21e6a-6d23-4e9c-b9f5-5108ebd99d0a', 'a66a844c-e5b3-4569-96cf-06197abc0d2f', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5eb167f7-80c1-4c71-9c63-b9d6994ec251', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('44c0b607-7d0a-4701-9570-8d339189020f', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('91f36783-f411-4708-a88e-b30fb94d849a', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('52c74fa2-27f4-4046-8712-759b3f47e48a', 'f7ddff21-e58a-426b-a693-46a2b45c9d4e', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2a60ab65-5d4d-49bf-b184-3b1ef563bd62', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('553adc79-d3f6-4b92-88d3-8c9328e5a616', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('832cde07-7e08-41a0-84e0-201f12393e15', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4e1db019-7622-4ba1-aec7-4046419a7b28', '8363ec62-6d90-4dd9-940b-6073b3246c39', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4e4469ab-f0e8-4927-a374-33384a97811f', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f5a65b3e-9c7b-4e32-9f50-9641e1df1ee1', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c110be44-7852-4eaa-b52a-c87a93de1076', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b9ad5d7e-cf8d-4265-9271-2e32128b69d2', '6561ab8d-b9a0-497c-ba5e-60403c5eb5d3', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b5f86e7c-d33f-49a2-a2c9-3cf3a9c4802f', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ba6c1883-e891-4628-bea0-78b9787b1403', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3877cf69-dfcc-4ff3-83a1-65ef1471f919', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4d8fb33e-f5de-4716-a301-a753f59c5aed', 'bc9fabea-d44b-455c-87d6-a0b0428e7768', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('80da5984-53fc-4439-a4b2-2aa030416ddf', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8f1fbdf5-7aba-43d7-932e-a9e4f386ae84', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('46a6fc92-c738-40d2-be20-7762997fdd21', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9fc0d602-3a23-4ce9-b8eb-216e58c23cb6', 'a13af5de-4315-46dd-ae08-427ea72b35a0', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('201bce64-1c53-4047-bfd3-1892e4bb545f', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5927cb7b-54a9-429d-a229-d3ab87cccecb', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b2c4c782-4afe-4518-8c92-0de8c70b70b2', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5a04d74f-230c-451d-ad05-3f08d0e95b0b', 'cea1bd90-a42c-4cbf-97c3-33c134537bfc', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('32326817-2750-452c-8898-bcb42c36d85f', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('f7c2a405-965c-48a4-aecb-4312952d072e', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a67d167a-e0da-4fe0-b2a1-cc320687f44a', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ab46de32-5a21-4029-b5c2-517f6d6002c3', 'fac4bfec-9f0b-427f-b032-ca54188d0a76', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d5048fcc-cb35-4f37-bfdc-611473026b50', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2d30ed95-d7c7-46ec-bdf2-b84ffb7a20b7', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('13854f26-4d9d-411f-a6a8-d1cf8c267a32', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('44900785-555c-468f-9aa1-277c191fc3a6', '867a7a28-0ad7-4310-b7de-3d5615d0bfa3', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a24b3dcc-92b3-475f-8741-4399f604e189', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1d6da0f9-048c-4b62-bedd-5f4d4d35b284', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('33bff6f5-22a5-4a5c-bcf1-1e3003bcf530', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('eebc57f5-8fbd-4665-9328-78b0a6600478', '18124f89-8ce6-4813-8efe-3ed47b7eb453', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cf88430b-e0a1-431e-9912-098933e6771c', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5f9120b4-56a8-4a73-96bb-2fd1edcfbf43', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('12a30425-8c0e-4e0d-b9ae-da96e2776217', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('917b274c-a8da-403c-9ac2-5be884f4a47f', 'cbda6432-b849-4787-84ab-88e680dbfa72', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7bddc04e-775b-48f6-acb1-c1c9e638f836', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d8668032-3755-4ef6-8ea7-7c34e0109e25', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9dc88526-27f4-4c56-aef0-740429a8c457', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('67d9bcbb-574f-405a-b48c-f7ccfb9e0a06', 'f3b07a47-e7ac-4fea-850e-1d785edfea34', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ec817efa-d1de-4264-91e4-608b736b59fd', '4761d35a-2de3-4415-a91d-f53d15162aea', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0fae86ec-61fc-4f23-9713-a51f3f49505d', '4761d35a-2de3-4415-a91d-f53d15162aea', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('57070af3-92a3-4285-b6e8-8644989f8fce', '4761d35a-2de3-4415-a91d-f53d15162aea', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('087d73fd-3c94-4735-b59a-189efda4a80e', '4761d35a-2de3-4415-a91d-f53d15162aea', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6d7c3c90-cec2-472a-b143-3f730bb92d11', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0e9f7adf-90bd-4ec9-bf40-82963cd51410', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('54c33e22-f4c5-45c4-a86d-fb8ed86afbf7', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('d5007585-6703-493f-a24d-f99f4fb1b09c', '04c248f9-20e0-42e1-adf3-b24d2ff7a272', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('330cd455-c002-4416-8074-feb6c6b4849d', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e2eddb4e-842b-450a-a9a4-54a3875b33c5', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('256a2cac-4d33-46c0-833c-fd12d91af365', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5d68ab4a-34e6-4c71-bdb1-b6a0b7b0b17c', '7113f4da-b942-4f17-97f8-d3fdfd2966c6', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('34bbf849-5720-4440-bf30-378dd9748533', '4dbf555d-3375-442e-a87d-815d1492af55', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('4d252783-00e1-4fec-a661-ec1154d98a2c', '4dbf555d-3375-442e-a87d-815d1492af55', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('830e7013-1330-4974-925e-20e142b148fb', '4dbf555d-3375-442e-a87d-815d1492af55', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('85b69ad4-c6cb-4ef4-8d96-94abd80c9352', '4dbf555d-3375-442e-a87d-815d1492af55', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1d4bc5a7-76c0-49a2-93dd-22e0554d886f', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('aab86d81-273f-48e2-91ec-8379a4097dea', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e16ceaa4-25a8-449a-9d9c-59a87fdc228a', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5885b073-ed04-4ac7-9f4b-664507df0de1', 'ac44bd92-4e10-441c-8af3-6fc7cd6b242f', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1a2692a7-05c3-433a-990c-54a184a91661', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b27f42df-1a56-4626-a3cf-1eb46e7e8770', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('aa81a9b0-86ef-4ebe-98d3-54359961608d', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('51727d0c-b455-4171-9bc3-23ff5c73ed81', 'e74992df-66a8-4572-9e55-ec7b210f04e0', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e062ff79-b8a3-4f75-8e9f-ae3b31f92022', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('af3322a3-54cc-4315-b815-607a8c362d2e', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dc730495-43f8-42be-af37-a084da0f568e', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8ea7ce48-b945-4053-8255-be69b2aa688d', '50f79f83-f693-49c9-8b35-f1eb3c5f80a3', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3df1d2db-6ed7-4d0a-ae22-6e90140ca432', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('656d1c2d-2ad1-42df-9774-62e931e3bb0e', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7c142ae8-d190-4c1f-aa85-24f12eeefc9f', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3abf8555-9c07-447d-af5b-47bacb517ad5', 'a5f231d1-0fee-4e1a-a4b6-7840ad531ad9', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('89218636-1f65-41ed-b729-d5967f17d33e', '047364a5-9dcb-4027-a94c-e35f4646860e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('52ae0923-db99-48e9-95b5-d6884b6d4642', '047364a5-9dcb-4027-a94c-e35f4646860e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('58769cf3-490e-4d20-8255-3e0854d8384b', '047364a5-9dcb-4027-a94c-e35f4646860e', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('212a3a64-9d05-44ae-a394-e335cb98cdf7', '047364a5-9dcb-4027-a94c-e35f4646860e', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('cc30c5f8-a9ef-453a-b95e-8dcdb6fac92f', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9a4fdac1-5925-464e-848b-1532c780ebdf', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e108043f-3dcd-498c-9560-cde4ed35680e', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ac5044f1-1f16-43fa-afe2-24d80506ae5b', '08e80808-fb86-4503-ab9b-9652af82d5b5', 'TENANT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5be152b8-f32a-44a3-b7f5-3dbbd1d8d31c', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0eabdcfb-e308-4e52-8c7f-27643332c947', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('345b8b7b-a948-446f-949a-2a903b460032', 'f97e9751-6e67-40fb-b840-b818dc69afcf', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('39bc569a-8594-4a3e-954f-3055b382af9a', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('6df50d79-b958-456a-ac84-a8786f0f18a7', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ea2aeb09-dcee-4f6b-a5fb-03b3eb4a3c0c', 'db1fa6bf-85ff-4302-b7c3-9a66f9761830', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('539a38db-5f7d-4bbc-896d-616bd32f0f06', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('209720a4-ab91-4b78-9fc0-ad5780a97934', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('34a3d0d7-b889-4d5a-80f9-a74d0b56f74a', 'cf4c2c71-c6a0-4887-83a3-67509371b8af', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2bb03c85-0eba-4ef2-be45-7bd03fb60936', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9c725eaf-2d1b-43ed-b3cd-f7fcf75b2772', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5fd54e69-2513-4413-95d6-dde58ed6d8ae', 'af682fb0-f06d-4a2b-affb-40487a079a70', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0ee9e55c-9b0f-41fc-9bd5-981f124846d3', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bf27b482-99fb-43fe-8789-b926b9131a32', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1d24331c-d029-4539-8b40-2b891f6a75a9', '9c468212-9e05-4b29-9d75-5a2c147b2b8f', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0860ac5c-ce03-4f7b-abcb-562676bca90d', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('173a65d3-7eb4-4910-a83f-08ce5ed65583', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('81aefd8d-c7aa-48a5-869f-1df15b4b68ae', 'ace60d06-0635-4c2c-bb4b-7233c19862fc', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('79cf3f87-a87d-40d8-a91a-cdd257866de7', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e4d265c4-fe4a-468d-9cc9-3a77267ddcb3', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('08c7995c-a7e7-4093-8aa0-6e6e8449f1e4', '183d5ad7-4cc1-46c1-8f4e-5d7c24583769', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('30ec4923-e756-46cf-ac20-79065a4f36bd', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0ae403ca-5143-44f0-b997-be330a72ee97', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('aca34128-8a96-494d-a9e7-4e891208b023', '9b403ef6-3fae-4698-9b21-2627c51fa254', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2dbbeed2-ba1a-4781-85e4-28f1620f8f7c', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('5675feaa-5e18-4f73-9fa2-fc5e5ca2b1ea', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('89ac1223-5561-4835-8c9d-681ab874a47a', 'f9811182-d400-43e0-ba9e-de745c9e82a3', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('9827f746-1f3a-4c83-ad01-b5cd89f4d5a6', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('03089301-5a05-4c2d-abf3-b95267b2edef', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b204ae10-065f-4969-aedd-4c25602a821c', '4924877c-c487-4e4d-8b14-901e9b6069ac', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e7101997-a1b9-43bd-93a7-8b24fd506f05', '831a608f-fefe-425b-b740-1786f856c680', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('dceec9d4-d2a5-444e-a27b-4a16c01b155b', '831a608f-fefe-425b-b740-1786f856c680', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('3a07b077-aebc-48ad-ab29-6d375afab845', '831a608f-fefe-425b-b740-1786f856c680', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('abc4d0f0-b87c-4515-a6a4-6e3e2fe0c310', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2a9d3ef1-e293-4301-914b-0ed781b63689', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e1ddefd3-730f-4085-8651-a24dc88b7330', '4f95f38e-08e8-497a-8edb-b74f67e3f2b7', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0bb4851a-2274-44cd-85ff-fc4b4710f602', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('fdfd2976-fc7d-422e-8b5f-91f401927b18', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ffe77615-7fe9-4dd7-8a55-9459ff2d2b43', '0bae3550-be89-4c0e-9ba4-01bae0419be0', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('93f3cd3e-9b10-4a7c-88a9-39c29118fa8d', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e9daa877-1886-48db-abab-5516000c4d8e', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('edf9d085-dbfc-4e3a-9f0e-9eb407423ff6', 'f3140f7e-5045-4534-92aa-e918895bfafb', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7a4d5839-8342-48c3-95e1-d7032ce2a6a0', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('232fe9ca-d6b6-4105-869b-435f0b1357cd', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8f422852-c9d5-4c4f-bac1-ea4950ea77d4', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8d53905b-418d-4c91-aa71-d4c49184cbae', '3d0e6bb5-a62e-4225-a2bb-967c76926705', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('1ea18a1f-6676-43b8-9fca-20b7e575c31e', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e5bb95d7-2fcd-4767-a200-c7c48e01401c', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('b83a49eb-39d3-4c98-8c0c-5a1fb1862079', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('7564d2ce-d4ad-48e2-baf4-2fc08cc249a8', '6c0ad97f-fb44-471b-b53a-d834cd4ac04c', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('71c29d57-de3e-4f00-9303-2d51e8c11b20', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('adaeb8bf-e22b-4bb9-ab33-66e19053ab31', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('bb372939-0891-4068-bf4b-651e8f2a03c8', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('88d51826-68ce-4d8a-9a65-91429e00d053', '850aa448-3a14-440c-9834-0b7ef6d83c39', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('63c634f6-9a6a-4dc9-9da4-c80d47dc8ac8', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('74b8c100-35a5-4a9e-882b-d106b0656e15', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('c73f5078-0505-44ea-b0e1-57390f4d5a3b', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('86454239-fb95-484e-9f75-142ee5ca2a5d', '1c7e3e8a-59c7-4567-8102-f18694d5a1dc', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('0017035a-e8ef-4e77-a43d-938cfc7962f5', '466056f2-efc6-45d6-b778-fa111db7a18b', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ad177311-3c0c-4d93-9ff7-c0b5665fd0ca', '466056f2-efc6-45d6-b778-fa111db7a18b', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('e2f03c7d-5026-42a3-a18f-ce770314c22b', '466056f2-efc6-45d6-b778-fa111db7a18b', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('8e019651-e0a0-490f-8592-55c7016cec2c', '466056f2-efc6-45d6-b778-fa111db7a18b', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('ee5eda97-ff2a-4646-ae01-dcec47a7688b', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('2214774f-6235-4cb9-8713-e2ee51b213d2', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('919c64ed-015d-4a71-9287-69f554378b69', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('67f93c8d-a31d-4d14-ad7a-6bae4f8202e8', 'e2dd08d5-2083-44ef-bf22-57898af08e3e', 'REFERRER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a48e5290-7207-469f-85ea-c5f5b2150d1f', '51a4690c-bb0e-4be2-a285-31552f900db6', 'OWNER'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('39c84db0-c0b8-48bc-9602-f6371fee499b', '51a4690c-bb0e-4be2-a285-31552f900db6', 'ADMIN'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('a9998fe5-2760-4309-a904-8e4f6787110e', '51a4690c-bb0e-4be2-a285-31552f900db6', 'AGENT'); +INSERT INTO rbac.role (uuid, objectuuid, roletype) VALUES ('81268148-75ff-467a-8d73-b8e4f734d83c', '51a4690c-bb0e-4be2-a285-31552f900db6', 'REFERRER'); -- -- Data for Name: subject; Type: TABLE DATA; Schema: rbac; Owner: test -- -INSERT INTO rbac.subject (uuid, name) VALUES ('dcdfdea4-eec6-46fb-a006-1753a075201d', 'import-superuser@hostsharing.net'); +INSERT INTO rbac.subject (uuid, name) VALUES ('3706fd53-e952-408a-aedd-93ec6d5129be', 'superuser-alex@hostsharing.net'); +INSERT INTO rbac.subject (uuid, name) VALUES ('9ae5d7ce-d996-4510-9513-9b352cf4427f', 'superuser-fran@hostsharing.net'); + + +-- +-- Data for Name: customer; Type: TABLE DATA; Schema: rbactest; Owner: test +-- + + + +-- +-- Data for Name: domain; Type: TABLE DATA; Schema: rbactest; Owner: test +-- + + + +-- +-- Data for Name: package; Type: TABLE DATA; Schema: rbactest; Owner: test +-- + -- @@ -15630,28 +18217,28 @@ SELECT pg_catalog.setval('hs_office.coopassettx_legacy_id_seq', 1000000017, true -- Name: coopsharetx_legacy_id_seq; Type: SEQUENCE SET; Schema: hs_office; Owner: test -- -SELECT pg_catalog.setval('hs_office.coopsharetx_legacy_id_seq', 1000000010, true); +SELECT pg_catalog.setval('hs_office.coopsharetx_legacy_id_seq', 1000000022, true); -- -- Name: partner_legacy_id_seq; Type: SEQUENCE SET; Schema: hs_office; Owner: test -- -SELECT pg_catalog.setval('hs_office.partner_legacy_id_seq', 1000000007, true); +SELECT pg_catalog.setval('hs_office.partner_legacy_id_seq', 1000000012, true); -- -- Name: sepamandate_legacy_id_seq; Type: SEQUENCE SET; Schema: hs_office; Owner: test -- -SELECT pg_catalog.setval('hs_office.sepamandate_legacy_id_seq', 1000000006, true); +SELECT pg_catalog.setval('hs_office.sepamandate_legacy_id_seq', 1000000009, true); -- -- Name: object_serialid_seq; Type: SEQUENCE SET; Schema: rbac; Owner: test -- -SELECT pg_catalog.setval('rbac.object_serialid_seq', 179, true); +SELECT pg_catalog.setval('rbac.object_serialid_seq', 306, true); -- @@ -15990,6 +18577,46 @@ ALTER TABLE ONLY rbac.permission ADD CONSTRAINT unique_including_null_values UNIQUE NULLS NOT DISTINCT (objectuuid, op, optablename); +-- +-- Name: customer customer_prefix_key; Type: CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.customer + ADD CONSTRAINT customer_prefix_key UNIQUE (prefix); + + +-- +-- Name: customer customer_reference_key; Type: CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.customer + ADD CONSTRAINT customer_reference_key UNIQUE (reference); + + +-- +-- Name: customer customer_uuid_key; Type: CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.customer + ADD CONSTRAINT customer_uuid_key UNIQUE (uuid); + + +-- +-- Name: domain domain_uuid_key; Type: CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.domain + ADD CONSTRAINT domain_uuid_key UNIQUE (uuid); + + +-- +-- Name: package package_uuid_key; Type: CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.package + ADD CONSTRAINT package_uuid_key UNIQUE (uuid); + + -- -- Name: tx_context_txtimestamp_idx; Type: INDEX; Schema: base; Owner: test -- @@ -16795,6 +19422,13 @@ CREATE TRIGGER update_rbac_system_after_update_tg AFTER UPDATE ON hs_office.part CREATE TRIGGER update_rbac_system_after_update_tg AFTER UPDATE ON hs_office.relation FOR EACH ROW EXECUTE FUNCTION hs_office.relation_update_rbac_system_after_update_tf(); +-- +-- Name: global customer_z_grants_after_insert_tg; Type: TRIGGER; Schema: rbac; Owner: test +-- + +CREATE TRIGGER customer_z_grants_after_insert_tg AFTER INSERT ON rbac.global FOR EACH ROW EXECUTE FUNCTION rbactest.customer_grants_insert_to_global_tf(); + + -- -- Name: global debitor_z_grants_after_insert_tg; Type: TRIGGER; Schema: rbac; Owner: test -- @@ -16900,6 +19534,181 @@ CREATE TRIGGER tx_0_journal_tg AFTER INSERT OR DELETE OR UPDATE ON rbac.role FOR CREATE TRIGGER tx_0_journal_tg AFTER INSERT OR DELETE OR UPDATE ON rbac.subject FOR EACH ROW EXECUTE FUNCTION base.tx_journal_trigger(); +-- +-- Name: customer build_rbac_system_after_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER build_rbac_system_after_insert_tg AFTER INSERT ON rbactest.customer FOR EACH ROW EXECUTE FUNCTION rbactest.customer_build_rbac_system_after_insert_tf(); + + +-- +-- Name: domain build_rbac_system_after_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER build_rbac_system_after_insert_tg AFTER INSERT ON rbactest.domain FOR EACH ROW EXECUTE FUNCTION rbactest.domain_build_rbac_system_after_insert_tf(); + + +-- +-- Name: package build_rbac_system_after_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER build_rbac_system_after_insert_tg AFTER INSERT ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbactest.package_build_rbac_system_after_insert_tf(); + + +-- +-- Name: customer createrbacobjectfor_customer_delete_tg_1058_35; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_customer_delete_tg_1058_35 AFTER DELETE ON rbactest.customer FOR EACH ROW EXECUTE FUNCTION rbac.delete_related_rbac_rules_tf(); + + +-- +-- Name: customer createrbacobjectfor_customer_insert_tg_1058_25; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_customer_insert_tg_1058_25 BEFORE INSERT ON rbactest.customer FOR EACH ROW EXECUTE FUNCTION rbac.insert_related_object(); + + +-- +-- Name: domain createrbacobjectfor_domain_delete_tg_1058_35; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_domain_delete_tg_1058_35 AFTER DELETE ON rbactest.domain FOR EACH ROW EXECUTE FUNCTION rbac.delete_related_rbac_rules_tf(); + + +-- +-- Name: domain createrbacobjectfor_domain_insert_tg_1058_25; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_domain_insert_tg_1058_25 BEFORE INSERT ON rbactest.domain FOR EACH ROW EXECUTE FUNCTION rbac.insert_related_object(); + + +-- +-- Name: package createrbacobjectfor_package_delete_tg_1058_35; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_package_delete_tg_1058_35 AFTER DELETE ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbac.delete_related_rbac_rules_tf(); + + +-- +-- Name: package createrbacobjectfor_package_insert_tg_1058_25; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER createrbacobjectfor_package_insert_tg_1058_25 BEFORE INSERT ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbac.insert_related_object(); + + +-- +-- Name: customer customer_insert_permission_check_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER customer_insert_permission_check_tg BEFORE INSERT ON rbactest.customer FOR EACH ROW EXECUTE FUNCTION rbactest.customer_insert_permission_check_tf(); + + +-- +-- Name: domain domain_insert_permission_check_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER domain_insert_permission_check_tg BEFORE INSERT ON rbactest.domain FOR EACH ROW EXECUTE FUNCTION rbactest.domain_insert_permission_check_tf(); + + +-- +-- Name: package domain_z_grants_after_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER domain_z_grants_after_insert_tg AFTER INSERT ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbactest.domain_grants_insert_to_package_tf(); + + +-- +-- Name: customer_rv instead_of_delete_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_delete_tg INSTEAD OF DELETE ON rbactest.customer_rv FOR EACH ROW EXECUTE FUNCTION rbactest.customer_instead_of_delete_tf(); + + +-- +-- Name: domain_rv instead_of_delete_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_delete_tg INSTEAD OF DELETE ON rbactest.domain_rv FOR EACH ROW EXECUTE FUNCTION rbactest.domain_instead_of_delete_tf(); + + +-- +-- Name: package_rv instead_of_delete_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_delete_tg INSTEAD OF DELETE ON rbactest.package_rv FOR EACH ROW EXECUTE FUNCTION rbactest.package_instead_of_delete_tf(); + + +-- +-- Name: customer_rv instead_of_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_insert_tg INSTEAD OF INSERT ON rbactest.customer_rv FOR EACH ROW EXECUTE FUNCTION rbactest.customer_instead_of_insert_tf(); + + +-- +-- Name: domain_rv instead_of_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_insert_tg INSTEAD OF INSERT ON rbactest.domain_rv FOR EACH ROW EXECUTE FUNCTION rbactest.domain_instead_of_insert_tf(); + + +-- +-- Name: package_rv instead_of_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_insert_tg INSTEAD OF INSERT ON rbactest.package_rv FOR EACH ROW EXECUTE FUNCTION rbactest.package_instead_of_insert_tf(); + + +-- +-- Name: customer_rv instead_of_update_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_update_tg INSTEAD OF UPDATE ON rbactest.customer_rv FOR EACH ROW EXECUTE FUNCTION rbactest.customer_instead_of_update_tf(); + + +-- +-- Name: domain_rv instead_of_update_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_update_tg INSTEAD OF UPDATE ON rbactest.domain_rv FOR EACH ROW EXECUTE FUNCTION rbactest.domain_instead_of_update_tf(); + + +-- +-- Name: package_rv instead_of_update_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER instead_of_update_tg INSTEAD OF UPDATE ON rbactest.package_rv FOR EACH ROW EXECUTE FUNCTION rbactest.package_instead_of_update_tf(); + + +-- +-- Name: package package_insert_permission_check_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER package_insert_permission_check_tg BEFORE INSERT ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbactest.package_insert_permission_check_tf(); + + +-- +-- Name: customer package_z_grants_after_insert_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER package_z_grants_after_insert_tg AFTER INSERT ON rbactest.customer FOR EACH ROW EXECUTE FUNCTION rbactest.package_grants_insert_to_customer_tf(); + + +-- +-- Name: domain update_rbac_system_after_update_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER update_rbac_system_after_update_tg AFTER UPDATE ON rbactest.domain FOR EACH ROW EXECUTE FUNCTION rbactest.domain_update_rbac_system_after_update_tf(); + + +-- +-- Name: package update_rbac_system_after_update_tg; Type: TRIGGER; Schema: rbactest; Owner: test +-- + +CREATE TRIGGER update_rbac_system_after_update_tg AFTER UPDATE ON rbactest.package FOR EACH ROW EXECUTE FUNCTION rbactest.package_update_rbac_system_after_update_tf(); + + -- -- Name: tx_journal tx_journal_txid_fkey; Type: FK CONSTRAINT; Schema: base; Owner: test -- @@ -17236,6 +20045,46 @@ ALTER TABLE ONLY rbac.subject ADD CONSTRAINT subject_uuid_fkey FOREIGN KEY (uuid) REFERENCES rbac.reference(uuid) ON DELETE CASCADE; +-- +-- Name: customer customer_uuid_fkey; Type: FK CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.customer + ADD CONSTRAINT customer_uuid_fkey FOREIGN KEY (uuid) REFERENCES rbac.object(uuid); + + +-- +-- Name: domain domain_packageuuid_fkey; Type: FK CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.domain + ADD CONSTRAINT domain_packageuuid_fkey FOREIGN KEY (packageuuid) REFERENCES rbactest.package(uuid); + + +-- +-- Name: domain domain_uuid_fkey; Type: FK CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.domain + ADD CONSTRAINT domain_uuid_fkey FOREIGN KEY (uuid) REFERENCES rbac.object(uuid); + + +-- +-- Name: package package_customeruuid_fkey; Type: FK CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.package + ADD CONSTRAINT package_customeruuid_fkey FOREIGN KEY (customeruuid) REFERENCES rbactest.customer(uuid); + + +-- +-- Name: package package_uuid_fkey; Type: FK CONSTRAINT; Schema: rbactest; Owner: test +-- + +ALTER TABLE ONLY rbactest.package + ADD CONSTRAINT package_uuid_fkey FOREIGN KEY (uuid) REFERENCES rbac.object(uuid); + + -- -- Name: TABLE bankaccount_iv; Type: ACL; Schema: hs_office; Owner: test -- @@ -17441,6 +20290,48 @@ GRANT ALL ON TABLE rbac.own_granted_permissions_rv TO restricted; GRANT ALL ON TABLE rbac.subject_rv TO restricted; +-- +-- Name: TABLE customer_iv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.customer_iv TO restricted; + + +-- +-- Name: TABLE customer_rv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.customer_rv TO restricted; + + +-- +-- Name: TABLE domain_iv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.domain_iv TO restricted; + + +-- +-- Name: TABLE domain_rv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.domain_rv TO restricted; + + +-- +-- Name: TABLE package_iv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.package_iv TO restricted; + + +-- +-- Name: TABLE package_rv; Type: ACL; Schema: rbactest; Owner: test +-- + +GRANT ALL ON TABLE rbactest.package_rv TO restricted; + + -- -- PostgreSQL database dump complete --